From: Laurent Aimar Date: Mon, 7 Dec 2009 20:36:07 +0000 (+0100) Subject: Oops, removed tabs from vlc_vout_opengl.h. X-Git-Tag: 1.1.0-ff~2094 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=e052ba3889ec987018aa4e68d85690b377275084;p=vlc Oops, removed tabs from vlc_vout_opengl.h. --- diff --git a/include/vlc_vout_opengl.h b/include/vlc_vout_opengl.h index 016ee9b18a..94c09153e4 100644 --- a/include/vlc_vout_opengl.h +++ b/include/vlc_vout_opengl.h @@ -33,23 +33,23 @@ typedef struct vout_opengl_t vout_opengl_t; struct vout_opengl_t { - /* */ - int (*lock)(vout_opengl_t *); - void (*swap)(vout_opengl_t *); - void (*unlock)(vout_opengl_t *); + /* */ + int (*lock)(vout_opengl_t *); + void (*swap)(vout_opengl_t *); + void (*unlock)(vout_opengl_t *); /* */ void *sys; }; static inline int vout_opengl_Lock(vout_opengl_t *gl) { - if (!gl->lock) - return VLC_SUCCESS; + if (!gl->lock) + return VLC_SUCCESS; return gl->lock(gl); } static inline void vout_opengl_Unlock(vout_opengl_t *gl) { - if (gl->unlock) + if (gl->unlock) gl->unlock(gl); } static inline void vout_opengl_Swap(vout_opengl_t *gl)