mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
glcolorconvert: Check return value of gst_gl_context_check_framebuffer_status()
CID 1401588
This commit is contained in:
parent
6a32795949
commit
f5ea12a471
1 changed files with 4 additions and 2 deletions
|
@ -2453,6 +2453,7 @@ _do_convert_draw (GstGLContext * context, GstGLColorConvert * convert)
|
|||
struct ConvertInfo *c_info = &convert->priv->convert_info;
|
||||
guint out_width, out_height;
|
||||
gint i;
|
||||
gboolean ret = TRUE;
|
||||
|
||||
GLint viewport_dim[4] = { 0 };
|
||||
|
||||
|
@ -2525,9 +2526,10 @@ _do_convert_draw (GstGLContext * context, GstGLColorConvert * convert)
|
|||
gl->Viewport (viewport_dim[0], viewport_dim[1], viewport_dim[2],
|
||||
viewport_dim[3]);
|
||||
|
||||
gst_gl_context_check_framebuffer_status (context);
|
||||
if (!gst_gl_context_check_framebuffer_status (context))
|
||||
ret = FALSE;
|
||||
|
||||
gst_gl_context_clear_framebuffer (context);
|
||||
|
||||
return TRUE;
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue