Commit b302bf06 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

iOS: no tabs, in source-code

parent 5182f4f5
...@@ -157,11 +157,11 @@ static int Open(vlc_object_t *this) ...@@ -157,11 +157,11 @@ static int Open(vlc_object_t *this)
sys->gl.lock = OpenglClean; // We don't do locking, but sometimes we need to cleanup the framebuffer sys->gl.lock = OpenglClean; // We don't do locking, but sometimes we need to cleanup the framebuffer
sys->gl.unlock = NULL; sys->gl.unlock = NULL;
sys->gl.swap = OpenglSwap; sys->gl.swap = OpenglSwap;
sys->gl.getProcAddress = OurGetProcAddress; sys->gl.getProcAddress = OurGetProcAddress;
sys->gl.sys = sys; sys->gl.sys = sys;
sys->vgl = vout_display_opengl_New(&vd->fmt, NULL, &sys->gl); sys->vgl = vout_display_opengl_New(&vd->fmt, NULL, &sys->gl);
if (!sys->vgl) if (!sys->vgl)
{ {
sys->gl.sys = NULL; sys->gl.sys = NULL;
goto error; goto error;
...@@ -242,7 +242,7 @@ static void PictureDisplay(vout_display_t *vd, picture_t *pic, subpicture_t *sub ...@@ -242,7 +242,7 @@ static void PictureDisplay(vout_display_t *vd, picture_t *pic, subpicture_t *sub
vout_display_opengl_Display(sys->vgl, &vd->fmt ); vout_display_opengl_Display(sys->vgl, &vd->fmt );
picture_Release (pic); picture_Release (pic);
sys->has_first_frame = true; sys->has_first_frame = true;
(void)subpicture; (void)subpicture;
} }
static int Control (vout_display_t *vd, int query, va_list ap) static int Control (vout_display_t *vd, int query, va_list ap)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment