mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
tests/gl: make sure all GL commands are executed on the GL thread
e.g. the final glGetError() must also be completed on the GL thread
This commit is contained in:
parent
112f85a474
commit
7ab50a8e8f
2 changed files with 16 additions and 2 deletions
|
@ -85,14 +85,21 @@ setup (void)
|
|||
}
|
||||
|
||||
static void
|
||||
teardown (void)
|
||||
_check_gl_error (GstGLContext * context, gpointer data)
|
||||
{
|
||||
GLuint error = context->gl_vtable->GetError ();
|
||||
fail_if (error != GL_NONE, "GL error 0x%x encountered during processing\n",
|
||||
error);
|
||||
}
|
||||
|
||||
static void
|
||||
teardown (void)
|
||||
{
|
||||
gst_object_unref (convert);
|
||||
gst_object_unref (window);
|
||||
|
||||
gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _check_gl_error,
|
||||
NULL);
|
||||
gst_object_unref (context);
|
||||
gst_object_unref (display);
|
||||
}
|
||||
|
|
|
@ -86,14 +86,21 @@ setup (void)
|
|||
}
|
||||
|
||||
static void
|
||||
teardown (void)
|
||||
_check_gl_error (GstGLContext * context, gpointer data)
|
||||
{
|
||||
GLuint error = context->gl_vtable->GetError ();
|
||||
fail_if (error != GL_NONE, "GL error 0x%x encountered during processing\n",
|
||||
error);
|
||||
}
|
||||
|
||||
static void
|
||||
teardown (void)
|
||||
{
|
||||
gst_object_unref (upload);
|
||||
gst_object_unref (window);
|
||||
|
||||
gst_gl_context_thread_add (context, (GstGLContextThreadFunc) _check_gl_error,
|
||||
NULL);
|
||||
gst_object_unref (context);
|
||||
gst_object_unref (display);
|
||||
if (shader)
|
||||
|
|
Loading…
Reference in a new issue