mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
[494/906] cmake build: use config.h from win32/common and add some guidelines
This commit is contained in:
parent
5b9e4b8282
commit
7e45f26a21
5 changed files with 7 additions and 8 deletions
|
@ -181,8 +181,8 @@ gst_gl_window_new (DWORD_PTR external_gl_context)
|
||||||
g_debug ("gl window created: %lud\n", (gulong) priv->internal_win_id);
|
g_debug ("gl window created: %lud\n", (gulong) priv->internal_win_id);
|
||||||
|
|
||||||
//device is set in the window_proc
|
//device is set in the window_proc
|
||||||
if (!priv->display) {
|
if (!priv->device) {
|
||||||
g_debug ("failed to create display\n");
|
g_debug ("failed to create device\n");
|
||||||
goto failure;
|
goto failure;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -191,7 +191,6 @@ gst_gl_window_new (DWORD_PTR external_gl_context)
|
||||||
return window;
|
return window;
|
||||||
|
|
||||||
failure:
|
failure:
|
||||||
g_mutex_unlock (priv->x_lock);
|
|
||||||
g_object_unref (G_OBJECT (window));
|
g_object_unref (G_OBJECT (window));
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -195,7 +195,6 @@ gst_gl_window_new (gulong external_gl_context)
|
||||||
return window;
|
return window;
|
||||||
|
|
||||||
failure:
|
failure:
|
||||||
g_mutex_unlock (priv->x_lock);
|
|
||||||
g_object_unref (G_OBJECT (window));
|
g_object_unref (G_OBJECT (window));
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,6 @@ include_directories(AFTER
|
||||||
../../gst-libs/gst/gl
|
../../gst-libs/gst/gl
|
||||||
${GLEW_INCLUDE_DIR}
|
${GLEW_INCLUDE_DIR}
|
||||||
../../gst-libs
|
../../gst-libs
|
||||||
../..
|
|
||||||
.
|
.
|
||||||
effects)
|
effects)
|
||||||
|
|
||||||
|
@ -19,7 +18,9 @@ include_directories(AFTER
|
||||||
endif (NOT GST_USING_BINARY_REGISTRY)
|
endif (NOT GST_USING_BINARY_REGISTRY)
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
include_directories(AFTER ../../win32/common)
|
include_directories(AFTER
|
||||||
|
../../win32/common
|
||||||
|
../../../win32/common)
|
||||||
endif (WIN32)
|
endif (WIN32)
|
||||||
|
|
||||||
add_library (gstopengl MODULE
|
add_library (gstopengl MODULE
|
||||||
|
|
Loading…
Reference in a new issue