mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
[817/906] make the state change test pass
This commit is contained in:
parent
f7c8658464
commit
2a937dd96a
1 changed files with 4 additions and 1 deletions
|
@ -224,7 +224,10 @@ gst_gl_filter_reset (GstGLFilter * filter)
|
|||
filter);
|
||||
}
|
||||
//blocking call, delete the FBO
|
||||
gst_gl_context_del_fbo (filter->context, filter->fbo, filter->depthbuffer);
|
||||
if (filter->fbo != 0) {
|
||||
gst_gl_context_del_fbo (filter->context, filter->fbo,
|
||||
filter->depthbuffer);
|
||||
}
|
||||
gst_object_unref (filter->context);
|
||||
filter->context = NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue