From d139ac89a145b66c86069f558ef0b509ead1c7b9 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Thu, 22 Aug 2013 15:55:35 +1000 Subject: [PATCH] [811/906] tests: update for GstGLContext addition --- tests/check/libs/gstglmemory.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/check/libs/gstglmemory.c b/tests/check/libs/gstglmemory.c index 720a953..3ac19e0 100644 --- a/tests/check/libs/gstglmemory.c +++ b/tests/check/libs/gstglmemory.c @@ -31,12 +31,15 @@ #include static GstGLDisplay *display; +static GstGLContext *context; void setup (void) { display = gst_gl_display_new (); - gst_gl_display_create_context (display, 0); + context = gst_gl_context_new (display); + gst_gl_display_set_context (display, context); + gst_gl_context_create (context, 0, NULL); gst_gl_memory_init (); } @@ -44,6 +47,7 @@ void teardown (void) { gst_object_unref (display); + gst_object_unref (context); } GST_START_TEST (test_basic) @@ -95,9 +99,9 @@ GST_START_TEST (test_basic) fail_if (gl_mem->display != gl_mem->display); fail_if (gl_mem->tex_id == 0); - if (display->error_message) - printf ("%s\n", display->error_message); - fail_if (display->error_message != NULL); + if (gst_gl_display_get_error ()) + printf ("%s\n", gst_gl_display_get_error ()); + fail_if (gst_gl_display_get_error () != NULL); gst_memory_unref (mem); gst_memory_unref (mem2); -- 2.7.4