mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
libgstgl: eagl: handle CALayer resize
This commit is contained in:
parent
e10a2f8922
commit
464b9e7680
3 changed files with 26 additions and 6 deletions
|
@ -59,6 +59,7 @@ GType gst_gl_context_eagl_get_type (void);
|
||||||
|
|
||||||
GstGLContextEagl * gst_gl_context_eagl_new (void);
|
GstGLContextEagl * gst_gl_context_eagl_new (void);
|
||||||
|
|
||||||
|
void gst_gl_context_eagl_resize (GstGLContextEagl * eagl_context);
|
||||||
void gst_gl_context_eagl_prepare_draw (GstGLContextEagl * context);
|
void gst_gl_context_eagl_prepare_draw (GstGLContextEagl * context);
|
||||||
void gst_gl_context_eagl_finish_draw (GstGLContextEagl * context);
|
void gst_gl_context_eagl_finish_draw (GstGLContextEagl * context);
|
||||||
guintptr gst_gl_context_eagl_get_current_context (void);
|
guintptr gst_gl_context_eagl_get_current_context (void);
|
||||||
|
|
|
@ -99,6 +99,22 @@ gst_gl_context_eagl_new (void)
|
||||||
return context;
|
return context;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
gst_gl_context_eagl_resize (GstGLContextEagl * eagl_context)
|
||||||
|
{
|
||||||
|
int width, height;
|
||||||
|
|
||||||
|
glBindRenderbuffer (GL_RENDERBUFFER, eagl_context->priv->color_renderbuffer);
|
||||||
|
[eagl_context->priv->eagl_context renderbufferStorage:GL_RENDERBUFFER fromDrawable:eagl_context->priv->eagl_layer];
|
||||||
|
glGetRenderbufferParameteriv (GL_RENDERBUFFER,
|
||||||
|
GL_RENDERBUFFER_WIDTH, &width);
|
||||||
|
glGetRenderbufferParameteriv (GL_RENDERBUFFER,
|
||||||
|
GL_RENDERBUFFER_HEIGHT, &height);
|
||||||
|
glBindRenderbuffer (GL_RENDERBUFFER, eagl_context->priv->depth_renderbuffer);
|
||||||
|
glRenderbufferStorage (GL_RENDERBUFFER, GL_DEPTH_COMPONENT16, width,
|
||||||
|
height);
|
||||||
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_gl_context_eagl_create_context (GstGLContext * context, GstGLAPI gl_api,
|
gst_gl_context_eagl_create_context (GstGLContext * context, GstGLAPI gl_api,
|
||||||
GstGLContext * other_context, GError ** error)
|
GstGLContext * other_context, GError ** error)
|
||||||
|
|
|
@ -244,14 +244,17 @@ draw_cb (gpointer data)
|
||||||
eagl_layer = (CAEAGLLayer *)[window_eagl->priv->view layer];
|
eagl_layer = (CAEAGLLayer *)[window_eagl->priv->view layer];
|
||||||
size = eagl_layer.frame.size;
|
size = eagl_layer.frame.size;
|
||||||
|
|
||||||
if (window_eagl->priv->window_width != window_eagl->priv->preferred_width ||
|
if (window_eagl->priv->window_width != size.width ||
|
||||||
window_eagl->priv->window_height != window_eagl->priv->preferred_height) {
|
window_eagl->priv->window_height != size.height) {
|
||||||
window_eagl->priv->window_width = window_eagl->priv->preferred_width;
|
|
||||||
window_eagl->priv->window_height = window_eagl->priv->preferred_height;
|
window_eagl->priv->window_width = size.width;
|
||||||
|
window_eagl->priv->window_height = size.height;
|
||||||
|
|
||||||
|
gst_gl_context_eagl_resize (eagl_context);
|
||||||
|
|
||||||
if (window->resize)
|
if (window->resize)
|
||||||
window->resize (window->resize_data, window_eagl->priv->preferred_width,
|
window->resize (window->resize_data, window_eagl->priv->window_width,
|
||||||
window_eagl->priv->preferred_height);
|
window_eagl->priv->window_height);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue