mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 09:40:37 +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);
|
||||
|
||||
//device is set in the window_proc
|
||||
if (!priv->display) {
|
||||
g_debug ("failed to create display\n");
|
||||
if (!priv->device) {
|
||||
g_debug ("failed to create device\n");
|
||||
goto failure;
|
||||
}
|
||||
|
||||
|
@ -191,7 +191,6 @@ gst_gl_window_new (DWORD_PTR external_gl_context)
|
|||
return window;
|
||||
|
||||
failure:
|
||||
g_mutex_unlock (priv->x_lock);
|
||||
g_object_unref (G_OBJECT (window));
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -195,7 +195,6 @@ gst_gl_window_new (gulong external_gl_context)
|
|||
return window;
|
||||
|
||||
failure:
|
||||
g_mutex_unlock (priv->x_lock);
|
||||
g_object_unref (G_OBJECT (window));
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -8,7 +8,6 @@ include_directories(AFTER
|
|||
../../gst-libs/gst/gl
|
||||
${GLEW_INCLUDE_DIR}
|
||||
../../gst-libs
|
||||
../..
|
||||
.
|
||||
effects)
|
||||
|
||||
|
@ -19,7 +18,9 @@ include_directories(AFTER
|
|||
endif (NOT GST_USING_BINARY_REGISTRY)
|
||||
|
||||
if (WIN32)
|
||||
include_directories(AFTER ../../win32/common)
|
||||
include_directories(AFTER
|
||||
../../win32/common
|
||||
../../../win32/common)
|
||||
endif (WIN32)
|
||||
|
||||
add_library (gstopengl MODULE
|
||||
|
|
Loading…
Reference in a new issue