1 /*****************************************************************************
2 * vlc_opengl.h: VLC GL API
3 *****************************************************************************
4 * Copyright (C) 2009 Laurent Aimar
5 * Copyright (C) 2011 RĂ©mi Denis-Courmont
7 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
29 * This file defines GL structures and functions.
35 * A VLC GL context (and its underlying surface)
37 typedef struct vlc_gl_t vlc_gl_t
;
43 struct vout_window_t
*surface
;
47 int (*makeCurrent
)(vlc_gl_t
*);
48 void (*releaseCurrent
)(vlc_gl_t
*);
49 void (*swap
)(vlc_gl_t
*);
50 int (*lock
)(vlc_gl_t
*);
51 void (*unlock
)(vlc_gl_t
*);
52 void*(*getProcAddress
)(vlc_gl_t
*, const char *);
61 VLC_API vlc_gl_t
*vlc_gl_Create(struct vout_window_t
*, unsigned, const char *) VLC_USED
;
62 VLC_API
void vlc_gl_Destroy(vlc_gl_t
*);
64 static inline int vlc_gl_MakeCurrent(vlc_gl_t
*gl
)
66 return gl
->makeCurrent(gl
);
69 static inline void vlc_gl_ReleaseCurrent(vlc_gl_t
*gl
)
71 gl
->releaseCurrent(gl
);
74 static inline int vlc_gl_Lock(vlc_gl_t
*gl
)
76 return (gl
->lock
!= NULL
) ? gl
->lock(gl
) : VLC_SUCCESS
;
79 static inline void vlc_gl_Unlock(vlc_gl_t
*gl
)
81 if (gl
->unlock
!= NULL
)
85 static inline void vlc_gl_Swap(vlc_gl_t
*gl
)
90 static inline void *vlc_gl_GetProcAddress(vlc_gl_t
*gl
, const char *name
)
92 return (gl
->getProcAddress
!= NULL
) ? gl
->getProcAddress(gl
, name
) : NULL
;