mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
gl-test: Port unit tests to new API
This commit is contained in:
parent
b2aea709d0
commit
7c32611c87
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ GST_START_TEST (test_basic)
|
|||
gst_video_info_set_format (&v_info, formats[i], width, height);
|
||||
|
||||
for (j = 0; j < GST_VIDEO_INFO_N_PLANES (&v_info); j++) {
|
||||
mem = gst_gl_memory_alloc (context, &v_info, j, NULL);
|
||||
mem = gst_gl_memory_alloc (context, NULL, &v_info, j, NULL);
|
||||
fail_if (mem == NULL);
|
||||
gl_mem = (GstGLMemory *) mem;
|
||||
|
||||
|
@ -124,7 +124,7 @@ GST_START_TEST (test_transfer)
|
|||
gst_video_info_set_format (&v_info, GST_VIDEO_FORMAT_RGBA, 1, 1);
|
||||
|
||||
/* texture creation */
|
||||
mem = (GstMemory *) gst_gl_memory_alloc (context, &v_info, 0, NULL);
|
||||
mem = (GstMemory *) gst_gl_memory_alloc (context, NULL, &v_info, 0, NULL);
|
||||
fail_unless (!GST_GL_MEMORY_FLAG_IS_SET (mem,
|
||||
GST_GL_MEMORY_FLAG_NEED_UPLOAD));
|
||||
fail_unless (!GST_GL_MEMORY_FLAG_IS_SET (mem,
|
||||
|
|
Loading…
Reference in a new issue