]>
git.saurik.com Git - wxWidgets.git/blob - src/x11/glcanvas.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxGLCanvas, for using OpenGL with wxWindows
4 // Uses the GLX extension.
5 // Author: Julian Smart and Wolfram Gloger
9 // Copyright: (c) Julian Smart, Wolfram Gloger
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
14 #pragma implementation "glcanvas.h"
21 #include "wx/glcanvas.h"
27 # pragma message disable nosimpint
31 # pragma message enable nosimpint
33 #include "wx/x11/private.h"
35 static inline WXWindow
wxGetClientAreaWindow(wxWindow
* win
)
38 return win
->GetClientXWindow();
40 return win
->GetClientAreaWindow();
45 // workaround for bug in Mesa's glx.c
46 static int bitcount( unsigned long n
)
58 * GLContext implementation
61 IMPLEMENT_CLASS(wxGLContext
,wxObject
)
63 wxGLContext::wxGLContext( bool WXUNUSED(isRGB
), wxWindow
*win
,
64 const wxPalette
& WXUNUSED(palette
) )
67 // m_widget = win->m_wxwindow;
69 wxGLCanvas
*gc
= (wxGLCanvas
*) win
;
70 XVisualInfo
*vi
= (XVisualInfo
*) gc
->m_vi
;
72 wxCHECK_RET( vi
, "invalid visual for OpenGl" );
74 m_glContext
= glXCreateContext( (Display
*)wxGetDisplay(), vi
,
77 wxCHECK_RET( m_glContext
, "Couldn't create OpenGl context" );
80 wxGLContext::wxGLContext(
81 bool WXUNUSED(isRGB
), wxWindow
*win
,
82 const wxPalette
& WXUNUSED(palette
),
83 const wxGLContext
*other
/* for sharing display lists */
87 // m_widget = win->m_wxwindow;
89 wxGLCanvas
*gc
= (wxGLCanvas
*) win
;
90 XVisualInfo
*vi
= (XVisualInfo
*) gc
->m_vi
;
92 wxCHECK_RET( vi
, "invalid visual for OpenGl" );
95 m_glContext
= glXCreateContext( (Display
*)wxGetDisplay(), vi
,
96 other
->m_glContext
, GL_TRUE
);
98 m_glContext
= glXCreateContext( (Display
*)wxGetDisplay(), vi
,
101 wxCHECK_RET( m_glContext
, "Couldn't create OpenGl context" );
104 wxGLContext::~wxGLContext()
106 if (!m_glContext
) return;
108 if (m_glContext
== glXGetCurrentContext())
110 glXMakeCurrent( (Display
*) wxGetDisplay(), None
, NULL
);
113 glXDestroyContext( (Display
*) wxGetDisplay(), m_glContext
);
116 void wxGLContext::SwapBuffers()
120 Display
* display
= (Display
*) wxGetDisplay();
121 glXSwapBuffers(display
, (Window
) wxGetClientAreaWindow(m_window
));
125 void wxGLContext::SetCurrent()
129 Display
* display
= (Display
*) wxGetDisplay();
130 glXMakeCurrent(display
, (Window
) wxGetClientAreaWindow(m_window
),
135 void wxGLContext::SetColour(const char *colour
)
137 wxColour
*the_colour
= wxTheColourDatabase
->FindColour(colour
);
140 glGetBooleanv(GL_RGBA_MODE
, &b
);
142 glColor3ub(the_colour
->Red(),
147 the_colour
->AllocColour(m_window
->GetXDisplay());
149 the_colour
->CalcPixel(wxTheApp
->GetMainColormap(wxGetDisplay()));
151 GLint pix
= (GLint
)the_colour
->GetPixel();
154 wxLogError("wxGLCanvas: cannot allocate color\n");
162 void wxGLContext::SetupPixelFormat()
166 void wxGLContext::SetupPalette( const wxPalette
& WXUNUSED(palette
) )
170 wxPalette
wxGLContext::CreateDefaultPalette()
172 return wxNullPalette
;
179 * GLCanvas implementation
182 IMPLEMENT_CLASS(wxGLCanvas
, wxScrolledWindow
)
184 BEGIN_EVENT_TABLE(wxGLCanvas
, wxScrolledWindow
)
185 // EVT_SIZE(wxGLCanvas::OnSize)
189 wxGLCanvas::wxGLCanvas( wxWindow
*parent
, wxWindowID id
,
190 const wxPoint
& pos
, const wxSize
& size
,
191 long style
, const wxString
& name
,
193 const wxPalette
& palette
)
194 : wxScrolledWindow(parent
, id
, pos
, size
, style
, name
)
196 Create( parent
, NULL
, NULL
, id
, pos
, size
, style
, name
, attribList
, palette
);
199 wxGLCanvas::wxGLCanvas( wxWindow
*parent
,
200 const wxGLContext
*shared
,
202 const wxPoint
& pos
, const wxSize
& size
,
203 long style
, const wxString
& name
,
205 const wxPalette
& palette
)
206 : wxScrolledWindow(parent
, id
, pos
, size
, style
, name
)
208 Create( parent
, shared
, NULL
, id
, pos
, size
, style
, name
, attribList
, palette
);
211 wxGLCanvas::wxGLCanvas( wxWindow
*parent
,
212 const wxGLCanvas
*shared
,
214 const wxPoint
& pos
, const wxSize
& size
,
215 long style
, const wxString
& name
,
217 const wxPalette
& palette
)
218 : wxScrolledWindow(parent
, id
, pos
, size
, style
, name
)
220 Create( parent
, NULL
, shared
, id
, pos
, size
, style
, name
, attribList
, palette
);
225 bool wxGLCanvas::Create(wxWindow *parent,
226 const wxGLContext *shared, const wxGLCanvas *shared_context_of,
227 wxWindowID id = -1, const wxPoint& pos,
228 const wxSize& size, long style,
229 const wxString& name, int *attribList, const wxPalette& palette):
230 wxScrolledWindow(parent, id, pos, size, style, name)
233 bool wxGLCanvas::Create( wxWindow
*parent
,
234 const wxGLContext
*shared
,
235 const wxGLCanvas
*shared_context_of
,
237 const wxPoint
& pos
, const wxSize
& size
,
238 long style
, const wxString
& name
,
240 const wxPalette
& palette
)
242 XVisualInfo
*vi
, vi_templ
;
243 XWindowAttributes xwa
;
246 m_sharedContext
= (wxGLContext
*)shared
; // const_cast
247 m_sharedContextOf
= (wxGLCanvas
*)shared_context_of
; // const_cast
248 m_glContext
= (wxGLContext
*) NULL
;
250 Display
* display
= (Display
*) wxGetDisplay();
252 // Check for the presence of the GLX extension
253 if(!glXQueryExtension(display
, NULL
, NULL
)) {
254 wxLogDebug("wxGLCanvas: GLX extension is missing\n");
259 int data
[512], arg
=0, p
=0;
261 while( (attribList
[arg
]!=0) && (p
<512) )
263 switch( attribList
[arg
++] )
265 case WX_GL_RGBA
: data
[p
++] = GLX_RGBA
; break;
266 case WX_GL_BUFFER_SIZE
:
267 data
[p
++]=GLX_BUFFER_SIZE
; data
[p
++]=attribList
[arg
++]; break;
269 data
[p
++]=GLX_LEVEL
; data
[p
++]=attribList
[arg
++]; break;
270 case WX_GL_DOUBLEBUFFER
: data
[p
++] = GLX_DOUBLEBUFFER
; break;
271 case WX_GL_STEREO
: data
[p
++] = GLX_STEREO
; break;
272 case WX_GL_AUX_BUFFERS
:
273 data
[p
++]=GLX_AUX_BUFFERS
; data
[p
++]=attribList
[arg
++]; break;
275 data
[p
++]=GLX_RED_SIZE
; data
[p
++]=attribList
[arg
++]; break;
276 case WX_GL_MIN_GREEN
:
277 data
[p
++]=GLX_GREEN_SIZE
; data
[p
++]=attribList
[arg
++]; break;
279 data
[p
++]=GLX_BLUE_SIZE
; data
[p
++]=attribList
[arg
++]; break;
280 case WX_GL_MIN_ALPHA
:
281 data
[p
++]=GLX_ALPHA_SIZE
; data
[p
++]=attribList
[arg
++]; break;
282 case WX_GL_DEPTH_SIZE
:
283 data
[p
++]=GLX_DEPTH_SIZE
; data
[p
++]=attribList
[arg
++]; break;
284 case WX_GL_STENCIL_SIZE
:
285 data
[p
++]=GLX_STENCIL_SIZE
; data
[p
++]=attribList
[arg
++]; break;
286 case WX_GL_MIN_ACCUM_RED
:
287 data
[p
++]=GLX_ACCUM_RED_SIZE
; data
[p
++]=attribList
[arg
++]; break;
288 case WX_GL_MIN_ACCUM_GREEN
:
289 data
[p
++]=GLX_ACCUM_GREEN_SIZE
; data
[p
++]=attribList
[arg
++]; break;
290 case WX_GL_MIN_ACCUM_BLUE
:
291 data
[p
++]=GLX_ACCUM_BLUE_SIZE
; data
[p
++]=attribList
[arg
++]; break;
292 case WX_GL_MIN_ACCUM_ALPHA
:
293 data
[p
++]=GLX_ACCUM_ALPHA_SIZE
; data
[p
++]=attribList
[arg
++]; break;
300 attribList
= (int*) data
;
301 // Get an appropriate visual
302 vi
= glXChooseVisual(display
, DefaultScreen(display
), attribList
);
303 if(!vi
) return FALSE
;
305 // Here we should make sure that vi is the same visual as the
306 // one used by the xwindow drawable in wxCanvas. However,
307 // there is currently no mechanism for this in wx_canvs.cc.
309 // By default, we use the visual of xwindow
310 // NI: is this really senseful ? opengl in e.g. color index mode ?
311 XGetWindowAttributes(display
, (Window
)wxGetClientAreaWindow(this), &xwa
);
312 vi_templ
.visualid
= XVisualIDFromVisual(xwa
.visual
);
313 vi
= XGetVisualInfo(display
, VisualIDMask
, &vi_templ
, &n
);
314 if(!vi
) return FALSE
;
315 glXGetConfig(display
, vi
, GLX_USE_GL
, &val
);
316 if(!val
) return FALSE
;
317 // Basically, this is it. It should be possible to use vi
318 // in glXCreateContext() below. But this fails with Mesa.
319 // I notified the Mesa author about it; there may be a fix.
321 // Construct an attribute list matching the visual
324 if(vi
->c_class
==TrueColor
|| vi
->c_class
==DirectColor
) { // RGBA visual
325 a_list
[n
++] = GLX_RGBA
;
326 a_list
[n
++] = GLX_RED_SIZE
;
327 a_list
[n
++] = bitcount(vi
->red_mask
);
328 a_list
[n
++] = GLX_GREEN_SIZE
;
329 a_list
[n
++] = bitcount(vi
->green_mask
);
330 a_list
[n
++] = GLX_BLUE_SIZE
;
331 a_list
[n
++] = bitcount(vi
->blue_mask
);
332 glXGetConfig(display
, vi
, GLX_ALPHA_SIZE
, &val
);
333 a_list
[n
++] = GLX_ALPHA_SIZE
;
335 } else { // Color index visual
336 glXGetConfig(display
, vi
, GLX_BUFFER_SIZE
, &val
);
337 a_list
[n
++] = GLX_BUFFER_SIZE
;
342 vi
= glXChooseVisual(display
, DefaultScreen(display
), a_list
);
343 if(!vi
) return FALSE
;
344 #endif /* OLD_MESA */
347 m_vi
= vi
; // safe for later use
349 wxCHECK_MSG( m_vi
, FALSE
, "required visual couldn't be found" );
351 // Create the GLX context and make it current
353 wxGLContext
*share
= m_sharedContext
;
354 if (share
==NULL
&& m_sharedContextOf
)
355 share
= m_sharedContextOf
->GetContext();
357 m_glContext
= new wxGLContext( TRUE
, this, wxNullPalette
, share
);
367 wxGLCanvas::~wxGLCanvas(void)
369 XVisualInfo
*vi
= (XVisualInfo
*) m_vi
;
372 if (m_glContext
) delete m_glContext
;
374 // Display* display = (Display*) GetXDisplay();
375 // if(glx_cx) glXDestroyContext(display, glx_cx);
378 void wxGLCanvas::SwapBuffers()
380 if( m_glContext
) m_glContext
->SwapBuffers();
382 // Display* display = (Display*) GetXDisplay();
383 // if(glx_cx) glXSwapBuffers(display, (Window) GetClientAreaWindow());
386 void wxGLCanvas::SetCurrent()
388 if( m_glContext
) m_glContext
->SetCurrent();
390 // Display* display = (Display*) GetXDisplay();
391 // if(glx_cx) glXMakeCurrent(display, (Window) GetClientAreaWindow(), glx_cx);
394 void wxGLCanvas::SetColour(const char *col
)
396 if( m_glContext
) m_glContext
->SetColour(col
);