]>
git.saurik.com Git - wxWidgets.git/blob - src/unix/glx11.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/univ/glx11.cpp
3 // Purpose: code common to all X11-based wxGLCanvas implementations
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
28 #include "wx/glcanvas.h"
30 // ============================================================================
31 // wxGLContext implementation
32 // ============================================================================
34 IMPLEMENT_CLASS(wxGLContext
, wxObject
)
36 wxGLContext::wxGLContext(wxGLCanvas
*gc
, const wxGLContext
*other
)
38 if ( wxGLCanvas::GetGLXVersion() >= 13 )
40 GLXFBConfig
*fbc
= gc
->GetGLXFBConfig();
41 wxCHECK_RET( fbc
, _T("invalid GLXFBConfig for OpenGL") );
43 m_glContext
= glXCreateNewContext( wxGetX11Display(), fbc
[0], GLX_RGBA_TYPE
,
44 other
? other
->m_glContext
: None
,
49 XVisualInfo
*vi
= gc
->GetXVisualInfo();
50 wxCHECK_RET( vi
, _T("invalid visual for OpenGL") );
52 m_glContext
= glXCreateContext( wxGetX11Display(), vi
,
53 other
? other
->m_glContext
: None
,
57 wxASSERT_MSG( m_glContext
, _T("Couldn't create OpenGL context") );
60 wxGLContext::~wxGLContext()
65 if ( m_glContext
== glXGetCurrentContext() )
66 MakeCurrent(None
, NULL
);
68 glXDestroyContext( wxGetX11Display(), m_glContext
);
71 void wxGLContext::SetCurrent(const wxGLCanvas
& win
) const
76 const Window xid
= win
.GetXWindow();
77 wxCHECK_RET( xid
, _T("window must be shown") );
79 MakeCurrent(xid
, m_glContext
);
82 // wrapper around glXMakeContextCurrent/glXMakeCurrent depending on GLX
85 void wxGLContext::MakeCurrent(GLXDrawable drawable
, GLXContext context
)
87 if (wxGLCanvas::GetGLXVersion() >= 13)
88 glXMakeContextCurrent( wxGetX11Display(), drawable
, drawable
, context
);
89 else // GLX <= 1.2 doesn't have glXMakeContextCurrent()
90 glXMakeCurrent( wxGetX11Display(), drawable
, context
);
93 // ============================================================================
94 // wxGLCanvasX11 implementation
95 // ============================================================================
97 // ----------------------------------------------------------------------------
98 // initialization methods and dtor
99 // ----------------------------------------------------------------------------
101 wxGLCanvasX11::wxGLCanvasX11()
107 bool wxGLCanvasX11::InitVisual(const int *attribList
)
109 return InitXVisualInfo(attribList
, &m_fbc
, &m_vi
);
112 wxGLCanvasX11::~wxGLCanvasX11()
114 if ( m_fbc
&& m_fbc
!= ms_glFBCInfo
)
117 if ( m_vi
&& m_vi
!= ms_glVisualInfo
)
121 // ----------------------------------------------------------------------------
122 // working with GL attributes
123 // ----------------------------------------------------------------------------
126 wxGLCanvasX11::ConvertWXAttrsToGL(const int *wxattrs
, int *glattrs
, size_t n
)
128 wxCHECK_MSG( n
>= 16, false, _T("GL attributes buffer too small") );
132 if ( GetGLXVersion() >= 13 )
134 // leave GLX >= 1.3 choose the default attributes
139 // default settings if attriblist = 0
141 glattrs
[i
++] = GLX_RGBA
;
142 glattrs
[i
++] = GLX_DOUBLEBUFFER
;
143 glattrs
[i
++] = GLX_DEPTH_SIZE
; glattrs
[i
++] = 1;
144 glattrs
[i
++] = GLX_RED_SIZE
; glattrs
[i
++] = 1;
145 glattrs
[i
++] = GLX_GREEN_SIZE
; glattrs
[i
++] = 1;
146 glattrs
[i
++] = GLX_BLUE_SIZE
; glattrs
[i
++] = 1;
147 glattrs
[i
++] = GLX_ALPHA_SIZE
; glattrs
[i
++] = 0;
150 wxASSERT_MSG( i
< n
, _T("GL attributes buffer too small") );
153 else // have non-default attributes
156 for ( int arg
= 0; wxattrs
[arg
] != 0; )
158 // check if we have any space left, knowing that we may insert 2
159 // more elements during this loop iteration and we always need to
160 // terminate the list with None (hence -3)
164 // notice that for boolean attributes we use "continue" in the
165 // switch to skip the assignment of the attribute value at the end
166 // of the loop which is done for integer attributes
167 switch ( wxattrs
[arg
++] )
170 // for GLX >= 1.3, GLX_RGBA is useless and apparently
171 // harmful for some implementations
173 // FIXME: is this true?
174 if ( GetGLXVersion() <= 12 )
176 glattrs
[p
++] = GLX_RGBA
;
180 case WX_GL_BUFFER_SIZE
:
181 glattrs
[p
++] = GLX_BUFFER_SIZE
;
185 glattrs
[p
++] = GLX_LEVEL
;
188 case WX_GL_DOUBLEBUFFER
:
189 glattrs
[p
++] = GLX_DOUBLEBUFFER
;
193 glattrs
[p
++] = GLX_STEREO
;
196 case WX_GL_AUX_BUFFERS
:
197 glattrs
[p
++] = GLX_AUX_BUFFERS
;
201 glattrs
[p
++] = GLX_RED_SIZE
;
204 case WX_GL_MIN_GREEN
:
205 glattrs
[p
++] = GLX_GREEN_SIZE
;
209 glattrs
[p
++] = GLX_BLUE_SIZE
;
212 case WX_GL_MIN_ALPHA
:
213 glattrs
[p
++] = GLX_ALPHA_SIZE
;
216 case WX_GL_DEPTH_SIZE
:
217 glattrs
[p
++] = GLX_DEPTH_SIZE
;
220 case WX_GL_STENCIL_SIZE
:
221 glattrs
[p
++] = GLX_STENCIL_SIZE
;
224 case WX_GL_MIN_ACCUM_RED
:
225 glattrs
[p
++] = GLX_ACCUM_RED_SIZE
;
228 case WX_GL_MIN_ACCUM_GREEN
:
229 glattrs
[p
++] = GLX_ACCUM_GREEN_SIZE
;
232 case WX_GL_MIN_ACCUM_BLUE
:
233 glattrs
[p
++] = GLX_ACCUM_BLUE_SIZE
;
236 case WX_GL_MIN_ACCUM_ALPHA
:
237 glattrs
[p
++] = GLX_ACCUM_ALPHA_SIZE
;
241 wxLogDebug(_T("Unsupported OpenGL attribute %d"),
246 // copy attribute value as is
247 glattrs
[p
++] = wxattrs
[arg
++];
258 wxGLCanvasX11::InitXVisualInfo(const int *attribList
,
260 XVisualInfo
**pXVisual
)
263 if ( !ConvertWXAttrsToGL(attribList
, data
, WXSIZEOF(data
)) )
266 Display
* const dpy
= wxGetX11Display();
268 if ( GetGLXVersion() >= 13 )
271 *pFBC
= glXChooseFBConfig(dpy
, DefaultScreen(dpy
), data
, &returned
);
275 *pXVisual
= glXGetVisualFromFBConfig(wxGetX11Display(), **pFBC
);
286 *pXVisual
= glXChooseVisual(dpy
, DefaultScreen(dpy
), data
);
289 return *pXVisual
!= NULL
;
292 // ----------------------------------------------------------------------------
293 // default visual management
294 // ----------------------------------------------------------------------------
296 XVisualInfo
*wxGLCanvasX11::ms_glVisualInfo
= NULL
;
297 GLXFBConfig
*wxGLCanvasX11::ms_glFBCInfo
= NULL
;
300 bool wxGLCanvasX11::InitDefaultVisualInfo(const int *attribList
)
302 FreeDefaultVisualInfo();
304 return InitXVisualInfo(attribList
, &ms_glFBCInfo
, &ms_glVisualInfo
);
308 void wxGLCanvasX11::FreeDefaultVisualInfo()
316 if ( ms_glVisualInfo
)
318 XFree(ms_glVisualInfo
);
319 ms_glVisualInfo
= NULL
;
323 // ----------------------------------------------------------------------------
325 // ----------------------------------------------------------------------------
328 int wxGLCanvasX11::GetGLXVersion()
330 static int s_glxVersion
= 0;
331 if ( s_glxVersion
== 0 )
333 // check the GLX version
334 int glxMajorVer
, glxMinorVer
;
335 bool ok
= glXQueryVersion(wxGetX11Display(), &glxMajorVer
, &glxMinorVer
);
336 wxASSERT_MSG( ok
, _T("GLX version not found") );
338 s_glxVersion
= 10; // 1.0 by default
340 s_glxVersion
= glxMajorVer
*10 + glxMinorVer
;
346 void wxGLCanvasX11::SwapBuffers()
348 const Window xid
= GetXWindow();
349 wxCHECK_RET( xid
, _T("window must be shown") );
351 glXSwapBuffers(wxGetX11Display(), xid
);
354 bool wxGLCanvasX11::IsShownOnScreen() const
356 return GetXWindow() && wxGLCanvasBase::IsShownOnScreen();
359 #endif // wxUSE_GLCANVAS