]> git.sesse.net Git - vlc/blobdiff - include/vlc_opengl.h
doc: make libvlc_audio_set_volume_callback() dependency explicit
[vlc] / include / vlc_opengl.h
index 10fed62f55e8b374996c775ebd7867ee6d3efafe..2a6db1bca9ac0b30a15948d6f06cbc35f31236e4 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * vlc_gl.h: VLC GL API
+ * vlc_opengl.h: VLC GL API
  *****************************************************************************
  * Copyright (C) 2009 Laurent Aimar
  * Copyright (C) 2011 RĂ©mi Denis-Courmont
@@ -30,6 +30,7 @@
  */
 
 struct vout_window_t;
+struct vout_window_cfg_t;
 
 /**
  * A VLC GL context (and its underlying surface)
@@ -45,6 +46,8 @@ struct vlc_gl_t
     void *sys;
 
     int  (*makeCurrent)(vlc_gl_t *);
+    void (*releaseCurrent)(vlc_gl_t *);
+    void (*resize)(vlc_gl_t *, unsigned, unsigned);
     void (*swap)(vlc_gl_t *);
     int  (*lock)(vlc_gl_t *);
     void (*unlock)(vlc_gl_t *);
@@ -65,6 +68,11 @@ static inline int vlc_gl_MakeCurrent(vlc_gl_t *gl)
     return gl->makeCurrent(gl);
 }
 
+static inline void vlc_gl_ReleaseCurrent(vlc_gl_t *gl)
+{
+    gl->releaseCurrent(gl);
+}
+
 static inline int vlc_gl_Lock(vlc_gl_t *gl)
 {
     return (gl->lock != NULL) ? gl->lock(gl) : VLC_SUCCESS;
@@ -76,6 +84,12 @@ static inline void vlc_gl_Unlock(vlc_gl_t *gl)
         gl->unlock(gl);
 }
 
+static inline void vlc_gl_Resize(vlc_gl_t *gl, unsigned w, unsigned h)
+{
+    if (gl->resize != NULL)
+        gl->resize(gl, w, h);
+}
+
 static inline void vlc_gl_Swap(vlc_gl_t *gl)
 {
     gl->swap(gl);
@@ -86,4 +100,10 @@ static inline void *vlc_gl_GetProcAddress(vlc_gl_t *gl, const char *name)
     return (gl->getProcAddress != NULL) ? gl->getProcAddress(gl, name) : NULL;
 }
 
+VLC_API vlc_gl_t *vlc_gl_surface_Create(vlc_object_t *,
+                                        const struct vout_window_cfg_t *,
+                                        struct vout_window_t **) VLC_USED;
+VLC_API bool vlc_gl_surface_CheckSize(vlc_gl_t *, unsigned *w, unsigned *h);
+VLC_API void vlc_gl_surface_Destroy(vlc_gl_t *);
+
 #endif /* VLC_GL_H */