mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
glwindow: Remove assertion in gst_gl_window_show() for subclasses not implementing it
On Android and iOS we can't create a window ourselves, so also can't just show one. That's not a problem and an assertion is not really needed here.
This commit is contained in:
parent
fcdfdfbfdf
commit
c4e75844a8
1 changed files with 0 additions and 1 deletions
|
@ -396,7 +396,6 @@ gst_gl_window_show (GstGLWindow * window)
|
|||
|
||||
g_return_if_fail (GST_GL_IS_WINDOW (window));
|
||||
window_class = GST_GL_WINDOW_GET_CLASS (window);
|
||||
g_return_if_fail (window_class->show != NULL);
|
||||
|
||||
if (window_class->show)
|
||||
window_class->show (window);
|
||||
|
|
Loading…
Reference in a new issue