gl/tests: update for upload API changes
authorMatthew Waters <ystreet00@gmail.com>
Mon, 22 Sep 2014 10:01:27 +0000 (20:01 +1000)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 9 Dec 2017 19:31:46 +0000 (19:31 +0000)
tests/check/libs/gstglupload.c

index 5ee35da..fa6210f 100644 (file)
@@ -235,7 +235,7 @@ GST_START_TEST (test_upload_data)
 
   gst_gl_upload_set_format (upload, &in_info);
 
-  res = gst_gl_upload_perform_with_data (upload, &tex_id, data);
+  res = gst_gl_upload_perform_with_data (upload, &tex_id, data, NULL);
   fail_if (res == FALSE, "Failed to upload buffer: %s\n",
       gst_gl_context_get_error ());
 
@@ -269,7 +269,7 @@ GST_START_TEST (test_upload_buffer)
 
   gst_gl_upload_set_format (upload, &in_info);
 
-  res = gst_gl_upload_perform_with_buffer (upload, buffer, &tex_id);
+  res = gst_gl_upload_perform_with_buffer (upload, buffer, &tex_id, NULL);
   fail_if (res == FALSE, "Failed to upload buffer: %s\n",
       gst_gl_context_get_error ());