mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
gtkglwidget: Const'ify another array
This commit is contained in:
parent
aa37a70efb
commit
9841cd5e58
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ static void
|
|||
_redraw_texture (GtkGstGLWidget * gst_widget, guint tex)
|
||||
{
|
||||
const GstGLFuncs *gl = gst_widget->priv->context->gl_vtable;
|
||||
GLushort indices[] = { 0, 1, 2, 0, 2, 3 };
|
||||
const GLushort indices[] = { 0, 1, 2, 0, 2, 3 };
|
||||
|
||||
if (gst_widget->priv->force_aspect_ratio) {
|
||||
GstVideoRectangle src, dst, result;
|
||||
|
|
Loading…
Reference in a new issue