mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
[835/906] gstglwindow: remove unused fields
This commit is contained in:
parent
e5ed59e61c
commit
6fcd8b7206
1 changed files with 0 additions and 12 deletions
|
@ -73,12 +73,6 @@ struct _GstGLWindowPrivate
|
||||||
|
|
||||||
GThread *gl_thread;
|
GThread *gl_thread;
|
||||||
|
|
||||||
/* conditions */
|
|
||||||
GMutex render_lock;
|
|
||||||
GCond cond_create_context;
|
|
||||||
GCond cond_destroy_context;
|
|
||||||
|
|
||||||
gboolean context_created;
|
|
||||||
gboolean alive;
|
gboolean alive;
|
||||||
|
|
||||||
guintptr external_gl_context;
|
guintptr external_gl_context;
|
||||||
|
@ -101,12 +95,6 @@ gst_gl_window_init (GstGLWindow * window)
|
||||||
|
|
||||||
g_mutex_init (&window->lock);
|
g_mutex_init (&window->lock);
|
||||||
window->need_lock = TRUE;
|
window->need_lock = TRUE;
|
||||||
|
|
||||||
g_mutex_init (&window->priv->render_lock);
|
|
||||||
g_cond_init (&window->priv->cond_create_context);
|
|
||||||
g_cond_init (&window->priv->cond_destroy_context);
|
|
||||||
window->priv->context_created = FALSE;
|
|
||||||
|
|
||||||
window->is_drawing = FALSE;
|
window->is_drawing = FALSE;
|
||||||
|
|
||||||
g_weak_ref_init (&window->context_ref, NULL);
|
g_weak_ref_init (&window->context_ref, NULL);
|
||||||
|
|
Loading…
Reference in a new issue