]> git.sesse.net Git - vlc/blob - modules/video_output/x11/glx.c
GLX: remove nonsensical glx-adaptor
[vlc] / modules / video_output / x11 / glx.c
1 /*****************************************************************************
2  * glx.c: GLX OpenGL provider
3  *****************************************************************************
4  * Copyright (C) 2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Cyril Deguet <asmax@videolan.org>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <errno.h>                                                 /* ENOMEM */
34
35 #include <vlc_common.h>
36 #include <vlc_plugin.h>
37 #include <vlc_interface.h>
38 #include <vlc_vout.h>
39
40 #ifdef HAVE_SYS_SHM_H
41 #   include <sys/shm.h>                                /* shmget(), shmctl() */
42 #endif
43
44 #include <X11/Xlib.h>
45 #include <X11/Xmd.h>
46 #include <X11/Xutil.h>
47 #include <X11/keysym.h>
48 #ifdef HAVE_SYS_SHM_H
49 #   include <X11/extensions/XShm.h>
50 #endif
51 #ifdef DPMSINFO_IN_DPMS_H
52 #   include <X11/extensions/dpms.h>
53 #endif
54
55 #include <GL/glx.h>
56
57 #include "xcommon.h"
58
59 /* RV16 */
60 //#define VLCGL_RGB_FORMAT GL_RGB
61 //#define VLCGL_RGB_TYPE GL_UNSIGNED_SHORT_5_6_5
62
63 /* RV24 */
64 //#define VLCGL_RGB_FORMAT GL_RGB
65 //#define VLCGL_RGB_TYPE GL_UNSIGNED_BYTE
66
67 /* RV32 */
68 #define VLCGL_RGB_FORMAT GL_RGBA
69 #define VLCGL_RGB_TYPE GL_UNSIGNED_BYTE
70
71
72 /*****************************************************************************
73  * OpenGL provider interface
74  *****************************************************************************/
75 static int  CreateOpenGL ( vlc_object_t * );
76 static void DestroyOpenGL( vlc_object_t * );
77 static int  InitOpenGL   ( vout_thread_t * );
78 static void SwapBuffers  ( vout_thread_t * );
79
80 /*****************************************************************************
81  * Local prototypes
82  *****************************************************************************/
83 static int  InitGLX12    ( vout_thread_t * );
84 static int  InitGLX13    ( vout_thread_t * );
85 static void SwitchContext( vout_thread_t * );
86
87 /*****************************************************************************
88  * Module descriptor
89  *****************************************************************************/
90 #define DISPLAY_TEXT N_("X11 display")
91 #define DISPLAY_LONGTEXT N_( \
92     "X11 hardware display to use. By default VLC will " \
93     "use the value of the DISPLAY environment variable.")
94
95 #define SHM_TEXT N_("Use shared memory")
96 #define SHM_LONGTEXT N_( \
97     "Use shared memory to communicate between VLC and the X server.")
98
99 vlc_module_begin ()
100     set_shortname( "OpenGL(GLX)" )
101     set_category( CAT_VIDEO )
102     set_subcategory( SUBCAT_VIDEO_VOUT )
103     set_description( N_("OpenGL(GLX) provider") )
104     set_capability( "opengl provider", 50 )
105     set_callbacks( CreateOpenGL, DestroyOpenGL )
106
107     add_string( "glx-display", NULL, NULL, DISPLAY_TEXT, DISPLAY_LONGTEXT, true )
108     add_obsolete_integer( "glx-adaptor" ) /* Deprecated since 1.0.4 */
109 #ifdef HAVE_SYS_SHM_H
110     add_bool( "glx-shm", true, NULL, SHM_TEXT, SHM_LONGTEXT, true )
111 #endif
112 vlc_module_end ()
113
114 /*****************************************************************************
115  * Exported prototypes
116  *****************************************************************************/
117 extern int  Activate   ( vlc_object_t * );
118 extern void Deactivate ( vlc_object_t * );
119
120 /*****************************************************************************
121  * CreateOpenGL: initialize an OpenGL provider
122  *****************************************************************************/
123 static int CreateOpenGL( vlc_object_t *p_this )
124 {
125     vout_thread_t *p_vout = (vout_thread_t *)p_this;
126
127     if( Activate( p_this ) != VLC_SUCCESS )
128     {
129         return VLC_EGENERIC;
130     }
131
132     /* Set the function pointer */
133     p_vout->pf_init = InitOpenGL;
134     p_vout->pf_swap = SwapBuffers;
135
136     return VLC_SUCCESS;
137 }
138
139 /*****************************************************************************
140  * DestroyOpenGL: destroys an OpenGL provider
141  *****************************************************************************/
142 static void DestroyOpenGL( vlc_object_t *p_this )
143 {
144     vout_thread_t *p_vout = (vout_thread_t *)p_this;
145     vout_sys_t *p_sys = p_vout->p_sys;
146
147     glXDestroyContext( p_sys->p_display, p_sys->gwctx );
148     if( p_sys->b_glx13 )
149     {
150         glXDestroyWindow( p_sys->p_display, p_sys->gwnd );
151     }
152
153     Deactivate( p_this );
154 }
155
156 /*****************************************************************************
157  * InitOpenGL: initializes OpenGL provider
158  *****************************************************************************/
159 static int InitOpenGL( vout_thread_t *p_vout )
160 {
161     /* Initialize GLX */
162     if( !p_vout->p_sys->b_glx13 )
163     {
164         if( InitGLX12( p_vout ) != VLC_SUCCESS )
165         {
166             return VLC_EGENERIC;
167         }
168     }
169     else
170     {
171         if( InitGLX13( p_vout ) != VLC_SUCCESS )
172         {
173             return VLC_EGENERIC;
174         }
175     }
176
177     /* Set the OpenGL context _for the current thread_ */
178     SwitchContext( p_vout );
179
180     return VLC_SUCCESS;
181 }
182
183 int InitGLX12( vout_thread_t *p_vout )
184 {
185     vout_sys_t *p_sys = p_vout->p_sys;
186     XVisualInfo *p_vi;
187     int p_attr[] = { GLX_RGBA, GLX_RED_SIZE, 5, GLX_GREEN_SIZE, 5,
188                      GLX_BLUE_SIZE, 5, GLX_DOUBLEBUFFER, 0 };
189
190     p_vi = glXChooseVisual( p_sys->p_display,
191                             DefaultScreen( p_sys->p_display), p_attr );
192     if(! p_vi )
193     {
194         msg_Err( p_vout, "Cannot get GLX 1.2 visual" );
195         return VLC_EGENERIC;
196     }
197
198     /* Create an OpenGL context */
199     p_sys->gwctx = glXCreateContext( p_sys->p_display, p_vi, 0, True );
200     XFree( p_vi );
201     if( !p_sys->gwctx )
202     {
203         msg_Err( p_vout, "Cannot create OpenGL context");
204         return VLC_EGENERIC;
205     }
206
207     return VLC_SUCCESS;
208 }
209
210 int InitGLX13( vout_thread_t *p_vout )
211 {
212     vout_sys_t *p_sys = p_vout->p_sys;
213     int i_nb, ret = VLC_EGENERIC;
214     GLXFBConfig *p_fbconfs = NULL, fbconf = NULL;
215     XWindowAttributes att;
216     static const int p_attr[] = {
217         GLX_RED_SIZE, 5, GLX_GREEN_SIZE, 5, GLX_BLUE_SIZE, 5,
218         GLX_DOUBLEBUFFER, True, GLX_X_RENDERABLE, True,
219         GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT,
220         None,
221     };
222
223     /* Get the FB configuration */
224     p_fbconfs = glXChooseFBConfig( p_sys->p_display, p_sys->i_screen, p_attr, &i_nb );
225     if( p_fbconfs == NULL )
226     {
227         msg_Err( p_vout, "Cannot get FB configurations");
228         return VLC_EGENERIC;
229     }
230
231     /* We should really create the window _after_ the frame buffer
232      * configuration was chosen, instead of selecting the frame buffer from
233      * the window. That requires reworking xcommon.c though.
234      * -- Courmisch */
235     XGetWindowAttributes( p_sys->p_display, p_sys->window.video_window, &att );
236     for( int i = 0; i < i_nb && !fbconf; i++ )
237     {
238         XVisualInfo *p_vi;
239
240         /* Get the X11 visual */
241         p_vi = glXGetVisualFromFBConfig( p_sys->p_display, p_fbconfs[i] );
242         if( !p_vi )
243             continue; /* OoM? */
244
245         if( p_vi->visualid == att.visual->visualid )
246             fbconf = p_fbconfs[i];
247         XFree( p_vi );
248     }
249     if( !fbconf )
250     {
251         msg_Err( p_vout, "Cannot find matching frame buffer" );
252         goto out;
253     }
254
255     /* Create the GLX window */
256     p_sys->gwnd = glXCreateWindow( p_sys->p_display, fbconf,
257                                    p_sys->window.video_window, NULL );
258     if( p_sys->gwnd == None )
259     {
260         msg_Err( p_vout, "Cannot create GLX window" );
261         goto out;
262     }
263
264     /* Create an OpenGL context */
265     p_sys->gwctx = glXCreateNewContext( p_sys->p_display, fbconf,
266                                         GLX_RGBA_TYPE, NULL, True );
267     if( !p_sys->gwctx )
268         msg_Err( p_vout, "Cannot create OpenGL context");
269     else
270         ret = VLC_SUCCESS;
271
272 out:
273     XFree( p_fbconfs );
274     return ret;
275 }
276
277 /*****************************************************************************
278  * SwapBuffers: swap front/back buffers
279  *****************************************************************************/
280 static void SwapBuffers( vout_thread_t *p_vout )
281 {
282     vout_sys_t *p_sys = p_vout->p_sys;
283     unsigned int i_width, i_height, i_x, i_y;
284
285     vout_PlacePicture( p_vout, p_vout->p_sys->window.i_width,
286                        p_vout->p_sys->window.i_height,
287                        &i_x, &i_y, &i_width, &i_height );
288
289     glViewport( 0, 0, (GLint)i_width, (GLint)i_height );
290
291     if( p_sys->b_glx13 )
292     {
293         glXSwapBuffers( p_sys->p_display, p_sys->gwnd );
294     }
295     else
296     {
297         glXSwapBuffers( p_sys->p_display, p_sys->window.video_window );
298     }
299 }
300
301 void SwitchContext( vout_thread_t *p_vout )
302 {
303     vout_sys_t *p_sys = p_vout->p_sys;
304
305     /* Change the current OpenGL context */
306     if( p_sys->b_glx13 )
307     {
308         glXMakeContextCurrent( p_sys->p_display, p_sys->gwnd,
309                                p_sys->gwnd, p_sys->gwctx );
310     }
311     else
312     {
313         glXMakeCurrent( p_sys->p_display, p_sys->window.video_window,
314                         p_sys->gwctx );
315     }
316 }