]> git.sesse.net Git - vlc/blob - include/vlc_opengl.h
* all: created a new module type "opengl provider", which provides a
[vlc] / include / vlc_opengl.h
1 /*****************************************************************************
2  * vlc_opengl.h: OpenGL provider interface
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Cyril Deguet  <asmax@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
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 General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef _VLC_OPENGL_H
25 #define _VLC_OPENGL_H 1
26
27
28 struct opengl_t
29 {
30     VLC_COMMON_MEMBERS
31
32     int             i_width;        /* window width */
33     int             i_height;       /* window height */
34     int             b_fullscreen;   /* fullscreen flag */
35
36     opengl_sys_t    *p_sys;         /* private data */
37
38     /* Create an OpenGL window of the requested size (if possible) */
39     int     ( *pf_init )( opengl_t *, int i_width, int i_height );
40
41     /* Swap front/back buffers */
42     void    ( *pf_swap )( opengl_t * );
43
44     /* Handle window events */
45     int     ( *pf_handle_events )( opengl_t * );
46 };
47
48 #endif