mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-01 06:01:04 +00:00
[226/906] check on win32 that every tests/pipelines and tests/examples (generic, gtk, qt) still work
This commit is contained in:
parent
de5ba4b7f2
commit
e8abbdaaa7
1 changed files with 8 additions and 5 deletions
|
@ -2133,11 +2133,14 @@ void
|
||||||
gst_gl_display_del_texture (GstGLDisplay* display, GLuint texture, GLint width, GLint height)
|
gst_gl_display_del_texture (GstGLDisplay* display, GLuint texture, GLint width, GLint height)
|
||||||
{
|
{
|
||||||
gst_gl_display_lock (display);
|
gst_gl_display_lock (display);
|
||||||
display->del_texture = texture;
|
if (texture)
|
||||||
display->del_texture_width = width;
|
{
|
||||||
display->del_texture_height = height;
|
display->del_texture = texture;
|
||||||
gst_gl_display_post_message (GST_GL_DISPLAY_ACTION_DEL_TEXTURE, display);
|
display->del_texture_width = width;
|
||||||
g_cond_wait (display->cond_del_texture, display->mutex);
|
display->del_texture_height = height;
|
||||||
|
gst_gl_display_post_message (GST_GL_DISPLAY_ACTION_DEL_TEXTURE, display);
|
||||||
|
g_cond_wait (display->cond_del_texture, display->mutex);
|
||||||
|
}
|
||||||
gst_gl_display_unlock (display);
|
gst_gl_display_unlock (display);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue