]>
Commit | Line | Data |
---|---|---|
8b089c5e | 1 | ///////////////////////////////////////////////////////////////////////////// |
9b5f1895 | 2 | // Name: src/gtk/glcanvas.cpp |
77ffb593 | 3 | // Purpose: wxGLCanvas, for using OpenGL/Mesa with wxWidgets and GTK |
8b089c5e JS |
4 | // Author: Robert Roebling |
5 | // Modified by: | |
6 | // Created: 17/08/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Robert Roebling | |
65571936 | 9 | // Licence: wxWindows licence |
8b089c5e JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
14f355c2 VS |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
8b089c5e JS |
15 | #if wxUSE_GLCANVAS |
16 | ||
17 | #include "wx/glcanvas.h" | |
18 | ||
19 | #include "wx/frame.h" | |
20 | #include "wx/colour.h" | |
21 | #include "wx/module.h" | |
22 | #include "wx/app.h" | |
23 | ||
2b5f62a0 VZ |
24 | extern "C" |
25 | { | |
8b089c5e JS |
26 | #include "gtk/gtk.h" |
27 | #include "gdk/gdk.h" | |
28 | #include "gdk/gdkx.h" | |
29 | } | |
30 | ||
31 | #include "wx/gtk/win_gtk.h" | |
32 | ||
34fdf762 VS |
33 | // DLL options compatibility check: |
34 | #include "wx/build.h" | |
35 | WX_CHECK_BUILD_OPTIONS("wxGL") | |
36 | ||
34a34b02 VZ |
37 | |
38 | //--------------------------------------------------------------------------- | |
39 | // static variables | |
40 | //--------------------------------------------------------------------------- | |
41 | int wxGLCanvas::m_glxVersion = 0; | |
42 | ||
8b089c5e JS |
43 | //--------------------------------------------------------------------------- |
44 | // global data | |
45 | //--------------------------------------------------------------------------- | |
46 | ||
47 | XVisualInfo *g_vi = (XVisualInfo*) NULL; | |
8b089c5e JS |
48 | //----------------------------------------------------------------------------- |
49 | // idle system | |
50 | //----------------------------------------------------------------------------- | |
51 | ||
52 | extern void wxapp_install_idle_handler(); | |
53 | extern bool g_isIdle; | |
54 | ||
55 | //--------------------------------------------------------------------------- | |
56 | // wxGLContext | |
57 | //--------------------------------------------------------------------------- | |
58 | ||
59 | IMPLEMENT_CLASS(wxGLContext,wxObject) | |
60 | ||
61 | wxGLContext::wxGLContext( bool WXUNUSED(isRGB), wxWindow *win, const wxPalette& WXUNUSED(palette) ) | |
62 | { | |
63 | m_window = win; | |
64 | m_widget = win->m_wxwindow; | |
65 | ||
66 | wxGLCanvas *gc = (wxGLCanvas*) win; | |
2b5f62a0 | 67 | |
34a34b02 | 68 | if (wxGLCanvas::GetGLXVersion() >= 13) |
b4d06fb7 MR |
69 | { |
70 | // GLX >= 1.3 | |
71 | GLXFBConfig *fbc = gc->m_fbc; | |
72 | wxCHECK_RET( fbc, _T("invalid GLXFBConfig for OpenGl") ); | |
73 | m_glContext = glXCreateNewContext( GDK_DISPLAY(), fbc[0], GLX_RGBA_TYPE, None, GL_TRUE ); | |
74 | } | |
34a34b02 | 75 | else |
b4d06fb7 MR |
76 | { |
77 | // GLX <= 1.2 | |
78 | XVisualInfo *vi = (XVisualInfo *) gc->m_vi; | |
79 | wxCHECK_RET( vi, _T("invalid visual for OpenGl") ); | |
80 | m_glContext = glXCreateContext( GDK_DISPLAY(), vi, None, GL_TRUE ); | |
81 | } | |
2b5f62a0 VZ |
82 | |
83 | wxCHECK_RET( m_glContext, _T("Couldn't create OpenGl context") ); | |
8b089c5e JS |
84 | } |
85 | ||
2b5f62a0 VZ |
86 | wxGLContext::wxGLContext( |
87 | bool WXUNUSED(isRGB), wxWindow *win, | |
8b089c5e JS |
88 | const wxPalette& WXUNUSED(palette), |
89 | const wxGLContext *other /* for sharing display lists */ | |
90 | ) | |
91 | { | |
92 | m_window = win; | |
93 | m_widget = win->m_wxwindow; | |
94 | ||
95 | wxGLCanvas *gc = (wxGLCanvas*) win; | |
2b5f62a0 | 96 | |
34a34b02 | 97 | if (wxGLCanvas::GetGLXVersion() >= 13) |
b4d06fb7 MR |
98 | { |
99 | // GLX >= 1.3 | |
100 | GLXFBConfig *fbc = gc->m_fbc; | |
101 | wxCHECK_RET( fbc, _T("invalid GLXFBConfig for OpenGl") ); | |
102 | m_glContext = glXCreateNewContext( GDK_DISPLAY(), fbc[0], GLX_RGBA_TYPE, | |
103 | other ? other->m_glContext : None, | |
104 | GL_TRUE ); | |
105 | } | |
34a34b02 | 106 | else |
b4d06fb7 MR |
107 | { |
108 | // GLX <= 1.2 | |
109 | XVisualInfo *vi = (XVisualInfo *) gc->m_vi; | |
110 | wxCHECK_RET( vi, _T("invalid visual for OpenGl") ); | |
111 | m_glContext = glXCreateContext( GDK_DISPLAY(), vi, | |
112 | other ? other->m_glContext : None, | |
113 | GL_TRUE ); | |
114 | } | |
2b5f62a0 VZ |
115 | |
116 | if ( !m_glContext ) | |
117 | { | |
118 | wxFAIL_MSG( _T("Couldn't create OpenGl context") ); | |
119 | } | |
8b089c5e JS |
120 | } |
121 | ||
122 | wxGLContext::~wxGLContext() | |
123 | { | |
124 | if (!m_glContext) return; | |
2b5f62a0 | 125 | |
8b089c5e JS |
126 | if (m_glContext == glXGetCurrentContext()) |
127 | { | |
b4d06fb7 MR |
128 | if (wxGLCanvas::GetGLXVersion() >= 13) |
129 | // GLX >= 1.3 | |
130 | glXMakeContextCurrent( GDK_DISPLAY(), None, None, NULL); | |
131 | else | |
132 | // GLX <= 1.2 | |
133 | glXMakeCurrent( GDK_DISPLAY(), None, NULL); | |
8b089c5e | 134 | } |
2b5f62a0 | 135 | |
8b089c5e JS |
136 | glXDestroyContext( GDK_DISPLAY(), m_glContext ); |
137 | } | |
138 | ||
139 | void wxGLContext::SwapBuffers() | |
140 | { | |
141 | if (m_glContext) | |
142 | { | |
143 | GdkWindow *window = GTK_PIZZA(m_widget)->bin_window; | |
144 | glXSwapBuffers( GDK_DISPLAY(), GDK_WINDOW_XWINDOW( window ) ); | |
145 | } | |
146 | } | |
147 | ||
148 | void wxGLContext::SetCurrent() | |
149 | { | |
2b5f62a0 VZ |
150 | if (m_glContext) |
151 | { | |
8b089c5e | 152 | GdkWindow *window = GTK_PIZZA(m_widget)->bin_window; |
b4d06fb7 MR |
153 | |
154 | if (wxGLCanvas::GetGLXVersion() >= 13) | |
155 | // GLX >= 1.3 | |
156 | glXMakeContextCurrent( GDK_DISPLAY(), GDK_WINDOW_XWINDOW(window), | |
157 | GDK_WINDOW_XWINDOW(window), m_glContext ); | |
158 | else | |
159 | // GLX <= 1.2 | |
160 | glXMakeCurrent( GDK_DISPLAY(), GDK_WINDOW_XWINDOW(window), m_glContext ); | |
8b089c5e JS |
161 | } |
162 | } | |
163 | ||
2b5f62a0 | 164 | void wxGLContext::SetColour(const wxChar *colour) |
8b089c5e | 165 | { |
564a150b VZ |
166 | wxColour col = wxTheColourDatabase->Find(colour); |
167 | if (col.Ok()) | |
8b089c5e | 168 | { |
564a150b VZ |
169 | float r = (float)(col.Red()/256.0); |
170 | float g = (float)(col.Green()/256.0); | |
171 | float b = (float)(col.Blue()/256.0); | |
8b089c5e JS |
172 | glColor3f( r, g, b); |
173 | } | |
174 | } | |
175 | ||
176 | void wxGLContext::SetupPixelFormat() | |
177 | { | |
178 | } | |
179 | ||
180 | void wxGLContext::SetupPalette( const wxPalette& WXUNUSED(palette) ) | |
181 | { | |
182 | } | |
183 | ||
184 | wxPalette wxGLContext::CreateDefaultPalette() | |
185 | { | |
186 | return wxNullPalette; | |
187 | } | |
188 | ||
189 | //----------------------------------------------------------------------------- | |
190 | // "realize" from m_wxwindow | |
191 | //----------------------------------------------------------------------------- | |
192 | ||
865bb325 | 193 | extern "C" { |
8b089c5e | 194 | static gint |
34a34b02 | 195 | gtk_glwindow_realized_callback( GtkWidget *WXUNUSED(widget), wxGLCanvas *win ) |
8b089c5e | 196 | { |
4230303c VZ |
197 | if ( !win->m_glContext ) |
198 | { | |
199 | wxGLContext *share = win->m_sharedContext; | |
200 | if ( !share && win->m_sharedContextOf ) | |
201 | share = win->m_sharedContextOf->GetContext(); | |
8b089c5e | 202 | |
4230303c VZ |
203 | win->m_glContext = new wxGLContext( TRUE, win, wxNullPalette, share ); |
204 | } | |
8b089c5e JS |
205 | |
206 | return FALSE; | |
207 | } | |
865bb325 | 208 | } |
8b089c5e JS |
209 | |
210 | //----------------------------------------------------------------------------- | |
211 | // "map" from m_wxwindow | |
212 | //----------------------------------------------------------------------------- | |
213 | ||
865bb325 | 214 | extern "C" { |
8b089c5e JS |
215 | static gint |
216 | gtk_glwindow_map_callback( GtkWidget * WXUNUSED(widget), wxGLCanvas *win ) | |
217 | { | |
218 | if (win->m_glContext/* && win->m_exposed*/) | |
219 | { | |
220 | wxPaintEvent event( win->GetId() ); | |
221 | event.SetEventObject( win ); | |
222 | win->GetEventHandler()->ProcessEvent( event ); | |
223 | ||
224 | win->m_exposed = FALSE; | |
225 | win->GetUpdateRegion().Clear(); | |
226 | } | |
227 | ||
228 | return FALSE; | |
229 | } | |
865bb325 | 230 | } |
8b089c5e JS |
231 | |
232 | //----------------------------------------------------------------------------- | |
233 | // "expose_event" of m_wxwindow | |
234 | //----------------------------------------------------------------------------- | |
235 | ||
865bb325 | 236 | extern "C" { |
2b5f62a0 | 237 | static void |
8b089c5e JS |
238 | gtk_glwindow_expose_callback( GtkWidget *WXUNUSED(widget), GdkEventExpose *gdk_event, wxGLCanvas *win ) |
239 | { | |
2b5f62a0 | 240 | if (g_isIdle) |
8b089c5e JS |
241 | wxapp_install_idle_handler(); |
242 | ||
243 | win->m_exposed = TRUE; | |
244 | ||
245 | win->GetUpdateRegion().Union( gdk_event->area.x, | |
246 | gdk_event->area.y, | |
247 | gdk_event->area.width, | |
248 | gdk_event->area.height ); | |
249 | } | |
865bb325 | 250 | } |
8b089c5e | 251 | |
8b089c5e JS |
252 | //----------------------------------------------------------------------------- |
253 | // "size_allocate" of m_wxwindow | |
254 | //----------------------------------------------------------------------------- | |
255 | ||
865bb325 | 256 | extern "C" { |
2b5f62a0 | 257 | static void |
8b089c5e JS |
258 | gtk_glcanvas_size_callback( GtkWidget *WXUNUSED(widget), GtkAllocation* alloc, wxGLCanvas *win ) |
259 | { | |
260 | if (g_isIdle) | |
261 | wxapp_install_idle_handler(); | |
262 | ||
263 | if (!win->m_hasVMT) | |
264 | return; | |
265 | ||
266 | wxSizeEvent event( wxSize(win->m_width,win->m_height), win->GetId() ); | |
267 | event.SetEventObject( win ); | |
268 | win->GetEventHandler()->ProcessEvent( event ); | |
269 | } | |
865bb325 | 270 | } |
8b089c5e JS |
271 | |
272 | //--------------------------------------------------------------------------- | |
273 | // wxGlCanvas | |
274 | //--------------------------------------------------------------------------- | |
275 | ||
4660d7e5 | 276 | IMPLEMENT_CLASS(wxGLCanvas, wxWindow) |
8b089c5e | 277 | |
4660d7e5 | 278 | BEGIN_EVENT_TABLE(wxGLCanvas, wxWindow) |
8b089c5e JS |
279 | EVT_SIZE(wxGLCanvas::OnSize) |
280 | END_EVENT_TABLE() | |
281 | ||
282 | wxGLCanvas::wxGLCanvas( wxWindow *parent, wxWindowID id, | |
2b5f62a0 VZ |
283 | const wxPoint& pos, const wxSize& size, |
284 | long style, const wxString& name, | |
285 | int *attribList, | |
286 | const wxPalette& palette ) | |
8b089c5e JS |
287 | { |
288 | Create( parent, NULL, NULL, id, pos, size, style, name, attribList, palette ); | |
289 | } | |
290 | ||
2b5f62a0 | 291 | wxGLCanvas::wxGLCanvas( wxWindow *parent, |
8b089c5e JS |
292 | const wxGLContext *shared, |
293 | wxWindowID id, | |
2b5f62a0 VZ |
294 | const wxPoint& pos, const wxSize& size, |
295 | long style, const wxString& name, | |
296 | int *attribList, | |
297 | const wxPalette& palette ) | |
298 | { | |
8b089c5e JS |
299 | Create( parent, shared, NULL, id, pos, size, style, name, attribList, palette ); |
300 | } | |
301 | ||
2b5f62a0 | 302 | wxGLCanvas::wxGLCanvas( wxWindow *parent, |
8b089c5e JS |
303 | const wxGLCanvas *shared, |
304 | wxWindowID id, | |
2b5f62a0 VZ |
305 | const wxPoint& pos, const wxSize& size, |
306 | long style, const wxString& name, | |
307 | int *attribList, | |
308 | const wxPalette& palette ) | |
309 | { | |
8b089c5e JS |
310 | Create( parent, NULL, shared, id, pos, size, style, name, attribList, palette ); |
311 | } | |
312 | ||
2b5f62a0 | 313 | bool wxGLCanvas::Create( wxWindow *parent, |
8b089c5e JS |
314 | const wxGLContext *shared, |
315 | const wxGLCanvas *shared_context_of, | |
316 | wxWindowID id, | |
2b5f62a0 VZ |
317 | const wxPoint& pos, const wxSize& size, |
318 | long style, const wxString& name, | |
319 | int *attribList, | |
320 | const wxPalette& palette) | |
8b089c5e JS |
321 | { |
322 | m_sharedContext = (wxGLContext*)shared; // const_cast | |
323 | m_sharedContextOf = (wxGLCanvas*)shared_context_of; // const_cast | |
324 | m_glContext = (wxGLContext*) NULL; | |
2b5f62a0 | 325 | |
8b089c5e JS |
326 | m_exposed = FALSE; |
327 | m_noExpose = TRUE; | |
328 | m_nativeSizeEvent = TRUE; | |
34a34b02 VZ |
329 | m_fbc = NULL; |
330 | m_vi = NULL; | |
331 | ||
332 | // to be sure the glx version is known | |
333 | wxGLCanvas::QueryGLXVersion(); | |
334 | ||
335 | if (wxGLCanvas::GetGLXVersion() >= 13) | |
b4d06fb7 MR |
336 | { |
337 | // GLX >= 1.3 uses a GLXFBConfig | |
338 | GLXFBConfig * fbc = NULL; | |
339 | if (wxTheApp->m_glFBCInfo != NULL) | |
340 | { | |
341 | fbc = (GLXFBConfig *) wxTheApp->m_glFBCInfo; | |
342 | m_canFreeFBC = FALSE; // owned by wxTheApp - don't free upon destruction | |
343 | } | |
344 | else | |
345 | { | |
346 | fbc = (GLXFBConfig *) wxGLCanvas::ChooseGLFBC(attribList); | |
347 | m_canFreeFBC = TRUE; | |
348 | } | |
349 | m_fbc = fbc; // save for later use | |
350 | wxCHECK_MSG( m_fbc, FALSE, _T("required FBConfig couldn't be found") ); | |
351 | } | |
2b5f62a0 | 352 | |
a6f5aa49 | 353 | XVisualInfo *vi = NULL; |
2b5f62a0 VZ |
354 | if (wxTheApp->m_glVisualInfo != NULL) |
355 | { | |
b4d06fb7 | 356 | vi = (XVisualInfo *)wxTheApp->m_glVisualInfo; |
a6f5aa49 | 357 | m_canFreeVi = FALSE; // owned by wxTheApp - don't free upon destruction |
2b5f62a0 VZ |
358 | } |
359 | else | |
360 | { | |
b4d06fb7 MR |
361 | if (wxGLCanvas::GetGLXVersion() >= 13) |
362 | // GLX >= 1.3 | |
363 | vi = glXGetVisualFromFBConfig(GDK_DISPLAY(), m_fbc[0]); | |
364 | else | |
365 | // GLX <= 1.2 | |
366 | vi = (XVisualInfo *) ChooseGLVisual(attribList); | |
367 | ||
a6f5aa49 VZ |
368 | m_canFreeVi = TRUE; |
369 | } | |
b4d06fb7 | 370 | |
a6f5aa49 | 371 | m_vi = vi; // save for later use |
2b5f62a0 VZ |
372 | |
373 | wxCHECK_MSG( m_vi, FALSE, _T("required visual couldn't be found") ); | |
fee7a683 MR |
374 | GdkVisual *visual; |
375 | GdkColormap *colormap; | |
2b5f62a0 | 376 | |
fee7a683 | 377 | // MR: This needs a fix for lower gtk+ versions too. Might need to rethink logic (FIXME) |
b3f4c570 | 378 | #if defined(__WXGTK20__) && GTK_CHECK_VERSION(2,2,0) |
fee7a683 MR |
379 | if (!gtk_check_version(2,2,0)) |
380 | { | |
381 | wxWindow::Create( parent, id, pos, size, style, name ); | |
382 | ||
383 | m_glWidget = m_wxwindow; | |
384 | ||
385 | GdkScreen *screen = gtk_widget_get_screen( m_glWidget ); | |
386 | colormap = gdk_screen_get_default_colormap(screen); | |
387 | visual = gdk_colormap_get_visual(colormap); | |
388 | ||
389 | if (GDK_VISUAL_XVISUAL(visual)->visualid != vi->visualid) | |
390 | { | |
391 | visual = gdk_x11_screen_lookup_visual( screen, vi->visualid ); | |
392 | colormap = gdk_colormap_new(visual, FALSE); | |
393 | } | |
394 | ||
395 | gtk_widget_set_colormap( m_glWidget, colormap ); | |
396 | } | |
397 | else | |
398 | #endif | |
399 | { | |
400 | visual = gdkx_visual_get( vi->visualid ); | |
401 | colormap = gdk_colormap_new( visual, TRUE ); | |
a6f5aa49 | 402 | |
fee7a683 | 403 | gtk_widget_push_colormap( colormap ); |
a6f5aa49 | 404 | |
fee7a683 MR |
405 | wxWindow::Create( parent, id, pos, size, style, name ); |
406 | m_glWidget = m_wxwindow; | |
407 | } | |
2b5f62a0 | 408 | |
2b5b9325 | 409 | gtk_widget_set_double_buffered( m_glWidget, FALSE ); |
2b5b9325 | 410 | |
a6f5aa49 | 411 | gtk_pizza_set_clear( GTK_PIZZA(m_wxwindow), FALSE ); |
2b5f62a0 | 412 | |
9fa72bd2 MR |
413 | g_signal_connect (m_wxwindow, "realize", |
414 | G_CALLBACK (gtk_glwindow_realized_callback), | |
415 | this); | |
416 | g_signal_connect (m_wxwindow, "map", | |
417 | G_CALLBACK (gtk_glwindow_map_callback), | |
418 | this); | |
419 | g_signal_connect (m_wxwindow, "expose_event", | |
420 | G_CALLBACK (gtk_glwindow_expose_callback), | |
421 | this); | |
422 | g_signal_connect (m_widget, "size_allocate", | |
423 | G_CALLBACK (gtk_glcanvas_size_callback), | |
424 | this); | |
a6f5aa49 | 425 | |
fee7a683 MR |
426 | if (gtk_check_version(2,2,0) != NULL) |
427 | { | |
fee7a683 MR |
428 | gtk_widget_pop_colormap(); |
429 | } | |
2b5f62a0 | 430 | |
bc869971 VZ |
431 | // if our parent window is already visible, we had been realized before we |
432 | // connected to the "realize" signal and hence our m_glContext hasn't been | |
433 | // initialized yet and we have to do it now | |
434 | if (GTK_WIDGET_REALIZED(m_wxwindow)) | |
435 | gtk_glwindow_realized_callback( m_wxwindow, this ); | |
436 | ||
437 | if (GTK_WIDGET_MAPPED(m_wxwindow)) | |
438 | gtk_glwindow_map_callback( m_wxwindow, this ); | |
439 | ||
a6f5aa49 VZ |
440 | return TRUE; |
441 | } | |
442 | ||
443 | wxGLCanvas::~wxGLCanvas() | |
444 | { | |
b4d06fb7 MR |
445 | GLXFBConfig * fbc = (GLXFBConfig *) m_fbc; |
446 | if (fbc && m_canFreeFBC) | |
447 | XFree( fbc ); | |
448 | ||
449 | XVisualInfo *vi = (XVisualInfo *) m_vi; | |
450 | if (vi && m_canFreeVi) | |
451 | XFree( vi ); | |
2b5f62a0 | 452 | |
4230303c | 453 | delete m_glContext; |
a6f5aa49 VZ |
454 | } |
455 | ||
456 | void* wxGLCanvas::ChooseGLVisual(int *attribList) | |
457 | { | |
458 | int data[512]; | |
b4d06fb7 MR |
459 | GetGLAttribListFromWX( attribList, data ); |
460 | attribList = (int*) data; | |
34a34b02 | 461 | |
b4d06fb7 MR |
462 | Display *dpy = GDK_DISPLAY(); |
463 | ||
464 | return glXChooseVisual( dpy, DefaultScreen(dpy), attribList ); | |
34a34b02 | 465 | } |
0f8d11dc | 466 | |
34a34b02 VZ |
467 | void* wxGLCanvas::ChooseGLFBC(int *attribList) |
468 | { | |
b4d06fb7 MR |
469 | int data[512]; |
470 | GetGLAttribListFromWX( attribList, data ); | |
471 | attribList = (int*) data; | |
34a34b02 | 472 | |
b4d06fb7 MR |
473 | int returned; |
474 | return glXChooseFBConfig( GDK_DISPLAY(), DefaultScreen(GDK_DISPLAY()), | |
475 | attribList, &returned ); | |
34a34b02 VZ |
476 | } |
477 | ||
478 | ||
479 | void wxGLCanvas::GetGLAttribListFromWX(int *wx_attribList, int *gl_attribList ) | |
480 | { | |
b4d06fb7 | 481 | if (!wx_attribList) |
34a34b02 | 482 | { |
b4d06fb7 MR |
483 | if (wxGLCanvas::GetGLXVersion() >= 13) |
484 | // leave GLX >= 1.3 choose the default attributes | |
485 | gl_attribList[0] = 0; | |
486 | else | |
487 | { | |
488 | int i = 0; | |
489 | // default settings if attriblist = 0 | |
490 | gl_attribList[i++] = GLX_RGBA; | |
491 | gl_attribList[i++] = GLX_DOUBLEBUFFER; | |
492 | gl_attribList[i++] = GLX_DEPTH_SIZE; gl_attribList[i++] = 1; | |
493 | gl_attribList[i++] = GLX_RED_SIZE; gl_attribList[i++] = 1; | |
494 | gl_attribList[i++] = GLX_GREEN_SIZE; gl_attribList[i++] = 1; | |
495 | gl_attribList[i++] = GLX_BLUE_SIZE; gl_attribList[i++] = 1; | |
496 | gl_attribList[i++] = GLX_ALPHA_SIZE; gl_attribList[i++] = 0; | |
497 | gl_attribList[i++] = None; | |
498 | } | |
8b089c5e JS |
499 | } |
500 | else | |
501 | { | |
b4d06fb7 MR |
502 | int arg=0, p=0; |
503 | while( (wx_attribList[arg]!=0) && (p<510) ) | |
8b089c5e | 504 | { |
b4d06fb7 MR |
505 | switch( wx_attribList[arg++] ) |
506 | { | |
507 | case WX_GL_RGBA: | |
508 | if (wxGLCanvas::GetGLXVersion() <= 12) | |
509 | // for GLX >= 1.3, GLX_RGBA is useless (setting this flags will crash on most opengl implm) | |
510 | gl_attribList[p++] = GLX_RGBA; | |
511 | break; | |
512 | case WX_GL_BUFFER_SIZE: | |
513 | gl_attribList[p++] = GLX_BUFFER_SIZE; | |
514 | gl_attribList[p++] = wx_attribList[arg++]; | |
515 | break; | |
516 | case WX_GL_LEVEL: | |
517 | gl_attribList[p++] = GLX_LEVEL; | |
518 | gl_attribList[p++] = wx_attribList[arg++]; | |
519 | break; | |
520 | case WX_GL_DOUBLEBUFFER: | |
521 | if (wxGLCanvas::GetGLXVersion() <= 12) | |
522 | gl_attribList[p++] = GLX_DOUBLEBUFFER; | |
523 | else | |
524 | // for GLX >= 1.3, GLX_DOUBLEBUFFER format is different (1 <=> True) | |
525 | // it seems this flag is useless for some hardware opengl implementation. | |
526 | // but for Mesa 6.2.1, this flag is used so don't ignore it. | |
527 | gl_attribList[p++] = GLX_DOUBLEBUFFER; | |
528 | gl_attribList[p++] = 1; | |
529 | break; | |
530 | case WX_GL_STEREO: | |
531 | gl_attribList[p++] = GLX_STEREO; | |
532 | break; | |
533 | case WX_GL_AUX_BUFFERS: | |
534 | gl_attribList[p++] = GLX_AUX_BUFFERS; | |
535 | gl_attribList[p++] = wx_attribList[arg++]; | |
536 | break; | |
537 | case WX_GL_MIN_RED: | |
538 | gl_attribList[p++] = GLX_RED_SIZE; | |
539 | gl_attribList[p++] = wx_attribList[arg++]; | |
540 | break; | |
541 | case WX_GL_MIN_GREEN: | |
542 | gl_attribList[p++] = GLX_GREEN_SIZE; | |
543 | gl_attribList[p++] = wx_attribList[arg++]; | |
544 | break; | |
545 | case WX_GL_MIN_BLUE: | |
546 | gl_attribList[p++] = GLX_BLUE_SIZE; | |
547 | gl_attribList[p++] = wx_attribList[arg++]; | |
548 | break; | |
549 | case WX_GL_MIN_ALPHA: | |
550 | gl_attribList[p++] = GLX_ALPHA_SIZE; | |
551 | gl_attribList[p++] = wx_attribList[arg++]; | |
552 | break; | |
553 | case WX_GL_DEPTH_SIZE: | |
554 | gl_attribList[p++] = GLX_DEPTH_SIZE; | |
555 | gl_attribList[p++] = wx_attribList[arg++]; | |
556 | break; | |
557 | case WX_GL_STENCIL_SIZE: | |
558 | gl_attribList[p++] = GLX_STENCIL_SIZE; | |
559 | gl_attribList[p++] = wx_attribList[arg++]; | |
560 | break; | |
561 | case WX_GL_MIN_ACCUM_RED: | |
562 | gl_attribList[p++] = GLX_ACCUM_RED_SIZE; | |
563 | gl_attribList[p++] = wx_attribList[arg++]; | |
564 | break; | |
565 | case WX_GL_MIN_ACCUM_GREEN: | |
566 | gl_attribList[p++] = GLX_ACCUM_GREEN_SIZE; | |
567 | gl_attribList[p++] = wx_attribList[arg++]; | |
568 | break; | |
569 | case WX_GL_MIN_ACCUM_BLUE: | |
570 | gl_attribList[p++] = GLX_ACCUM_BLUE_SIZE; | |
571 | gl_attribList[p++] = wx_attribList[arg++]; | |
572 | break; | |
573 | case WX_GL_MIN_ACCUM_ALPHA: | |
574 | gl_attribList[p++] = GLX_ACCUM_ALPHA_SIZE; | |
575 | gl_attribList[p++] = wx_attribList[arg++]; | |
576 | break; | |
577 | default: | |
578 | break; | |
579 | } | |
8b089c5e | 580 | } |
b4d06fb7 MR |
581 | |
582 | gl_attribList[p] = 0; | |
8b089c5e | 583 | } |
34a34b02 | 584 | } |
2b5f62a0 | 585 | |
34a34b02 VZ |
586 | void wxGLCanvas::QueryGLXVersion() |
587 | { | |
b4d06fb7 | 588 | if (m_glxVersion == 0) |
34a34b02 | 589 | { |
b4d06fb7 MR |
590 | // check the GLX version |
591 | int glxMajorVer, glxMinorVer; | |
592 | bool ok = glXQueryVersion(GDK_DISPLAY(), &glxMajorVer, &glxMinorVer); | |
593 | wxASSERT_MSG( ok, _T("GLX version not found") ); | |
594 | if (!ok) | |
595 | m_glxVersion = 10; // 1.0 by default | |
596 | else | |
597 | m_glxVersion = glxMajorVer*10 + glxMinorVer; | |
34a34b02 VZ |
598 | } |
599 | } | |
2b5f62a0 | 600 | |
34a34b02 VZ |
601 | int wxGLCanvas::GetGLXVersion() |
602 | { | |
b4d06fb7 MR |
603 | wxASSERT_MSG( m_glxVersion>0, _T("GLX version has not been initialized with wxGLCanvas::QueryGLXVersion()") ); |
604 | return m_glxVersion; | |
8b089c5e JS |
605 | } |
606 | ||
34a34b02 | 607 | |
8b089c5e JS |
608 | void wxGLCanvas::SwapBuffers() |
609 | { | |
2b5f62a0 VZ |
610 | if (m_glContext) |
611 | m_glContext->SwapBuffers(); | |
8b089c5e JS |
612 | } |
613 | ||
614 | void wxGLCanvas::OnSize(wxSizeEvent& WXUNUSED(event)) | |
615 | { | |
8b089c5e JS |
616 | } |
617 | ||
618 | void wxGLCanvas::SetCurrent() | |
619 | { | |
2b5f62a0 VZ |
620 | if (m_glContext) |
621 | m_glContext->SetCurrent(); | |
8b089c5e JS |
622 | } |
623 | ||
2b5f62a0 | 624 | void wxGLCanvas::SetColour( const wxChar *colour ) |
8b089c5e | 625 | { |
2b5f62a0 VZ |
626 | if (m_glContext) |
627 | m_glContext->SetColour( colour ); | |
8b089c5e JS |
628 | } |
629 | ||
630 | void wxGLCanvas::OnInternalIdle() | |
631 | { | |
632 | if (m_glContext && m_exposed) | |
633 | { | |
634 | wxPaintEvent event( GetId() ); | |
635 | event.SetEventObject( this ); | |
636 | GetEventHandler()->ProcessEvent( event ); | |
637 | ||
638 | m_exposed = FALSE; | |
639 | GetUpdateRegion().Clear(); | |
640 | } | |
2b5f62a0 | 641 | |
8b089c5e JS |
642 | wxWindow::OnInternalIdle(); |
643 | } | |
644 | ||
a6f5aa49 VZ |
645 | |
646 | ||
647 | //--------------------------------------------------------------------------- | |
648 | // wxGLApp | |
649 | //--------------------------------------------------------------------------- | |
650 | ||
651 | IMPLEMENT_CLASS(wxGLApp, wxApp) | |
2b5f62a0 | 652 | |
a6f5aa49 VZ |
653 | wxGLApp::~wxGLApp() |
654 | { | |
b4d06fb7 MR |
655 | if (m_glFBCInfo) |
656 | XFree(m_glFBCInfo); | |
2b5f62a0 VZ |
657 | if (m_glVisualInfo) |
658 | XFree(m_glVisualInfo); | |
a6f5aa49 VZ |
659 | } |
660 | ||
661 | bool wxGLApp::InitGLVisual(int *attribList) | |
662 | { | |
b4d06fb7 | 663 | wxGLCanvas::QueryGLXVersion(); |
34a34b02 | 664 | |
b4d06fb7 | 665 | if (wxGLCanvas::GetGLXVersion() >= 13) |
34a34b02 | 666 | { |
b4d06fb7 MR |
667 | // GLX >= 1.3 |
668 | if (m_glFBCInfo) | |
669 | XFree(m_glFBCInfo); | |
670 | m_glFBCInfo = wxGLCanvas::ChooseGLFBC(attribList); | |
671 | ||
672 | if (m_glFBCInfo) | |
673 | { | |
674 | if (m_glVisualInfo) | |
675 | XFree(m_glVisualInfo); | |
676 | m_glVisualInfo = glXGetVisualFromFBConfig(GDK_DISPLAY(), ((GLXFBConfig *)m_glFBCInfo)[0]); | |
677 | } | |
678 | return (m_glFBCInfo != NULL) && (m_glVisualInfo != NULL); | |
34a34b02 | 679 | } |
b4d06fb7 | 680 | else |
34a34b02 | 681 | { |
b4d06fb7 MR |
682 | // GLX <= 1.2 |
683 | if (m_glVisualInfo) | |
684 | XFree(m_glVisualInfo); | |
685 | m_glVisualInfo = wxGLCanvas::ChooseGLVisual(attribList); | |
686 | return m_glVisualInfo != NULL; | |
34a34b02 | 687 | } |
a6f5aa49 VZ |
688 | } |
689 | ||
8b089c5e JS |
690 | #endif |
691 | // wxUSE_GLCANVAS |