wgl: Move part of wglGetProcAddress to gdi32.
[wine] / dlls / winex11.drv / opengl.c
1 /*
2  * X11DRV OpenGL functions
3  *
4  * Copyright 2000 Lionel Ulmer
5  * Copyright 2005 Alex Woods
6  * Copyright 2005 Raphael Junqueira
7  * Copyright 2006 Roderick Colenbrander
8  * Copyright 2006 Tomas Carnecky
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * This library 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 GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with this library; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23  */
24
25 #include "config.h"
26 #include "wine/port.h"
27
28 #include <assert.h>
29 #include <stdlib.h>
30 #include <string.h>
31
32 #include "x11drv.h"
33 #include "winternl.h"
34 #include "wine/library.h"
35 #include "wine/debug.h"
36
37 WINE_DEFAULT_DEBUG_CHANNEL(wgl);
38 WINE_DECLARE_DEBUG_CHANNEL(opengl);
39
40 #if defined(HAVE_GL_GL_H) && defined(HAVE_GL_GLX_H)
41
42 #undef APIENTRY
43 #undef CALLBACK
44 #undef WINAPI
45
46 #ifdef HAVE_GL_GL_H
47 # include <GL/gl.h>
48 #endif
49 #ifdef HAVE_GL_GLX_H
50 # include <GL/glx.h>
51 #endif
52 #ifdef HAVE_GL_GLEXT_H
53 # include <GL/glext.h>
54 #endif
55
56 #include "wine/wgl.h"
57
58 #undef APIENTRY
59 #undef CALLBACK
60 #undef WINAPI
61
62 /* Redefines the constants */
63 #define CALLBACK    __stdcall
64 #define WINAPI      __stdcall
65 #define APIENTRY    WINAPI
66
67
68 WINE_DECLARE_DEBUG_CHANNEL(fps);
69
70 typedef struct wine_glcontext {
71     HDC hdc;
72     Display *display;
73     XVisualInfo *vis;
74     GLXFBConfig fb_conf;
75     GLXContext ctx;
76     BOOL do_escape;
77     struct wine_glcontext *next;
78     struct wine_glcontext *prev;
79 } Wine_GLContext;
80
81 typedef struct wine_glpbuffer {
82     Drawable   drawable;
83     Display*   display;
84     int        pixelFormat;
85     int        width;
86     int        height;
87     int*       attribList;
88     HDC        hdc;
89
90     int        use_render_texture;
91     GLuint     texture_target;
92     GLuint     texture_bind_target;
93     GLuint     texture;
94     int        texture_level;
95     HDC        prev_hdc;
96     HGLRC      prev_ctx;
97     HDC        render_hdc;
98     HGLRC      render_ctx;
99 } Wine_GLPBuffer;
100
101 typedef struct wine_glextension {
102     const char *extName;
103     struct {
104         const char *funcName;
105         void *funcAddress;
106     } extEntryPoints[8];
107 } WineGLExtension;
108
109 struct WineGLInfo {
110     const char *glVersion;
111     const char *glExtensions;
112
113     int glxVersion[2];
114
115     const char *glxServerVersion;
116     const char *glxServerExtensions;
117
118     const char *glxClientVersion;
119     const char *glxClientExtensions;
120
121     const char *glxExtensions;
122
123     BOOL glxDirect;
124     char wglExtensions[4096];
125 };
126
127 static Wine_GLContext *context_list;
128 static struct WineGLInfo WineGLInfo = { 0 };
129 static int use_render_texture_emulation = 0;
130 static int use_render_texture_ati = 0;
131 static int swap_interval = 1;
132
133 #define MAX_EXTENSIONS 16
134 static const WineGLExtension *WineGLExtensionList[MAX_EXTENSIONS];
135 static int WineGLExtensionListSize;
136
137 static void X11DRV_WineGL_LoadExtensions(void);
138
139 static void dump_PIXELFORMATDESCRIPTOR(const PIXELFORMATDESCRIPTOR *ppfd) {
140   TRACE("  - size / version : %d / %d\n", ppfd->nSize, ppfd->nVersion);
141   TRACE("  - dwFlags : ");
142 #define TEST_AND_DUMP(t,tv) if ((t) & (tv)) TRACE(#tv " ")
143   TEST_AND_DUMP(ppfd->dwFlags, PFD_DEPTH_DONTCARE);
144   TEST_AND_DUMP(ppfd->dwFlags, PFD_DOUBLEBUFFER);
145   TEST_AND_DUMP(ppfd->dwFlags, PFD_DOUBLEBUFFER_DONTCARE);
146   TEST_AND_DUMP(ppfd->dwFlags, PFD_DRAW_TO_WINDOW);
147   TEST_AND_DUMP(ppfd->dwFlags, PFD_DRAW_TO_BITMAP);
148   TEST_AND_DUMP(ppfd->dwFlags, PFD_GENERIC_ACCELERATED);
149   TEST_AND_DUMP(ppfd->dwFlags, PFD_GENERIC_FORMAT);
150   TEST_AND_DUMP(ppfd->dwFlags, PFD_NEED_PALETTE);
151   TEST_AND_DUMP(ppfd->dwFlags, PFD_NEED_SYSTEM_PALETTE);
152   TEST_AND_DUMP(ppfd->dwFlags, PFD_STEREO);
153   TEST_AND_DUMP(ppfd->dwFlags, PFD_STEREO_DONTCARE);
154   TEST_AND_DUMP(ppfd->dwFlags, PFD_SUPPORT_GDI);
155   TEST_AND_DUMP(ppfd->dwFlags, PFD_SUPPORT_OPENGL);
156   TEST_AND_DUMP(ppfd->dwFlags, PFD_SWAP_COPY);
157   TEST_AND_DUMP(ppfd->dwFlags, PFD_SWAP_EXCHANGE);
158   TEST_AND_DUMP(ppfd->dwFlags, PFD_SWAP_LAYER_BUFFERS);
159 #undef TEST_AND_DUMP
160   TRACE("\n");
161
162   TRACE("  - iPixelType : ");
163   switch (ppfd->iPixelType) {
164   case PFD_TYPE_RGBA: TRACE("PFD_TYPE_RGBA"); break;
165   case PFD_TYPE_COLORINDEX: TRACE("PFD_TYPE_COLORINDEX"); break;
166   }
167   TRACE("\n");
168
169   TRACE("  - Color   : %d\n", ppfd->cColorBits);
170   TRACE("  - Red     : %d\n", ppfd->cRedBits);
171   TRACE("  - Green   : %d\n", ppfd->cGreenBits);
172   TRACE("  - Blue    : %d\n", ppfd->cBlueBits);
173   TRACE("  - Alpha   : %d\n", ppfd->cAlphaBits);
174   TRACE("  - Accum   : %d\n", ppfd->cAccumBits);
175   TRACE("  - Depth   : %d\n", ppfd->cDepthBits);
176   TRACE("  - Stencil : %d\n", ppfd->cStencilBits);
177   TRACE("  - Aux     : %d\n", ppfd->cAuxBuffers);
178
179   TRACE("  - iLayerType : ");
180   switch (ppfd->iLayerType) {
181   case PFD_MAIN_PLANE: TRACE("PFD_MAIN_PLANE"); break;
182   case PFD_OVERLAY_PLANE: TRACE("PFD_OVERLAY_PLANE"); break;
183   case (BYTE)PFD_UNDERLAY_PLANE: TRACE("PFD_UNDERLAY_PLANE"); break;
184   }
185   TRACE("\n");
186 }
187
188 /* No need to load any other libraries as according to the ABI, libGL should be self-sufficient and
189    include all dependencies
190 */
191 #ifndef SONAME_LIBGL
192 #define SONAME_LIBGL "libGL.so"
193 #endif
194
195 #define PUSH1(attribs,att)        do { attribs[nAttribs++] = (att); } while (0)
196 #define PUSH2(attribs,att,value)  do { attribs[nAttribs++] = (att); attribs[nAttribs++] = (value); } while(0)
197
198 #define MAKE_FUNCPTR(f) static typeof(f) * p##f;
199 /* GLX 1.0 */
200 MAKE_FUNCPTR(glXChooseVisual)
201 MAKE_FUNCPTR(glXCreateContext)
202 MAKE_FUNCPTR(glXCreateGLXPixmap)
203 MAKE_FUNCPTR(glXGetCurrentContext)
204 MAKE_FUNCPTR(glXDestroyContext)
205 MAKE_FUNCPTR(glXDestroyGLXPixmap)
206 MAKE_FUNCPTR(glXGetConfig)
207 MAKE_FUNCPTR(glXIsDirect)
208 MAKE_FUNCPTR(glXMakeCurrent)
209 MAKE_FUNCPTR(glXSwapBuffers)
210 MAKE_FUNCPTR(glXQueryExtension)
211 MAKE_FUNCPTR(glXQueryVersion)
212 MAKE_FUNCPTR(glXUseXFont)
213
214 /* GLX 1.1 */
215 MAKE_FUNCPTR(glXGetClientString)
216 MAKE_FUNCPTR(glXQueryExtensionsString)
217 MAKE_FUNCPTR(glXQueryServerString)
218
219 /* GLX 1.3 */
220 MAKE_FUNCPTR(glXGetFBConfigs)
221 MAKE_FUNCPTR(glXChooseFBConfig)
222 MAKE_FUNCPTR(glXCreatePbuffer)
223 MAKE_FUNCPTR(glXDestroyPbuffer)
224 MAKE_FUNCPTR(glXGetFBConfigAttrib)
225 MAKE_FUNCPTR(glXGetVisualFromFBConfig)
226 MAKE_FUNCPTR(glXMakeContextCurrent)
227 MAKE_FUNCPTR(glXQueryDrawable)
228 MAKE_FUNCPTR(glXGetCurrentReadDrawable)
229
230 /* GLX Extensions */
231 static void* (*pglXGetProcAddressARB)(const GLubyte *);
232 static BOOL  (*pglXBindTexImageARB)(Display *dpy, GLXPbuffer pbuffer, int buffer);
233 static BOOL  (*pglXReleaseTexImageARB)(Display *dpy, GLXPbuffer pbuffer, int buffer);
234 static BOOL  (*pglXDrawableAttribARB)(Display *dpy, GLXDrawable draw, const int *attribList);
235 static int   (*pglXSwapIntervalSGI)(int);
236
237 /* Standard OpenGL */
238 MAKE_FUNCPTR(glBindTexture)
239 MAKE_FUNCPTR(glBitmap)
240 MAKE_FUNCPTR(glCopyTexSubImage1D)
241 MAKE_FUNCPTR(glCopyTexSubImage2D)
242 MAKE_FUNCPTR(glDrawBuffer)
243 MAKE_FUNCPTR(glEndList)
244 MAKE_FUNCPTR(glGetError)
245 MAKE_FUNCPTR(glGetIntegerv)
246 MAKE_FUNCPTR(glGetString)
247 MAKE_FUNCPTR(glNewList)
248 MAKE_FUNCPTR(glPixelStorei)
249 #undef MAKE_FUNCPTR
250
251 BOOL X11DRV_WineGL_InitOpenglInfo()
252 {
253     static BOOL infoInitialized = FALSE;
254
255     int screen = DefaultScreen(gdi_display);
256     Window win = RootWindow(gdi_display, screen);
257     Visual *visual;
258     XVisualInfo template;
259     XVisualInfo *vis;
260     int num;
261     GLXContext ctx = NULL;
262
263     if (infoInitialized)
264         return TRUE;
265     infoInitialized = TRUE;
266
267     wine_tsx11_lock();
268
269     visual = DefaultVisual(gdi_display, screen);
270     template.visualid = XVisualIDFromVisual(visual);
271     vis = XGetVisualInfo(gdi_display, VisualIDMask, &template, &num);
272     if (vis) {
273         /* Create a GLX Context. Without one we can't query GL information */
274         ctx = pglXCreateContext(gdi_display, vis, None, GL_TRUE);
275     }
276
277     if (ctx) {
278         pglXMakeCurrent(gdi_display, win, ctx);
279     } else {
280         ERR(" couldn't initialize OpenGL, expect problems\n");
281         wine_tsx11_unlock();
282         return FALSE;
283     }
284
285     WineGLInfo.glVersion = (const char *) pglGetString(GL_VERSION);
286     WineGLInfo.glExtensions = (const char *) pglGetString(GL_EXTENSIONS);
287
288     /* Get the common GLX version supported by GLX client and server ( major/minor) */
289     pglXQueryVersion(gdi_display, &WineGLInfo.glxVersion[0], &WineGLInfo.glxVersion[1]);
290
291     WineGLInfo.glxServerVersion = pglXQueryServerString(gdi_display, screen, GLX_VERSION);
292     WineGLInfo.glxServerExtensions = pglXQueryServerString(gdi_display, screen, GLX_EXTENSIONS);
293
294     WineGLInfo.glxClientVersion = pglXGetClientString(gdi_display, GLX_VERSION);
295     WineGLInfo.glxClientExtensions = pglXGetClientString(gdi_display, GLX_EXTENSIONS);
296
297     WineGLInfo.glxExtensions = pglXQueryExtensionsString(gdi_display, screen);
298     WineGLInfo.glxDirect = pglXIsDirect(gdi_display, ctx);
299
300     TRACE("GL version             : %s.\n", WineGLInfo.glVersion);
301     TRACE("GLX version            : %d.%d.\n", WineGLInfo.glxVersion[0], WineGLInfo.glxVersion[1]);
302     TRACE("Server GLX version     : %s.\n", WineGLInfo.glxServerVersion);
303     TRACE("Client GLX version     : %s.\n", WineGLInfo.glxClientVersion);
304     TRACE("Direct rendering enabled: %s\n", WineGLInfo.glxDirect ? "True" : "False");
305
306     if(vis) XFree(vis);
307     if(ctx) {
308         pglXMakeCurrent(gdi_display, None, NULL);    
309         pglXDestroyContext(gdi_display, ctx);
310     }
311     wine_tsx11_unlock();
312     return TRUE;
313 }
314
315 static BOOL has_opengl(void)
316 {
317     static int init_done;
318     static void *opengl_handle;
319     const char *glx_extensions;
320
321     int error_base, event_base;
322
323     if (init_done) return (opengl_handle != NULL);
324     init_done = 1;
325
326     opengl_handle = wine_dlopen(SONAME_LIBGL, RTLD_NOW|RTLD_GLOBAL, NULL, 0);
327     if (opengl_handle == NULL) return FALSE;
328
329     pglXGetProcAddressARB = wine_dlsym(opengl_handle, "glXGetProcAddressARB", NULL, 0);
330     if (pglXGetProcAddressARB == NULL) {
331         ERR("could not find glXGetProcAddressARB in libGL.\n");
332         return FALSE;
333     }
334
335 #define LOAD_FUNCPTR(f) if((p##f = (void*)pglXGetProcAddressARB((unsigned char*)#f)) == NULL) goto sym_not_found;
336 /* GLX 1.0 */
337 LOAD_FUNCPTR(glXChooseVisual)
338 LOAD_FUNCPTR(glXCreateContext)
339 LOAD_FUNCPTR(glXCreateGLXPixmap)
340 LOAD_FUNCPTR(glXGetCurrentContext)
341 LOAD_FUNCPTR(glXDestroyContext)
342 LOAD_FUNCPTR(glXDestroyGLXPixmap)
343 LOAD_FUNCPTR(glXGetConfig)
344 LOAD_FUNCPTR(glXIsDirect)
345 LOAD_FUNCPTR(glXMakeCurrent)
346 LOAD_FUNCPTR(glXSwapBuffers)
347 LOAD_FUNCPTR(glXQueryExtension)
348 LOAD_FUNCPTR(glXQueryVersion)
349 LOAD_FUNCPTR(glXUseXFont)
350
351 /* GLX 1.1 */
352 LOAD_FUNCPTR(glXGetClientString)
353 LOAD_FUNCPTR(glXQueryExtensionsString)
354 LOAD_FUNCPTR(glXQueryServerString)
355
356 /* GLX 1.3 */
357 LOAD_FUNCPTR(glXCreatePbuffer)
358 LOAD_FUNCPTR(glXDestroyPbuffer)
359 LOAD_FUNCPTR(glXMakeContextCurrent)
360 LOAD_FUNCPTR(glXGetCurrentReadDrawable)
361 LOAD_FUNCPTR(glXGetFBConfigs)
362
363 /* Standard OpenGL calls */
364 LOAD_FUNCPTR(glBindTexture)
365 LOAD_FUNCPTR(glBitmap)
366 LOAD_FUNCPTR(glEndList)
367 LOAD_FUNCPTR(glCopyTexSubImage1D)
368 LOAD_FUNCPTR(glCopyTexSubImage2D)
369 LOAD_FUNCPTR(glDrawBuffer)
370 LOAD_FUNCPTR(glGetError)
371 LOAD_FUNCPTR(glGetIntegerv)
372 LOAD_FUNCPTR(glGetString)
373 LOAD_FUNCPTR(glNewList)
374 LOAD_FUNCPTR(glPixelStorei)
375 #undef LOAD_FUNCPTR
376
377     if(!X11DRV_WineGL_InitOpenglInfo()) {
378         ERR("Intialization of OpenGL info failed, disabling OpenGL!\n");
379         wine_dlclose(opengl_handle, NULL, 0);
380         opengl_handle = NULL;
381         return FALSE;
382     }
383
384     wine_tsx11_lock();
385     if (pglXQueryExtension(gdi_display, &error_base, &event_base) == True) {
386         TRACE("GLX is up and running error_base = %d\n", error_base);
387     } else {
388         wine_dlclose(opengl_handle, NULL, 0);
389         opengl_handle = NULL;
390     }
391
392     /* In case of GLX you have direct and indirect rendering. Most of the time direct rendering is used
393      * as in general only that is hardware accelerated. In some cases like in case of remote X indirect
394      * rendering is used.
395      *
396      * The main problem for our OpenGL code is that we need certain GLX calls but their presence
397      * depends on the reported GLX client / server version and on the client / server extension list.
398      * Those don't have to be the same.
399      *
400      * In general the server GLX information should be used in case of indirect rendering. When direct
401      * rendering is used, the OpenGL client library is responsible for which GLX calls are available.
402      * Nvidia's OpenGL drivers are the best in terms of GLX features. At the moment of writing their
403      * 8762 drivers support 1.3 for the server and 1.4 for the client and they support lots of extensions.
404      * Unfortunately it is much more complicated for Mesa/DRI-based drivers and ATI's drivers.
405      * Both sets of drivers report a server version of 1.2 and the client version can be 1.3 or 1.4.
406      * Further, in case of at least ATI's drivers, one crucial extension needed for our pixel format code
407      * is only available in the list of server extensions and not in the client list.
408      *
409      * The versioning checks below try to take into account the comments from above.
410      */
411
412     /* Depending on the use of direct or indirect rendering we need either the list of extensions
413      * exported by the client or by the server.
414      */
415     if(WineGLInfo.glxDirect)
416         glx_extensions = WineGLInfo.glxClientExtensions;
417     else
418         glx_extensions = WineGLInfo.glxServerExtensions;
419
420     /* Based on the default opengl context we decide whether direct or indirect rendering is used.
421      * In case of indirect rendering we check if the GLX version of the server is 1.2 and else
422      * the client version is checked.
423      */
424     if ((!WineGLInfo.glxDirect && !strcmp("1.2", WineGLInfo.glxServerVersion)) ||
425         (WineGLInfo.glxDirect && !strcmp("1.2", WineGLInfo.glxClientVersion)))
426     {
427         if (NULL != strstr(glx_extensions, "GLX_SGIX_fbconfig")) {
428             pglXChooseFBConfig = (void*)pglXGetProcAddressARB((const GLubyte *) "glXChooseFBConfigSGIX");
429             pglXGetFBConfigAttrib = (void*)pglXGetProcAddressARB((const GLubyte *) "glXGetFBConfigAttribSGIX");
430             pglXGetVisualFromFBConfig = (void*)pglXGetProcAddressARB((const GLubyte *) "glXGetVisualFromFBConfigSGIX");
431         } else {
432             ERR(" glx_version is %s and GLX_SGIX_fbconfig extension is unsupported. Expect problems.\n", WineGLInfo.glxClientVersion);
433         }
434     } else {
435         pglXChooseFBConfig = (void*)pglXGetProcAddressARB((const GLubyte *) "glXChooseFBConfig");
436         pglXGetFBConfigAttrib = (void*)pglXGetProcAddressARB((const GLubyte *) "glXGetFBConfigAttrib");
437         pglXGetVisualFromFBConfig = (void*)pglXGetProcAddressARB((const GLubyte *) "glXGetVisualFromFBConfig");
438     }
439
440     /* The mesa libGL client library seems to forward glXQueryDrawable to the Xserver, so only
441      * enable this function when the Xserver understand GLX 1.3 or newer
442      */
443     if (!strcmp("1.2", WineGLInfo.glxServerVersion))
444         pglXQueryDrawable = NULL;
445     else
446         pglXQueryDrawable = wine_dlsym(RTLD_DEFAULT, "glXQueryDrawable", NULL, 0);
447
448     if (NULL != strstr(glx_extensions, "GLX_ATI_render_texture")) {
449         pglXBindTexImageARB = (void*)pglXGetProcAddressARB((const GLubyte *) "glXBindTexImageARB");
450         pglXReleaseTexImageARB = (void*)pglXGetProcAddressARB((const GLubyte *) "glXReleaseTexImageARB");
451         pglXDrawableAttribARB = (void*)pglXGetProcAddressARB((const GLubyte *) "glXDrawableAttribARB");
452     }
453
454     X11DRV_WineGL_LoadExtensions();
455
456     wine_tsx11_unlock();
457     return (opengl_handle != NULL);
458
459 sym_not_found:
460     wine_dlclose(opengl_handle, NULL, 0);
461     opengl_handle = NULL;
462     return FALSE;
463 }
464
465 static inline Wine_GLContext *alloc_context(void)
466 {
467     Wine_GLContext *ret;
468
469     if ((ret = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(Wine_GLContext))))
470     {
471         ret->next = context_list;
472         if (context_list) context_list->prev = ret;
473         context_list = ret;
474     }
475     return ret;
476 }
477
478 static inline void free_context(Wine_GLContext *context)
479 {
480     if (context->next != NULL) context->next->prev = context->prev;
481     if (context->prev != NULL) context->prev->next = context->next;
482     else context_list = context->next;
483
484     HeapFree(GetProcessHeap(), 0, context);
485 }
486
487 static inline Wine_GLContext *get_context_from_GLXContext(GLXContext ctx)
488 {
489     Wine_GLContext *ret;
490     if (!ctx) return NULL;
491     for (ret = context_list; ret; ret = ret->next) if (ctx == ret->ctx) break;
492     return ret;
493 }
494
495 /* retrieve the GLX drawable to use on a given DC */
496 inline static Drawable get_drawable( HDC hdc )
497 {
498     GLXDrawable drawable;
499     enum x11drv_escape_codes escape = X11DRV_GET_GLX_DRAWABLE;
500
501     if (!ExtEscape( hdc, X11DRV_ESCAPE, sizeof(escape), (LPCSTR)&escape,
502                     sizeof(drawable), (LPSTR)&drawable )) drawable = 0;
503     return drawable;
504 }
505
506 inline static void set_drawable( HDC hdc, Drawable drawable )
507 {
508     struct x11drv_escape_set_drawable escape;
509
510     escape.code = X11DRV_SET_DRAWABLE;
511     escape.drawable = drawable;
512     escape.mode = IncludeInferiors;
513     escape.org.x = escape.org.y = 0;
514     escape.drawable_org.x = escape.drawable_org.y = 0;
515
516     ExtEscape( hdc, X11DRV_ESCAPE, sizeof(escape), (LPCSTR)&escape, 0, NULL );
517 }
518
519 /** for use of wglGetCurrentReadDCARB */
520 inline static HDC get_hdc_from_Drawable(GLXDrawable d)
521 {
522     Wine_GLContext *ret;
523     for (ret = context_list; ret; ret = ret->next) {
524         if (d == get_drawable( ret->hdc )) {
525             return ret->hdc;
526         }
527     }
528     return NULL;
529 }
530
531 inline static BOOL is_valid_context( Wine_GLContext *ctx )
532 {
533     Wine_GLContext *ptr;
534     for (ptr = context_list; ptr; ptr = ptr->next) if (ptr == ctx) break;
535     return (ptr != NULL);
536 }
537
538 static int describeContext(Wine_GLContext* ctx) {
539     int tmp;
540     int ctx_vis_id;
541     TRACE(" Context %p have (vis:%p):\n", ctx, ctx->vis);
542     pglXGetFBConfigAttrib(ctx->display, ctx->fb_conf, GLX_FBCONFIG_ID, &tmp);
543     TRACE(" - FBCONFIG_ID 0x%x\n", tmp);
544     pglXGetFBConfigAttrib(ctx->display, ctx->fb_conf, GLX_VISUAL_ID, &tmp);
545     TRACE(" - VISUAL_ID 0x%x\n", tmp);
546     ctx_vis_id = tmp;
547     return ctx_vis_id;
548 }
549
550 static int describeDrawable(Wine_GLContext* ctx, Drawable drawable) {
551     int tmp;
552     int nElements;
553     int attribList[3] = { GLX_FBCONFIG_ID, 0, None };
554     GLXFBConfig *fbCfgs;
555
556     if (pglXQueryDrawable == NULL)  {
557         /** glXQueryDrawable not available so returns not supported */
558         return -1;
559     }
560
561     TRACE(" Drawable %p have :\n", (void*) drawable);
562     pglXQueryDrawable(ctx->display, drawable, GLX_WIDTH, (unsigned int*) &tmp);
563     TRACE(" - WIDTH as %d\n", tmp);
564     pglXQueryDrawable(ctx->display, drawable, GLX_HEIGHT, (unsigned int*) &tmp);
565     TRACE(" - HEIGHT as %d\n", tmp);
566     pglXQueryDrawable(ctx->display, drawable, GLX_FBCONFIG_ID, (unsigned int*) &tmp);
567     TRACE(" - FBCONFIG_ID as 0x%x\n", tmp);
568
569     attribList[1] = tmp;
570     fbCfgs = pglXChooseFBConfig(ctx->display, DefaultScreen(ctx->display), attribList, &nElements);
571     if (fbCfgs == NULL) {
572         return -1;
573     }
574
575     pglXGetFBConfigAttrib(ctx->display, fbCfgs[0], GLX_VISUAL_ID, &tmp);
576     TRACE(" - VISUAL_ID as 0x%x\n", tmp);
577
578     XFree(fbCfgs);
579
580     return tmp;
581 }
582
583 static int ConvertAttribWGLtoGLX(const int* iWGLAttr, int* oGLXAttr, Wine_GLPBuffer* pbuf) {
584   int nAttribs = 0;
585   unsigned cur = 0; 
586   int pop;
587   int isColor = 0;
588   int wantColorBits = 0;
589   int sz_alpha = 0;
590
591   while (0 != iWGLAttr[cur]) {
592     TRACE("pAttr[%d] = %x\n", cur, iWGLAttr[cur]);
593
594     switch (iWGLAttr[cur]) {
595     case WGL_COLOR_BITS_ARB:
596       pop = iWGLAttr[++cur];
597       wantColorBits = pop; /** see end */
598       break;
599     case WGL_BLUE_BITS_ARB:
600       pop = iWGLAttr[++cur];
601       PUSH2(oGLXAttr, GLX_BLUE_SIZE, pop);
602       TRACE("pAttr[%d] = GLX_BLUE_SIZE: %d\n", cur, pop);
603       break;
604     case WGL_RED_BITS_ARB:
605       pop = iWGLAttr[++cur];
606       PUSH2(oGLXAttr, GLX_RED_SIZE, pop);
607       TRACE("pAttr[%d] = GLX_RED_SIZE: %d\n", cur, pop);
608       break;
609     case WGL_GREEN_BITS_ARB:
610       pop = iWGLAttr[++cur];
611       PUSH2(oGLXAttr, GLX_GREEN_SIZE, pop);
612       TRACE("pAttr[%d] = GLX_GREEN_SIZE: %d\n", cur, pop);
613       break;
614     case WGL_ALPHA_BITS_ARB:
615       pop = iWGLAttr[++cur];
616       sz_alpha = pop;
617       PUSH2(oGLXAttr, GLX_ALPHA_SIZE, pop);
618       TRACE("pAttr[%d] = GLX_ALPHA_SIZE: %d\n", cur, pop);
619       break;
620     case WGL_DEPTH_BITS_ARB:
621       pop = iWGLAttr[++cur];
622       PUSH2(oGLXAttr, GLX_DEPTH_SIZE, pop);
623       TRACE("pAttr[%d] = GLX_DEPTH_SIZE: %d\n", cur, pop);
624       break;
625     case WGL_STENCIL_BITS_ARB:
626       pop = iWGLAttr[++cur];
627       PUSH2(oGLXAttr, GLX_STENCIL_SIZE, pop);
628       TRACE("pAttr[%d] = GLX_STENCIL_SIZE: %d\n", cur, pop);
629       break;
630     case WGL_DOUBLE_BUFFER_ARB:
631       pop = iWGLAttr[++cur];
632       PUSH2(oGLXAttr, GLX_DOUBLEBUFFER, pop);
633       TRACE("pAttr[%d] = GLX_DOUBLEBUFFER: %d\n", cur, pop);
634       break;
635
636     case WGL_PIXEL_TYPE_ARB:
637       pop = iWGLAttr[++cur];
638       switch (pop) {
639       case WGL_TYPE_COLORINDEX_ARB: pop = GLX_COLOR_INDEX_BIT; isColor = 1; break ;
640       case WGL_TYPE_RGBA_ARB: pop = GLX_RGBA_BIT; break ;
641       case WGL_TYPE_RGBA_FLOAT_ATI: pop = GLX_RGBA_FLOAT_ATI_BIT; break ;
642       default:
643         ERR("unexpected PixelType(%x)\n", pop); 
644         pop = 0;
645       }
646       PUSH2(oGLXAttr, GLX_RENDER_TYPE, pop);
647       TRACE("pAttr[%d] = GLX_RENDER_TYPE: %d\n", cur, pop);
648       break;
649
650     case WGL_SUPPORT_GDI_ARB:
651       pop = iWGLAttr[++cur];
652       PUSH2(oGLXAttr, GLX_X_RENDERABLE, pop);
653       TRACE("pAttr[%d] = GLX_RENDERABLE: %d\n", cur, pop);
654       break;
655
656     case WGL_DRAW_TO_BITMAP_ARB:
657       pop = iWGLAttr[++cur];
658       PUSH2(oGLXAttr, GLX_X_RENDERABLE, pop);
659       TRACE("pAttr[%d] = GLX_RENDERABLE: %d\n", cur, pop);
660       if (pop) {
661         PUSH2(oGLXAttr, GLX_DRAWABLE_TYPE, GLX_PIXMAP_BIT);
662         TRACE("pAttr[%d] = GLX_DRAWABLE_TYPE: GLX_PIXMAP_BIT\n", cur);
663       }
664       break;
665
666     case WGL_DRAW_TO_WINDOW_ARB:
667       pop = iWGLAttr[++cur];
668       if (pop) {
669         PUSH2(oGLXAttr, GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT);
670         TRACE("pAttr[%d] = GLX_DRAWABLE_TYPE: GLX_WINDOW_BIT\n", cur);
671       }
672       break;
673
674     case WGL_DRAW_TO_PBUFFER_ARB:
675       pop = iWGLAttr[++cur];
676       PUSH2(oGLXAttr, GLX_X_RENDERABLE, pop);
677       TRACE("pAttr[%d] = GLX_RENDERABLE: %d\n", cur, pop);
678       if (pop) {
679         PUSH2(oGLXAttr, GLX_DRAWABLE_TYPE, GLX_PBUFFER_BIT);
680         TRACE("pAttr[%d] = GLX_DRAWABLE_TYPE: GLX_PBUFFER_BIT\n", cur);
681       }
682       break;
683
684     case WGL_ACCELERATION_ARB:
685     case WGL_SUPPORT_OPENGL_ARB:
686       pop = iWGLAttr[++cur];
687       /** nothing to do, if we are here, supposing support Accelerated OpenGL */
688       TRACE("pAttr[%d] = WGL_SUPPORT_OPENGL_ARB: %d\n", cur, pop);
689       break;
690
691     case WGL_PBUFFER_LARGEST_ARB:
692       pop = iWGLAttr[++cur];
693       PUSH2(oGLXAttr, GLX_LARGEST_PBUFFER, pop);
694       TRACE("pAttr[%d] = GLX_LARGEST_PBUFFER: %x\n", cur, pop);
695       break;
696
697     case WGL_SAMPLE_BUFFERS_ARB:
698       pop = iWGLAttr[++cur];
699       PUSH2(oGLXAttr, GLX_SAMPLE_BUFFERS_ARB, pop);
700       TRACE("pAttr[%d] = GLX_SAMPLE_BUFFERS_ARB: %x\n", cur, pop);
701       break;
702
703     case WGL_SAMPLES_ARB:
704       pop = iWGLAttr[++cur];
705       PUSH2(oGLXAttr, GLX_SAMPLES_ARB, pop);
706       TRACE("pAttr[%d] = GLX_SAMPLES_ARB: %x\n", cur, pop);
707       break;
708
709     case WGL_TEXTURE_FORMAT_ARB:
710     case WGL_TEXTURE_TARGET_ARB:
711     case WGL_MIPMAP_TEXTURE_ARB:
712       TRACE("WGL_render_texture Attributes: %x as %x\n", iWGLAttr[cur], iWGLAttr[cur + 1]);
713       pop = iWGLAttr[++cur];
714       if (NULL == pbuf) {
715         ERR("trying to use GLX_Pbuffer Attributes without Pbuffer (was %x)\n", iWGLAttr[cur]);
716       }
717       if (use_render_texture_ati) {
718         /** nothing to do here */
719       }
720       else if (!use_render_texture_emulation) {
721         if (WGL_NO_TEXTURE_ARB != pop) {
722           ERR("trying to use WGL_render_texture Attributes without support (was %x)\n", iWGLAttr[cur]);
723           return -1; /** error: don't support it */
724         } else {
725           PUSH2(oGLXAttr, GLX_X_RENDERABLE, pop);
726           PUSH2(oGLXAttr, GLX_DRAWABLE_TYPE, GLX_PBUFFER_BIT);
727         }
728       }
729       break ;
730
731     case WGL_BIND_TO_TEXTURE_RGB_ARB:
732     case WGL_BIND_TO_TEXTURE_RGBA_ARB:
733       pop = iWGLAttr[++cur];
734       /** cannot be converted, see direct handling on 
735        *   - wglGetPixelFormatAttribivARB
736        *  TODO: wglChoosePixelFormat
737        */
738       break ;
739
740     default:
741       FIXME("unsupported %x WGL Attribute\n", iWGLAttr[cur]);
742       break;
743     }
744     ++cur;
745   }
746
747   /**
748    * Trick as WGL_COLOR_BITS_ARB != GLX_BUFFER_SIZE
749    *    WGL_COLOR_BITS_ARB + WGL_ALPHA_BITS_ARB == GLX_BUFFER_SIZE
750    *
751    *  WGL_COLOR_BITS_ARB
752    *     The number of color bitplanes in each color buffer. For RGBA
753    *     pixel types, it is the size of the color buffer, excluding the
754    *     alpha bitplanes. For color-index pixels, it is the size of the
755    *     color index buffer.
756    *
757    *  GLX_BUFFER_SIZE   
758    *     This attribute defines the number of bits per color buffer. 
759    *     For GLX FBConfigs that correspond to a PseudoColor or StaticColor visual, 
760    *     this is equal to the depth value reported in the X11 visual. 
761    *     For GLX FBConfigs that correspond to TrueColor or DirectColor visual, 
762    *     this is the sum of GLX_RED_SIZE, GLX_GREEN_SIZE, GLX_BLUE_SIZE, and GLX_ALPHA_SIZE.
763    * 
764    */
765   if (0 < wantColorBits) {
766     if (!isColor) { 
767       wantColorBits += sz_alpha; 
768     }
769     if (32 < wantColorBits) {
770       ERR("buggy %d GLX_BUFFER_SIZE default to 32\n", wantColorBits);
771       wantColorBits = 32;
772     }
773     PUSH2(oGLXAttr, GLX_BUFFER_SIZE, wantColorBits);
774     TRACE("pAttr[%d] = WGL_COLOR_BITS_ARB: %d\n", cur, wantColorBits);
775   }
776
777   return nAttribs;
778 }
779
780 /* GLX can advertise dozens of different pixelformats including offscreen and onscreen ones.
781  * In our WGL implementation we only support a subset of these formats namely the format of
782  * Wine's main visual and offscreen formats (if they are available).
783  * This function converts a WGL format to its corresponding GLX one. It returns the index (zero-based)
784  * into the GLX FB config table and it returns the number of supported WGL formats in fmt_count.
785  */
786 static BOOL ConvertPixelFormatWGLtoGLX(Display *display, int iPixelFormat, int *fmt_index, int *fmt_count)
787 {
788   int res = FALSE;
789   int i = 0;
790   GLXFBConfig* cfgs = NULL;
791   int nCfgs = 0;
792   int tmp_fmt_id = 0;
793   int tmp_vis_id = 0;
794   int nFormats = 1; /* Start at 1 as we always have a main visual */
795   VisualID visualid = 0;
796
797   /* Request to look up the format of the main visual when iPixelFormat = 1 */
798   if(iPixelFormat == 1) visualid = XVisualIDFromVisual(visual);
799
800   /* As mentioned in various parts of the code only the format of the main visual can be used for onscreen rendering.
801    * Next to this format there are also so called offscreen rendering formats (used for pbuffers) which can be supported
802    * because they don't need a visual. Below we use glXGetFBConfigs instead of glXChooseFBConfig to enumerate the fb configurations
803    * bas this call lists both types of formats instead of only onscreen ones. */
804   cfgs = pglXGetFBConfigs(display, DefaultScreen(display), &nCfgs);
805   if (NULL == cfgs || 0 == nCfgs) {
806     ERR("glXChooseFBConfig returns NULL\n");
807     if(cfgs != NULL) XFree(cfgs);
808     return FALSE;
809   }
810
811   /* Find the requested offscreen format and count the number of offscreen formats */
812   for(i=0; i<nCfgs; i++) {
813     pglXGetFBConfigAttrib(display, cfgs[i], GLX_VISUAL_ID, &tmp_vis_id);
814     pglXGetFBConfigAttrib(display, cfgs[i], GLX_FBCONFIG_ID, &tmp_fmt_id);
815
816     /* We are looking up the GLX index of our main visual and have found it :) */
817     if(iPixelFormat == 1 && visualid == tmp_vis_id) {
818       *fmt_index = i;
819       TRACE("Found FBCONFIG_ID 0x%x at index %d for VISUAL_ID 0x%x\n", tmp_fmt_id, *fmt_index, tmp_vis_id);
820       res = TRUE;
821     }
822     /* We found an offscreen rendering format :) */
823     else if(tmp_vis_id == 0) {
824       nFormats++;
825       TRACE("Checking offscreen format FBCONFIG_ID 0x%x at index %d\n", tmp_fmt_id, i);
826
827       if(iPixelFormat == nFormats) {
828         *fmt_index = i;
829         TRACE("Found offscreen format FBCONFIG_ID 0x%x corresponding to iPixelFormat %d at GLX index %d\n", tmp_fmt_id, iPixelFormat, i);
830         res = TRUE;
831       }
832     }
833   }
834   *fmt_count = nFormats;
835   TRACE("Number of offscreen formats: %d; returning index: %d\n", *fmt_count, *fmt_index);
836
837   if(cfgs != NULL) XFree(cfgs);
838
839   if(res == FALSE && iPixelFormat == 1)
840     ERR("Can't find a matching FBCONFIG_ID for VISUAL_ID 0x%lx!\n", visualid);
841
842   return res;
843 }
844
845 /**
846  * X11DRV_ChoosePixelFormat
847  *
848  * Equivalent of glXChooseVisual
849  */
850 int X11DRV_ChoosePixelFormat(X11DRV_PDEVICE *physDev, 
851                              const PIXELFORMATDESCRIPTOR *ppfd) {
852   GLXFBConfig* cfgs = NULL;
853   int ret = 0;
854   int nCfgs = 0;
855   int value = 0;
856   int fmt_index = 0;
857
858   if (!has_opengl()) {
859     ERR("No libGL on this box - disabling OpenGL support !\n");
860     return 0;
861   }
862
863   if (TRACE_ON(opengl)) {
864     TRACE("(%p,%p)\n", physDev, ppfd);
865
866     dump_PIXELFORMATDESCRIPTOR((const PIXELFORMATDESCRIPTOR *) ppfd);
867   }
868
869   wine_tsx11_lock(); 
870   if(!visual) {
871     ERR("Can't get an opengl visual!\n");
872     goto choose_exit;
873   }
874
875   /* Get a list containing all supported FB configurations */
876   cfgs = pglXChooseFBConfig(gdi_display, DefaultScreen(gdi_display), NULL, &nCfgs);
877   if (NULL == cfgs || 0 == nCfgs) {
878     ERR("glXChooseFBConfig returns NULL (glError: %d)\n", pglGetError());
879     goto choose_exit;
880   }
881
882   /* In case an fbconfig was found, check if it matches to the requirements of the ppfd */
883   if(!ConvertPixelFormatWGLtoGLX(gdi_display, 1 /* main visual */, &fmt_index, &value)) {
884     ERR("Can't find a matching FBCONFIG_ID for VISUAL_ID 0x%lx!\n", visual->visualid);
885   } else {
886     int dwFlags = 0;
887     int iPixelType = 0;
888     int value = 0;
889
890     /* Pixel type */
891     pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_RENDER_TYPE, &value);
892     if (value & GLX_RGBA_BIT)
893       iPixelType = PFD_TYPE_RGBA;
894     else
895       iPixelType = PFD_TYPE_COLORINDEX;
896
897     if (ppfd->iPixelType != iPixelType) {
898       goto choose_exit;
899     }
900
901     /* Doublebuffer */
902     pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_DOUBLEBUFFER, &value); if (value) dwFlags |= PFD_DOUBLEBUFFER;
903     if (!(ppfd->dwFlags & PFD_DOUBLEBUFFER_DONTCARE)) {
904       if ((ppfd->dwFlags & PFD_DOUBLEBUFFER) != (dwFlags & PFD_DOUBLEBUFFER)) {
905         goto choose_exit;
906       }
907     }
908
909     /* Stereo */
910     pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_STEREO, &value); if (value) dwFlags |= PFD_STEREO;
911     if (!(ppfd->dwFlags & PFD_STEREO_DONTCARE)) {
912       if ((ppfd->dwFlags & PFD_STEREO) != (dwFlags & PFD_STEREO)) {
913         goto choose_exit;
914       }
915     }
916
917     /* Alpha bits */
918     pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_ALPHA_SIZE, &value);
919     if (ppfd->iPixelType==PFD_TYPE_RGBA && ppfd->cAlphaBits && !value) {
920       goto choose_exit;
921     }
922
923     /* Depth bits */
924     pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_DEPTH_SIZE, &value);
925     if (ppfd->cDepthBits && !value) {
926       goto choose_exit;
927     }
928
929     /* Stencil bits */
930     pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_STENCIL_SIZE, &value);
931     if (ppfd->cStencilBits && !value) {
932       goto choose_exit;
933     }
934
935     /* Aux buffers */
936     pglXGetFBConfigAttrib(gdi_display, cfgs[fmt_index], GLX_AUX_BUFFERS, &value);
937     if (ppfd->cAuxBuffers && !value) {
938       goto choose_exit;
939     }
940
941     /* When we pass all the checks we have found a matching format :) */
942     ret = 1;
943     TRACE("Successfully found a matching mode, returning index: %d\n", ret);
944   }
945
946 choose_exit:
947   if(!ret)
948     TRACE("No matching mode was found returning 0\n");
949
950   if (NULL != cfgs) XFree(cfgs);
951   wine_tsx11_unlock();
952   return ret;
953 }
954
955 /**
956  * X11DRV_DescribePixelFormat
957  *
958  * Get the pixel-format descriptor associated to the given id
959  */
960 int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
961                                int iPixelFormat,
962                                UINT nBytes,
963                                PIXELFORMATDESCRIPTOR *ppfd) {
964   /*XVisualInfo *vis;*/
965   int value;
966   int rb,gb,bb,ab;
967
968   GLXFBConfig* cfgs = NULL;
969   GLXFBConfig cur;
970   int nCfgs = 0;
971   int ret = 0;
972   int fmt_index = 0;
973
974   if (!has_opengl()) {
975     ERR("No libGL on this box - disabling OpenGL support !\n");
976     return 0;
977   }
978   
979   TRACE("(%p,%d,%d,%p)\n", physDev, iPixelFormat, nBytes, ppfd);
980
981   wine_tsx11_lock();
982   cfgs = pglXGetFBConfigs(gdi_display, DefaultScreen(gdi_display), &nCfgs);
983   wine_tsx11_unlock();
984
985   if (NULL == cfgs || 0 == nCfgs) {
986     ERR("unexpected iPixelFormat(%d), returns NULL\n", iPixelFormat);
987     return 0; /* unespected error */
988   }
989
990   /* This function always reports the total number of supported pixel formats.
991    * At the moment we only support the pixel format corresponding to the main
992    * visual which got created at x11drv initialization. More formats could be
993    * supported if there was a way to recreate x11 windows in x11drv. 
994    * Because we only support one format nCfgs needs to be set to 1.
995    */
996   nCfgs = 1;
997
998   if (ppfd == NULL) {
999     /* The application is only querying the number of visuals */
1000     wine_tsx11_lock();
1001     if (NULL != cfgs) XFree(cfgs);
1002     wine_tsx11_unlock();
1003     return nCfgs;
1004   }
1005
1006   if (nBytes < sizeof(PIXELFORMATDESCRIPTOR)) {
1007     ERR("Wrong structure size !\n");
1008     /* Should set error */
1009     return 0;
1010   }
1011
1012   if (nCfgs < iPixelFormat || 1 > iPixelFormat) {
1013     WARN("unexpected iPixelFormat(%d): not >=1 and <=nFormats(%d), returning NULL\n", iPixelFormat, nCfgs);
1014     return 0;
1015   }
1016
1017   /* Retrieve the index in the FBConfig table corresponding to the visual ID from the main visual */
1018   if(!ConvertPixelFormatWGLtoGLX(gdi_display, iPixelFormat, &fmt_index, &value)) {
1019       ERR("Can't find a valid pixel format index from the main visual, expect problems!\n");
1020       return 0;
1021   }
1022
1023   ret = nCfgs;
1024   cur = cfgs[fmt_index];
1025
1026   memset(ppfd, 0, sizeof(PIXELFORMATDESCRIPTOR));
1027   ppfd->nSize = sizeof(PIXELFORMATDESCRIPTOR);
1028   ppfd->nVersion = 1;
1029
1030   /* These flags are always the same... */
1031   ppfd->dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL;
1032   /* Now the flags extracted from the Visual */
1033
1034   wine_tsx11_lock();
1035
1036   pglXGetFBConfigAttrib(gdi_display, cur, GLX_CONFIG_CAVEAT, &value);
1037   if(value == GLX_SLOW_CONFIG)
1038       ppfd->dwFlags |= PFD_GENERIC_ACCELERATED;
1039
1040   pglXGetFBConfigAttrib(gdi_display, cur, GLX_DOUBLEBUFFER, &value); if (value) ppfd->dwFlags |= PFD_DOUBLEBUFFER;
1041   pglXGetFBConfigAttrib(gdi_display, cur, GLX_STEREO, &value); if (value) ppfd->dwFlags |= PFD_STEREO;
1042
1043   /* Pixel type */
1044   pglXGetFBConfigAttrib(gdi_display, cur, GLX_RENDER_TYPE, &value);
1045   if (value & GLX_RGBA_BIT)
1046     ppfd->iPixelType = PFD_TYPE_RGBA;
1047   else
1048     ppfd->iPixelType = PFD_TYPE_COLORINDEX;
1049
1050   /* Color bits */
1051   pglXGetFBConfigAttrib(gdi_display, cur, GLX_BUFFER_SIZE, &value);
1052   ppfd->cColorBits = value;
1053
1054   /* Red, green, blue and alpha bits / shifts */
1055   if (ppfd->iPixelType == PFD_TYPE_RGBA) {
1056     pglXGetFBConfigAttrib(gdi_display, cur, GLX_RED_SIZE, &rb);
1057     pglXGetFBConfigAttrib(gdi_display, cur, GLX_GREEN_SIZE, &gb);
1058     pglXGetFBConfigAttrib(gdi_display, cur, GLX_BLUE_SIZE, &bb);
1059     pglXGetFBConfigAttrib(gdi_display, cur, GLX_ALPHA_SIZE, &ab);
1060
1061     ppfd->cRedBits = rb;
1062     ppfd->cRedShift = gb + bb + ab;
1063     ppfd->cBlueBits = bb;
1064     ppfd->cBlueShift = ab;
1065     ppfd->cGreenBits = gb;
1066     ppfd->cGreenShift = bb + ab;
1067     ppfd->cAlphaBits = ab;
1068     ppfd->cAlphaShift = 0;
1069   } else {
1070     ppfd->cRedBits = 0;
1071     ppfd->cRedShift = 0;
1072     ppfd->cBlueBits = 0;
1073     ppfd->cBlueShift = 0;
1074     ppfd->cGreenBits = 0;
1075     ppfd->cGreenShift = 0;
1076     ppfd->cAlphaBits = 0;
1077     ppfd->cAlphaShift = 0;
1078   }
1079   /* Accums : to do ... */
1080
1081   /* Depth bits */
1082   pglXGetFBConfigAttrib(gdi_display, cur, GLX_DEPTH_SIZE, &value);
1083   ppfd->cDepthBits = value;
1084
1085   /* stencil bits */
1086   pglXGetFBConfigAttrib(gdi_display, cur, GLX_STENCIL_SIZE, &value);
1087   ppfd->cStencilBits = value;
1088
1089   wine_tsx11_unlock();
1090
1091   /* Aux : to do ... */
1092
1093   ppfd->iLayerType = PFD_MAIN_PLANE;
1094
1095   if (TRACE_ON(opengl)) {
1096     dump_PIXELFORMATDESCRIPTOR(ppfd);
1097   }
1098
1099   wine_tsx11_lock();
1100   if (NULL != cfgs) XFree(cfgs);
1101   wine_tsx11_unlock();
1102
1103   return ret;
1104 }
1105
1106 /**
1107  * X11DRV_GetPixelFormat
1108  *
1109  * Get the pixel-format id used by this DC
1110  */
1111 int X11DRV_GetPixelFormat(X11DRV_PDEVICE *physDev) {
1112   TRACE("(%p): returns %d\n", physDev, physDev->current_pf);
1113
1114   return physDev->current_pf;
1115 }
1116
1117 /**
1118  * X11DRV_SetPixelFormat
1119  *
1120  * Set the pixel-format id used by this DC
1121  */
1122 BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
1123                            int iPixelFormat,
1124                            const PIXELFORMATDESCRIPTOR *ppfd) {
1125   TRACE("(%p,%d,%p)\n", physDev, iPixelFormat, ppfd);
1126
1127   /* At the moment we only support the pixelformat corresponding to the main
1128    * x11drv visual which got created at x11drv initialization. More formats
1129    * can be supported if there was a way to recreate x11 windows in x11drv
1130    */
1131   if(iPixelFormat != 1) {
1132     TRACE("Invalid iPixelFormat: %d\n", iPixelFormat);
1133     return 0;
1134   }
1135
1136   physDev->current_pf = iPixelFormat;
1137
1138   if (TRACE_ON(opengl)) {
1139     int nCfgs_fmt = 0;
1140     GLXFBConfig* cfgs_fmt = NULL;
1141     GLXFBConfig cur_cfg;
1142     int value;
1143     int gl_test = 0;
1144     int fmt_index = 0;
1145
1146     if(!ConvertPixelFormatWGLtoGLX(gdi_display, iPixelFormat, &fmt_index, &value)) {
1147       ERR("Can't find a valid pixel format index from the main visual, expect problems!\n");
1148       return TRUE; /* Return true because the SetPixelFormat stuff itself passed */
1149     }
1150
1151     /*
1152      * How to test if hdc current drawable is compatible (visual/FBConfig) ?
1153      *
1154      * in case of root window created HDCs we crash here :(
1155      *
1156     Drawable drawable =  get_drawable( physDev->hdc );
1157     TRACE(" drawable (%p,%p) have :\n", drawable, root_window);
1158     pglXQueryDrawable(gdi_display, drawable, GLX_FBCONFIG_ID, (unsigned int*) &value);
1159     TRACE(" - FBCONFIG_ID as 0x%x\n", tmp);
1160     pglXQueryDrawable(gdi_display, drawable, GLX_VISUAL_ID, (unsigned int*) &value);
1161     TRACE(" - VISUAL_ID as 0x%x\n", tmp);
1162     pglXQueryDrawable(gdi_display, drawable, GLX_WIDTH, (unsigned int*) &value);
1163     TRACE(" - WIDTH as %d\n", tmp);
1164     pglXQueryDrawable(gdi_display, drawable, GLX_HEIGHT, (unsigned int*) &value);
1165     TRACE(" - HEIGHT as %d\n", tmp);
1166     */
1167     cfgs_fmt = pglXGetFBConfigs(gdi_display, DefaultScreen(gdi_display), &nCfgs_fmt);
1168     cur_cfg = cfgs_fmt[fmt_index];
1169     gl_test = pglXGetFBConfigAttrib(gdi_display, cur_cfg, GLX_FBCONFIG_ID, &value);
1170     if (gl_test) {
1171       ERR("Failed to retrieve FBCONFIG_ID from GLXFBConfig, expect problems.\n");
1172     } else {
1173       TRACE(" FBConfig have :\n");
1174       TRACE(" - FBCONFIG_ID   0x%x\n", value);
1175       pglXGetFBConfigAttrib(gdi_display, cur_cfg, GLX_VISUAL_ID, &value);
1176       TRACE(" - VISUAL_ID     0x%x\n", value);
1177       pglXGetFBConfigAttrib(gdi_display, cur_cfg, GLX_DRAWABLE_TYPE, &value);
1178       TRACE(" - DRAWABLE_TYPE 0x%x\n", value);
1179     }
1180     XFree(cfgs_fmt);
1181   }
1182   return TRUE;
1183 }
1184
1185 /* OpenGL32 wglCreateContext */
1186 HGLRC X11DRV_wglCreateContext(X11DRV_PDEVICE *physDev)
1187 {
1188     Wine_GLContext *ret;
1189     GLXFBConfig* cfgs_fmt = NULL;
1190     GLXFBConfig cur_cfg;
1191     int hdcPF = 1; /* We can only use the Wine's main visual which has an index of 1 */
1192     int tmp = 0;
1193     int fmt_index = 0;
1194     int nCfgs_fmt = 0;
1195     int value = 0;
1196     int gl_test = 0;
1197     HDC hdc = physDev->hdc;
1198
1199     TRACE("(%p)->(PF:%d)\n", hdc, hdcPF);
1200
1201     /* First, get the visual in use by the X11DRV */
1202     if (!gdi_display) return 0;
1203
1204     /* We can only render using the iPixelFormat (1) of Wine's Main visual, we need to get the correspondig GLX format.
1205     * If this fails something is very wrong on the system. */
1206     if(!ConvertPixelFormatWGLtoGLX(gdi_display, hdcPF, &fmt_index, &tmp)) {
1207         ERR("Cannot get FB Config for main iPixelFormat 1, expect problems!\n");
1208         SetLastError(ERROR_INVALID_PIXEL_FORMAT);
1209         return NULL;
1210     }
1211
1212     cfgs_fmt = pglXGetFBConfigs(gdi_display, DefaultScreen(gdi_display), &nCfgs_fmt);
1213     if (NULL == cfgs_fmt || 0 == nCfgs_fmt) {
1214         ERR("Cannot get FB Configs, expect problems.\n");
1215         SetLastError(ERROR_INVALID_PIXEL_FORMAT);
1216         return NULL;
1217     }
1218
1219     if (nCfgs_fmt < fmt_index) {
1220         ERR("(%p): unexpected pixelFormat(%d) > nFormats(%d), returns NULL\n", hdc, fmt_index, nCfgs_fmt);
1221         SetLastError(ERROR_INVALID_PIXEL_FORMAT);
1222         return NULL;
1223     }
1224
1225     cur_cfg = cfgs_fmt[fmt_index];
1226     gl_test = pglXGetFBConfigAttrib(gdi_display, cur_cfg, GLX_FBCONFIG_ID, &value);
1227     if (gl_test) {
1228         ERR("Failed to retrieve FBCONFIG_ID from GLXFBConfig, expect problems.\n");
1229         SetLastError(ERROR_INVALID_PIXEL_FORMAT);
1230         return NULL;
1231     }
1232     XFree(cfgs_fmt);
1233
1234     /* The context will be allocated in the wglMakeCurrent call */
1235     wine_tsx11_lock();
1236     ret = alloc_context();
1237     wine_tsx11_unlock();
1238     ret->hdc = hdc;
1239     ret->display = gdi_display;
1240     ret->fb_conf = cur_cfg;
1241     /*ret->vis = vis;*/
1242     ret->vis = pglXGetVisualFromFBConfig(gdi_display, cur_cfg);
1243
1244     TRACE(" creating context %p (GL context creation delayed)\n", ret);
1245     return (HGLRC) ret;
1246 }
1247
1248 /* OpenGL32 wglDeleteContext */
1249 BOOL WINAPI X11DRV_wglDeleteContext(HGLRC hglrc)
1250 {
1251     Wine_GLContext *ctx = (Wine_GLContext *) hglrc;
1252     BOOL ret = TRUE;
1253
1254     TRACE("(%p)\n", hglrc);
1255
1256     wine_tsx11_lock();
1257     /* A game (Half Life not to name it) deletes twice the same context,
1258     * so make sure it is valid first */
1259     if (is_valid_context( ctx ))
1260     {
1261         if (ctx->ctx) pglXDestroyContext(ctx->display, ctx->ctx);
1262         free_context(ctx);
1263     }
1264     else
1265     {
1266         WARN("Error deleting context !\n");
1267         SetLastError(ERROR_INVALID_HANDLE);
1268         ret = FALSE;
1269     }
1270     wine_tsx11_unlock();
1271
1272     return ret;
1273 }
1274
1275 /* OpenGL32 wglGetCurrentReadDCARB */
1276 static HDC WINAPI X11DRV_wglGetCurrentReadDCARB(void) 
1277 {
1278     GLXDrawable gl_d;
1279     HDC ret;
1280
1281     TRACE("()\n");
1282
1283     wine_tsx11_lock();
1284     gl_d = pglXGetCurrentReadDrawable();
1285     ret = get_hdc_from_Drawable(gl_d);
1286     wine_tsx11_unlock();
1287
1288     TRACE(" returning %p (GL drawable %lu)\n", ret, gl_d);
1289     return ret;
1290 }
1291
1292 /* OpenGL32: wglGetProcAddress */
1293 PROC X11DRV_wglGetProcAddress(LPCSTR lpszProc)
1294 {
1295     int i, j;
1296     const WineGLExtension *ext;
1297
1298     int padding = 32 - strlen(lpszProc);
1299     if (padding < 0)
1300         padding = 0;
1301
1302     /* Check the table of WGL extensions to see if we need to return a WGL extension
1303      * or a function pointer to a native OpenGL function. */
1304     if(strncmp(lpszProc, "wgl", 3) != 0) {
1305         return pglXGetProcAddressARB((GLubyte*)lpszProc);
1306     } else {
1307         TRACE("('%s'):%*s", lpszProc, padding, " ");
1308         for (i = 0; i < WineGLExtensionListSize; ++i) {
1309             ext = WineGLExtensionList[i];
1310             for (j = 0; ext->extEntryPoints[j].funcName; ++j) {
1311                 if (strcmp(ext->extEntryPoints[j].funcName, lpszProc) == 0) {
1312                     TRACE("(%p) - WineGL\n", ext->extEntryPoints[j].funcAddress);
1313                     return ext->extEntryPoints[j].funcAddress;
1314                 }
1315             }
1316         }
1317     }
1318
1319     ERR("(%s) - not found\n", lpszProc);
1320     return NULL;
1321 }
1322
1323
1324 /* OpenGL32 wglMakeCurrent */
1325 BOOL X11DRV_wglMakeCurrent(X11DRV_PDEVICE *physDev, HGLRC hglrc) {
1326     BOOL ret;
1327     HDC hdc = physDev->hdc;
1328     DWORD type = GetObjectType(hdc);
1329
1330     TRACE("(%p,%p)\n", hdc, hglrc);
1331
1332     wine_tsx11_lock();
1333     if (hglrc == NULL) {
1334         ret = pglXMakeCurrent(gdi_display, None, NULL);
1335         NtCurrentTeb()->glContext = NULL;
1336     } else {
1337         Wine_GLContext *ctx = (Wine_GLContext *) hglrc;
1338         Drawable drawable = physDev->drawable;
1339         if (ctx->ctx == NULL) {
1340             int draw_vis_id, ctx_vis_id;
1341             VisualID visualid = (VisualID)GetPropA( GetDesktopWindow(), "__wine_x11_visual_id" );
1342             TRACE(" Wine desktop VISUAL_ID is 0x%x\n", (unsigned int) visualid);
1343             draw_vis_id = describeDrawable(ctx, drawable);
1344             ctx_vis_id = describeContext(ctx);
1345
1346             if (-1 == draw_vis_id || (draw_vis_id == visualid && draw_vis_id != ctx_vis_id)) {
1347                 /**
1348                 * Inherits from root window so reuse desktop visual
1349                 */
1350                 XVisualInfo template;
1351                 XVisualInfo *vis;
1352                 int num;
1353                 template.visualid = visualid;
1354                 vis = XGetVisualInfo(ctx->display, VisualIDMask, &template, &num);
1355
1356                 TRACE(" Creating GLX Context\n");
1357                 ctx->ctx = pglXCreateContext(ctx->display, vis, NULL, type == OBJ_MEMDC ? False : True);
1358             } else {
1359                 TRACE(" Creating GLX Context\n");
1360                 ctx->ctx = pglXCreateContext(ctx->display, ctx->vis, NULL, type == OBJ_MEMDC ? False : True);
1361             }
1362             TRACE(" created a delayed OpenGL context (%p)\n", ctx->ctx);
1363         }
1364         TRACE(" make current for dis %p, drawable %p, ctx %p\n", ctx->display, (void*) drawable, ctx->ctx);
1365         ret = pglXMakeCurrent(ctx->display, drawable, ctx->ctx);
1366         NtCurrentTeb()->glContext = ctx;
1367         if(ret && type == OBJ_MEMDC)
1368         {
1369             ctx->do_escape = TRUE;
1370             pglDrawBuffer(GL_FRONT_LEFT);
1371         }
1372     }
1373     wine_tsx11_unlock();
1374     TRACE(" returning %s\n", (ret ? "True" : "False"));
1375     return ret;
1376 }
1377
1378 /* OpenGL32 wglMakeContextCurrentARB */
1379 static BOOL WINAPI X11DRV_wglMakeContextCurrentARB(HDC hDrawDC, HDC hReadDC, HGLRC hglrc) 
1380 {
1381     BOOL ret;
1382     TRACE("(%p,%p,%p)\n", hDrawDC, hReadDC, hglrc);
1383
1384     wine_tsx11_lock();
1385     if (hglrc == NULL) {
1386         ret = pglXMakeCurrent(gdi_display, None, NULL);
1387         NtCurrentTeb()->glContext = NULL;
1388     } else {
1389         if (NULL == pglXMakeContextCurrent) {
1390             ret = FALSE;
1391         } else {
1392             Wine_GLContext *ctx = (Wine_GLContext *) hglrc;
1393             Drawable d_draw = get_drawable( hDrawDC );
1394             Drawable d_read = get_drawable( hReadDC );
1395
1396             if (ctx->ctx == NULL) {
1397                 ctx->ctx = pglXCreateContext(ctx->display, ctx->vis, NULL, GetObjectType(hDrawDC) == OBJ_MEMDC ? False : True);
1398                 TRACE(" created a delayed OpenGL context (%p)\n", ctx->ctx);
1399             }
1400             ret = pglXMakeContextCurrent(ctx->display, d_draw, d_read, ctx->ctx);
1401             NtCurrentTeb()->glContext = ctx;
1402         }
1403     }
1404     wine_tsx11_unlock();
1405
1406     TRACE(" returning %s\n", (ret ? "True" : "False"));
1407     return ret;
1408 }
1409
1410 /* OpenGL32 wglShaderLists */
1411 BOOL WINAPI X11DRV_wglShareLists(HGLRC hglrc1, HGLRC hglrc2) {
1412     Wine_GLContext *org  = (Wine_GLContext *) hglrc1;
1413     Wine_GLContext *dest = (Wine_GLContext *) hglrc2;
1414
1415     TRACE("(%p, %p)\n", org, dest);
1416
1417     if (NULL != dest && dest->ctx != NULL) {
1418         ERR("Could not share display lists, context already created !\n");
1419         return FALSE;
1420     } else {
1421         if (org->ctx == NULL) {
1422             wine_tsx11_lock();
1423             describeContext(org);
1424             org->ctx = pglXCreateContext(org->display, org->vis, NULL, GetObjectType(org->hdc) == OBJ_MEMDC ? False : True);
1425             wine_tsx11_unlock();
1426             TRACE(" created a delayed OpenGL context (%p) for Wine context %p\n", org->ctx, org);
1427         }
1428         if (NULL != dest) {
1429             wine_tsx11_lock();
1430             describeContext(dest);
1431             /* Create the destination context with display lists shared */
1432             dest->ctx = pglXCreateContext(org->display, dest->vis, org->ctx, GetObjectType(org->hdc) == OBJ_MEMDC ? False : True);
1433             wine_tsx11_unlock();
1434             TRACE(" created a delayed OpenGL context (%p) for Wine context %p sharing lists with OpenGL ctx %p\n", dest->ctx, dest, org->ctx);
1435             return TRUE;
1436         }
1437     }
1438     return FALSE;
1439 }
1440
1441 static BOOL internal_wglUseFontBitmaps(HDC hdc, DWORD first, DWORD count, DWORD listBase, DWORD (WINAPI *GetGlyphOutline_ptr)(HDC,UINT,UINT,LPGLYPHMETRICS,DWORD,LPVOID,const MAT2*))
1442 {
1443      /* We are running using client-side rendering fonts... */
1444      GLYPHMETRICS gm;
1445      unsigned int glyph;
1446      int size = 0;
1447      void *bitmap = NULL, *gl_bitmap = NULL;
1448      int org_alignment;
1449
1450      wine_tsx11_lock();
1451      pglGetIntegerv(GL_UNPACK_ALIGNMENT, &org_alignment);
1452      pglPixelStorei(GL_UNPACK_ALIGNMENT, 4);
1453      wine_tsx11_unlock();
1454
1455      for (glyph = first; glyph < first + count; glyph++) {
1456          unsigned int needed_size = GetGlyphOutline_ptr(hdc, glyph, GGO_BITMAP, &gm, 0, NULL, NULL);
1457          int height, width_int;
1458
1459          TRACE("Glyph : %3d / List : %d\n", glyph, listBase);
1460          if (needed_size == GDI_ERROR) {
1461              TRACE("  - needed size : %d (GDI_ERROR)\n", needed_size);
1462              goto error;
1463          } else {
1464              TRACE("  - needed size : %d\n", needed_size);
1465          }
1466
1467          if (needed_size > size) {
1468              size = needed_size;
1469              HeapFree(GetProcessHeap(), 0, bitmap);
1470              HeapFree(GetProcessHeap(), 0, gl_bitmap);
1471              bitmap = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
1472              gl_bitmap = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
1473          }
1474          if (GetGlyphOutline_ptr(hdc, glyph, GGO_BITMAP, &gm, size, bitmap, NULL) == GDI_ERROR) goto error;
1475          if (TRACE_ON(opengl)) {
1476              unsigned int height, width, bitmask;
1477              unsigned char *bitmap_ = (unsigned char *) bitmap;
1478
1479              TRACE("  - bbox : %d x %d\n", gm.gmBlackBoxX, gm.gmBlackBoxY);
1480              TRACE("  - origin : (%d , %d)\n", gm.gmptGlyphOrigin.x, gm.gmptGlyphOrigin.y);
1481              TRACE("  - increment : %d - %d\n", gm.gmCellIncX, gm.gmCellIncY);
1482              if (needed_size != 0) {
1483                  TRACE("  - bitmap :\n");
1484                  for (height = 0; height < gm.gmBlackBoxY; height++) {
1485                      TRACE("      ");
1486                      for (width = 0, bitmask = 0x80; width < gm.gmBlackBoxX; width++, bitmask >>= 1) {
1487                          if (bitmask == 0) {
1488                              bitmap_ += 1;
1489                              bitmask = 0x80;
1490                          }
1491                          if (*bitmap_ & bitmask)
1492                              TRACE("*");
1493                          else
1494                              TRACE(" ");
1495                      }
1496                      bitmap_ += (4 - ((UINT_PTR)bitmap_ & 0x03));
1497                      TRACE("\n");
1498                  }
1499              }
1500          }
1501
1502          /* In OpenGL, the bitmap is drawn from the bottom to the top... So we need to invert the
1503          * glyph for it to be drawn properly.
1504          */
1505          if (needed_size != 0) {
1506              width_int = (gm.gmBlackBoxX + 31) / 32;
1507              for (height = 0; height < gm.gmBlackBoxY; height++) {
1508                  int width;
1509                  for (width = 0; width < width_int; width++) {
1510                      ((int *) gl_bitmap)[(gm.gmBlackBoxY - height - 1) * width_int + width] =
1511                      ((int *) bitmap)[height * width_int + width];
1512                  }
1513              }
1514          }
1515
1516          wine_tsx11_lock();
1517          pglNewList(listBase++, GL_COMPILE);
1518          if (needed_size != 0) {
1519              pglBitmap(gm.gmBlackBoxX, gm.gmBlackBoxY,
1520                      0 - (int) gm.gmptGlyphOrigin.x, (int) gm.gmBlackBoxY - (int) gm.gmptGlyphOrigin.y,
1521                      gm.gmCellIncX, gm.gmCellIncY,
1522                      gl_bitmap);
1523          } else {
1524              /* This is the case of 'empty' glyphs like the space character */
1525              pglBitmap(0, 0, 0, 0, gm.gmCellIncX, gm.gmCellIncY, NULL);
1526          }
1527          pglEndList();
1528          wine_tsx11_unlock();
1529      }
1530
1531      wine_tsx11_lock();
1532      pglPixelStorei(GL_UNPACK_ALIGNMENT, org_alignment);
1533      wine_tsx11_unlock();
1534
1535      HeapFree(GetProcessHeap(), 0, bitmap);
1536      HeapFree(GetProcessHeap(), 0, gl_bitmap);
1537      return TRUE;
1538
1539   error:
1540      wine_tsx11_lock();
1541      pglPixelStorei(GL_UNPACK_ALIGNMENT, org_alignment);
1542      wine_tsx11_unlock();
1543
1544      HeapFree(GetProcessHeap(), 0, bitmap);
1545      HeapFree(GetProcessHeap(), 0, gl_bitmap);
1546      return FALSE;
1547 }
1548
1549 /* OpenGL32 wglUseFontBitmapsA */
1550 BOOL X11DRV_wglUseFontBitmapsA(X11DRV_PDEVICE *physDev, DWORD first, DWORD count, DWORD listBase)
1551 {
1552      Font fid = physDev->font;
1553
1554      TRACE("(%p, %d, %d, %d) using font %ld\n", physDev->hdc, first, count, listBase, fid);
1555
1556      if (fid == 0) {
1557          return internal_wglUseFontBitmaps(physDev->hdc, first, count, listBase, GetGlyphOutlineA);
1558      }
1559
1560      wine_tsx11_lock();
1561      /* I assume that the glyphs are at the same position for X and for Windows */
1562      pglXUseXFont(fid, first, count, listBase);
1563      wine_tsx11_unlock();
1564      return TRUE;
1565 }
1566
1567 /* OpenGL32 wglUseFontBitmapsW */
1568 BOOL X11DRV_wglUseFontBitmapsW(X11DRV_PDEVICE *physDev, DWORD first, DWORD count, DWORD listBase)
1569 {
1570      Font fid = physDev->font;
1571
1572      TRACE("(%p, %d, %d, %d) using font %ld\n", physDev->hdc, first, count, listBase, fid);
1573
1574      if (fid == 0) {
1575          return internal_wglUseFontBitmaps(physDev->hdc, first, count, listBase, GetGlyphOutlineW);
1576      }
1577
1578      WARN("Using the glX API for the WCHAR variant - some characters may come out incorrectly !\n");
1579
1580      wine_tsx11_lock();
1581      /* I assume that the glyphs are at the same position for X and for Windows */
1582      pglXUseXFont(fid, first, count, listBase);
1583      wine_tsx11_unlock();
1584      return TRUE;
1585 }
1586
1587 /* WGL helper function which handles differences in glGetIntegerv from WGL and GLX */ 
1588 void X11DRV_wglGetIntegerv(GLenum pname, GLint* params) {
1589     TRACE("pname: 0x%x, params: %p\n", pname, params);
1590     if (pname == GL_DEPTH_BITS) { 
1591         GLXContext gl_ctx = pglXGetCurrentContext();
1592         Wine_GLContext* ret = get_context_from_GLXContext(gl_ctx);
1593         /*TRACE("returns Wine Ctx as %p\n", ret);*/
1594         /** 
1595         * if we cannot find a Wine Context
1596         * we only have the default wine desktop context, 
1597         * so if we have only a 24 depth say we have 32
1598         */
1599         if (NULL == ret && 24 == *params) { 
1600             *params = 32;
1601         }
1602         TRACE("returns GL_DEPTH_BITS as '%d'\n", *params);
1603     }
1604     if (pname == GL_ALPHA_BITS) {
1605         GLint tmp;
1606         GLXContext gl_ctx = pglXGetCurrentContext();
1607         Wine_GLContext* ret = get_context_from_GLXContext(gl_ctx);
1608         pglXGetFBConfigAttrib(ret->display, ret->fb_conf, GLX_ALPHA_SIZE, &tmp);
1609         TRACE("returns GL_ALPHA_BITS as '%d'\n", tmp);
1610         *params = tmp;
1611     }
1612 }
1613
1614 /* WGL_ARB_extensions_string: wglGetExtensionsStringARB */
1615 static const char * WINAPI X11DRV_wglGetExtensionsStringARB(HDC hdc) {
1616     TRACE("() returning \"%s\"\n", WineGLInfo.wglExtensions);
1617     return WineGLInfo.wglExtensions;
1618 }
1619
1620 /* WGL_ARB_pbuffer: wglCreatePbufferARB */
1621 static HPBUFFERARB WINAPI X11DRV_wglCreatePbufferARB(HDC hdc, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList)
1622 {
1623     Wine_GLPBuffer* object = NULL;
1624     GLXFBConfig* cfgs = NULL;
1625     int nCfgs = 0;
1626     int attribs[256];
1627     unsigned nAttribs = 0;
1628     int fmt_index = 0;
1629
1630     TRACE("(%p, %d, %d, %d, %p)\n", hdc, iPixelFormat, iWidth, iHeight, piAttribList);
1631
1632     if (0 >= iPixelFormat) {
1633         ERR("(%p): unexpected iPixelFormat(%d) <= 0, returns NULL\n", hdc, iPixelFormat);
1634         SetLastError(ERROR_INVALID_PIXEL_FORMAT);
1635         return NULL; /* unexpected error */
1636     }
1637
1638     cfgs = pglXGetFBConfigs(gdi_display, DefaultScreen(gdi_display), &nCfgs);
1639
1640     if (NULL == cfgs || 0 == nCfgs) {
1641         ERR("(%p): Cannot get FB Configs for iPixelFormat(%d), returns NULL\n", hdc, iPixelFormat);
1642         SetLastError(ERROR_INVALID_PIXEL_FORMAT);
1643         return NULL; /* unexpected error */
1644     }
1645
1646     /* Convert the WGL pixelformat to a GLX format, if it fails then the format is invalid */
1647     if(!ConvertPixelFormatWGLtoGLX(gdi_display, iPixelFormat, &fmt_index, &nCfgs)) {
1648         ERR("(%p): unexpected iPixelFormat(%d) > nFormats(%d), returns NULL\n", hdc, iPixelFormat, nCfgs);
1649         SetLastError(ERROR_INVALID_PIXEL_FORMAT);
1650         goto create_failed; /* unexpected error */
1651     }
1652
1653     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(Wine_GLPBuffer));
1654     if (NULL == object) {
1655         SetLastError(ERROR_NO_SYSTEM_RESOURCES);
1656         goto create_failed; /* unexpected error */
1657     }
1658     object->hdc = hdc;
1659     object->display = gdi_display;
1660     object->width = iWidth;
1661     object->height = iHeight;
1662
1663     nAttribs = ConvertAttribWGLtoGLX(piAttribList, attribs, object);
1664     if (-1 == nAttribs) {
1665         WARN("Cannot convert WGL to GLX attributes\n");
1666         goto create_failed;
1667     }
1668     PUSH2(attribs, GLX_PBUFFER_WIDTH,  iWidth);
1669     PUSH2(attribs, GLX_PBUFFER_HEIGHT, iHeight); 
1670     while (0 != *piAttribList) {
1671         int attr_v;
1672         switch (*piAttribList) {
1673             case WGL_TEXTURE_FORMAT_ARB: {
1674                 ++piAttribList;
1675                 attr_v = *piAttribList;
1676                 TRACE("WGL_render_texture Attribute: WGL_TEXTURE_FORMAT_ARB as %x\n", attr_v);
1677                 if (use_render_texture_ati) {
1678                     int type = 0;
1679                     switch (attr_v) {
1680                         case WGL_NO_TEXTURE_ARB: type = GLX_NO_TEXTURE_ATI; break ;
1681                         case WGL_TEXTURE_RGB_ARB: type = GLX_TEXTURE_RGB_ATI; break ;
1682                         case WGL_TEXTURE_RGBA_ARB: type = GLX_TEXTURE_RGBA_ATI; break ;
1683                         default:
1684                             SetLastError(ERROR_INVALID_DATA);
1685                             goto create_failed;
1686                     }
1687                     object->use_render_texture = 1;
1688                     PUSH2(attribs, GLX_TEXTURE_FORMAT_ATI, type);
1689                 } else {
1690                     if (WGL_NO_TEXTURE_ARB == attr_v) {
1691                         object->use_render_texture = 0;
1692                     } else {
1693                         if (!use_render_texture_emulation) {
1694                             SetLastError(ERROR_INVALID_DATA);
1695                             goto create_failed;
1696                         }
1697                         switch (attr_v) {
1698                             case WGL_TEXTURE_RGB_ARB:
1699                                 object->use_render_texture = GL_RGB;
1700                                 break;
1701                             case WGL_TEXTURE_RGBA_ARB:
1702                                 object->use_render_texture = GL_RGBA;
1703                                 break;
1704                             default:
1705                                 SetLastError(ERROR_INVALID_DATA);
1706                                 goto create_failed;
1707                         }
1708                     }
1709                 }
1710                 break;
1711             }
1712
1713             case WGL_TEXTURE_TARGET_ARB: {
1714                 ++piAttribList;
1715                 attr_v = *piAttribList;
1716                 TRACE("WGL_render_texture Attribute: WGL_TEXTURE_TARGET_ARB as %x\n", attr_v);
1717                 if (use_render_texture_ati) {
1718                     int type = 0;
1719                     switch (attr_v) {
1720                         case WGL_NO_TEXTURE_ARB: type = GLX_NO_TEXTURE_ATI; break ;
1721                         case WGL_TEXTURE_CUBE_MAP_ARB: type = GLX_TEXTURE_CUBE_MAP_ATI; break ;
1722                         case WGL_TEXTURE_1D_ARB: type = GLX_TEXTURE_1D_ATI; break ;
1723                         case WGL_TEXTURE_2D_ARB: type = GLX_TEXTURE_2D_ATI; break ;
1724                         default:
1725                             SetLastError(ERROR_INVALID_DATA);
1726                             goto create_failed;
1727                     }
1728                     PUSH2(attribs, GLX_TEXTURE_TARGET_ATI, type);
1729                 } else {
1730                     if (WGL_NO_TEXTURE_ARB == attr_v) {
1731                         object->texture_target = 0;
1732                     } else {
1733                         if (!use_render_texture_emulation) {
1734                             SetLastError(ERROR_INVALID_DATA);
1735                             goto create_failed;
1736                         }
1737                         switch (attr_v) {
1738                             case WGL_TEXTURE_CUBE_MAP_ARB: {
1739                                 if (iWidth != iHeight) {
1740                                     SetLastError(ERROR_INVALID_DATA);
1741                                     goto create_failed;
1742                                 }
1743                                 object->texture_target = GL_TEXTURE_CUBE_MAP;
1744                                 object->texture_bind_target = GL_TEXTURE_CUBE_MAP;
1745                                break;
1746                             }
1747                             case WGL_TEXTURE_1D_ARB: {
1748                                 if (1 != iHeight) {
1749                                     SetLastError(ERROR_INVALID_DATA);
1750                                     goto create_failed;
1751                                 }
1752                                 object->texture_target = GL_TEXTURE_1D;
1753                                 object->texture_bind_target = GL_TEXTURE_1D;
1754                                 break;
1755                             }
1756                             case WGL_TEXTURE_2D_ARB: {
1757                                 object->texture_target = GL_TEXTURE_2D;
1758                                 object->texture_bind_target = GL_TEXTURE_2D;
1759                                 break;
1760                             }
1761                             default:
1762                                 SetLastError(ERROR_INVALID_DATA);
1763                                 goto create_failed;
1764                         }
1765                     }
1766                 }
1767                 break;
1768             }
1769
1770             case WGL_MIPMAP_TEXTURE_ARB: {
1771                 ++piAttribList;
1772                 attr_v = *piAttribList;
1773                 TRACE("WGL_render_texture Attribute: WGL_MIPMAP_TEXTURE_ARB as %x\n", attr_v);
1774                 if (use_render_texture_ati) {
1775                     PUSH2(attribs, GLX_MIPMAP_TEXTURE_ATI, attr_v);
1776                 } else {
1777                     if (!use_render_texture_emulation) {
1778                         SetLastError(ERROR_INVALID_DATA);
1779                         goto create_failed;
1780                     }
1781                 }
1782                 break;
1783             }
1784         }
1785         ++piAttribList;
1786     }
1787
1788     PUSH1(attribs, None);
1789     object->drawable = pglXCreatePbuffer(gdi_display, cfgs[fmt_index], attribs);
1790     TRACE("new Pbuffer drawable as %p\n", (void*) object->drawable);
1791     if (!object->drawable) {
1792         SetLastError(ERROR_NO_SYSTEM_RESOURCES);
1793         goto create_failed; /* unexpected error */
1794     }
1795     TRACE("->(%p)\n", object);
1796
1797     /** free list */
1798     XFree(cfgs);
1799     return (HPBUFFERARB) object;
1800
1801 create_failed:
1802     if (NULL != cfgs) XFree(cfgs);
1803     HeapFree(GetProcessHeap(), 0, object);
1804     TRACE("->(FAILED)\n");
1805     return (HPBUFFERARB) NULL;
1806 }
1807
1808 /* WGL_ARB_pbuffer: wglDestroyPbufferARB */
1809 static GLboolean WINAPI X11DRV_wglDestroyPbufferARB(HPBUFFERARB hPbuffer)
1810 {
1811     Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer;
1812     TRACE("(%p)\n", hPbuffer);
1813     if (NULL == object) {
1814         SetLastError(ERROR_INVALID_HANDLE);
1815         return GL_FALSE;
1816     }
1817     pglXDestroyPbuffer(object->display, object->drawable);
1818     HeapFree(GetProcessHeap(), 0, object);
1819     return GL_TRUE;
1820 }
1821
1822 /* WGL_ARB_pbuffer: wglGetPbufferDCARB */
1823 static HDC WINAPI X11DRV_wglGetPbufferDCARB(HPBUFFERARB hPbuffer)
1824 {
1825     Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer;
1826     HDC hDC;
1827     if (NULL == object) {
1828         SetLastError(ERROR_INVALID_HANDLE);
1829         return NULL;
1830     }
1831     hDC = CreateCompatibleDC(object->hdc);
1832
1833     /* The function wglGetPbufferDCARB returns a DC to which the pbuffer can be connected.
1834      * We only support one onscreen rendering format (the one from the main visual), so use that. */
1835     SetPixelFormat(hDC, 1, NULL);
1836     set_drawable(hDC, object->drawable); /* works ?? */
1837     TRACE("(%p)->(%p)\n", hPbuffer, hDC);
1838     return hDC;
1839 }
1840
1841 /* WGL_ARB_pbuffer: wglQueryPbufferARB */
1842 static GLboolean WINAPI X11DRV_wglQueryPbufferARB(HPBUFFERARB hPbuffer, int iAttribute, int *piValue)
1843 {
1844     Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer;
1845     TRACE("(%p, 0x%x, %p)\n", hPbuffer, iAttribute, piValue);
1846     if (NULL == object) {
1847         SetLastError(ERROR_INVALID_HANDLE);
1848         return GL_FALSE;
1849     }
1850     switch (iAttribute) {
1851         case WGL_PBUFFER_WIDTH_ARB:
1852             pglXQueryDrawable(object->display, object->drawable, GLX_WIDTH, (unsigned int*) piValue);
1853             break;
1854         case WGL_PBUFFER_HEIGHT_ARB:
1855             pglXQueryDrawable(object->display, object->drawable, GLX_HEIGHT, (unsigned int*) piValue);
1856             break;
1857
1858         case WGL_PBUFFER_LOST_ARB:
1859             FIXME("unsupported WGL_PBUFFER_LOST_ARB (need glXSelectEvent/GLX_DAMAGED work)\n");
1860             break;
1861
1862         case WGL_TEXTURE_FORMAT_ARB:
1863             if (use_render_texture_ati) {
1864                 unsigned int tmp;
1865                 int type = WGL_NO_TEXTURE_ARB;
1866                 pglXQueryDrawable(object->display, object->drawable, GLX_TEXTURE_FORMAT_ATI, &tmp);
1867                 switch (tmp) {
1868                     case GLX_NO_TEXTURE_ATI: type = WGL_NO_TEXTURE_ARB; break ;
1869                     case GLX_TEXTURE_RGB_ATI: type = WGL_TEXTURE_RGB_ARB; break ;
1870                     case GLX_TEXTURE_RGBA_ATI: type = WGL_TEXTURE_RGBA_ARB; break ;
1871                 }
1872                 *piValue = type;
1873             } else {
1874                 if (!object->use_render_texture) {
1875                     *piValue = WGL_NO_TEXTURE_ARB;
1876                 } else {
1877                     if (!use_render_texture_emulation) {
1878                         SetLastError(ERROR_INVALID_HANDLE);
1879                         return GL_FALSE;
1880                     }
1881                     if (GL_RGBA == object->use_render_texture) {
1882                         *piValue = WGL_TEXTURE_RGBA_ARB;
1883                     } else {
1884                         *piValue = WGL_TEXTURE_RGB_ARB;
1885                     }
1886                 }
1887             }
1888             break;
1889
1890         case WGL_TEXTURE_TARGET_ARB:
1891             if (use_render_texture_ati) {
1892                 unsigned int tmp;
1893                 int type = WGL_NO_TEXTURE_ARB;
1894                 pglXQueryDrawable(object->display, object->drawable, GLX_TEXTURE_TARGET_ATI, &tmp);
1895                 switch (tmp) {
1896                     case GLX_NO_TEXTURE_ATI: type = WGL_NO_TEXTURE_ARB; break ;
1897                     case GLX_TEXTURE_CUBE_MAP_ATI: type = WGL_TEXTURE_CUBE_MAP_ARB; break ;
1898                     case GLX_TEXTURE_1D_ATI: type = WGL_TEXTURE_1D_ARB; break ;
1899                     case GLX_TEXTURE_2D_ATI: type = WGL_TEXTURE_2D_ARB; break ;
1900                 }
1901                 *piValue = type;
1902             } else {
1903             if (!object->texture_target) {
1904                 *piValue = WGL_NO_TEXTURE_ARB;
1905             } else {
1906                 if (!use_render_texture_emulation) {
1907                     SetLastError(ERROR_INVALID_DATA);      
1908                     return GL_FALSE;
1909                 }
1910                 switch (object->texture_target) {
1911                     case GL_TEXTURE_1D:       *piValue = WGL_TEXTURE_CUBE_MAP_ARB; break;
1912                     case GL_TEXTURE_2D:       *piValue = WGL_TEXTURE_1D_ARB; break;
1913                     case GL_TEXTURE_CUBE_MAP: *piValue = WGL_TEXTURE_2D_ARB; break;
1914                 }
1915             }
1916         }
1917         break;
1918
1919     case WGL_MIPMAP_TEXTURE_ARB:
1920         if (use_render_texture_ati) {
1921             pglXQueryDrawable(object->display, object->drawable, GLX_MIPMAP_TEXTURE_ATI, (unsigned int*) piValue);
1922         } else {
1923             *piValue = GL_FALSE; /** don't support that */
1924             FIXME("unsupported WGL_ARB_render_texture attribute query for 0x%x\n", iAttribute);
1925         }
1926         break;
1927
1928     default:
1929         FIXME("unexpected attribute %x\n", iAttribute);
1930         break;
1931     }
1932
1933     return GL_TRUE;
1934 }
1935
1936 /* WGL_ARB_pbuffer: wglReleasePbufferDCARB */
1937 static int WINAPI X11DRV_wglReleasePbufferDCARB(HPBUFFERARB hPbuffer, HDC hdc)
1938 {
1939     TRACE("(%p, %p)\n", hPbuffer, hdc);
1940     DeleteDC(hdc);
1941     return 0;
1942 }
1943
1944 /* WGL_ARB_pbuffer: wglSetPbufferAttribARB */
1945 static GLboolean WINAPI X11DRV_wglSetPbufferAttribARB(HPBUFFERARB hPbuffer, const int *piAttribList)
1946 {
1947     Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer;
1948     WARN("(%p, %p): alpha-testing, report any problem\n", hPbuffer, piAttribList);
1949     if (NULL == object) {
1950         SetLastError(ERROR_INVALID_HANDLE);
1951         return GL_FALSE;
1952     }
1953     if (!object->use_render_texture) {
1954         SetLastError(ERROR_INVALID_HANDLE);
1955         return GL_FALSE;
1956     }
1957     if (!use_render_texture_ati && 1 == use_render_texture_emulation) {
1958         return GL_TRUE;
1959     }
1960     if (NULL != pglXDrawableAttribARB) {
1961         if (use_render_texture_ati) {
1962             FIXME("Need conversion for GLX_ATI_render_texture\n");
1963         }
1964         return pglXDrawableAttribARB(object->display, object->drawable, piAttribList); 
1965     }
1966     return GL_FALSE;
1967 }
1968
1969 /* WGL_ARB_pixel_format: wglChoosePixelFormatARB */
1970 GLboolean WINAPI X11DRV_wglChoosePixelFormatARB(HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats)
1971 {
1972     int gl_test = 0;
1973     int attribs[256];
1974     int nAttribs = 0;
1975     GLboolean res = FALSE;
1976
1977     /* We need the visualid to check if the format is suitable */
1978     VisualID visualid = XVisualIDFromVisual(visual);
1979
1980     GLXFBConfig* cfgs = NULL;
1981     int nCfgs = 0;
1982     UINT it;
1983     int fmt_id;
1984
1985     GLXFBConfig* cfgs_fmt = NULL;
1986     int nCfgs_fmt = 0;
1987     UINT it_fmt;
1988     int tmp_fmt_id;
1989     int tmp_vis_id;
1990
1991     int pfmt_it = 0;
1992     int offscreen_index = 1; /* Start at one because we always have a main visual at iPixelFormat=1 */
1993
1994     TRACE("(%p, %p, %p, %d, %p, %p): hackish\n", hdc, piAttribIList, pfAttribFList, nMaxFormats, piFormats, nNumFormats);
1995     if (NULL != pfAttribFList) {
1996         FIXME("unused pfAttribFList\n");
1997     }
1998
1999     nAttribs = ConvertAttribWGLtoGLX(piAttribIList, attribs, NULL);
2000     if (-1 == nAttribs) {
2001         WARN("Cannot convert WGL to GLX attributes\n");
2002         return GL_FALSE;
2003     }
2004     PUSH1(attribs, None);
2005
2006     /* Search for FB configurations matching the requirements in attribs */
2007     cfgs = pglXChooseFBConfig(gdi_display, DefaultScreen(gdi_display), attribs, &nCfgs);
2008     if (NULL == cfgs) {
2009         WARN("Compatible Pixel Format not found\n");
2010         return GL_FALSE;
2011     }
2012
2013     /* Get a list of all FB configurations */
2014     cfgs_fmt = pglXGetFBConfigs(gdi_display, DefaultScreen(gdi_display), &nCfgs_fmt);
2015     if (NULL == cfgs_fmt) {
2016         ERR("Failed to get All FB Configs\n");
2017         XFree(cfgs);
2018         return GL_FALSE;
2019     }
2020
2021     /* Loop through all matching formats and check if they are suitable.
2022     * Note that this function should at max return nMaxFormats different formats */
2023     for (it = 0; pfmt_it < nMaxFormats && it < nCfgs; ++it) {
2024         gl_test = pglXGetFBConfigAttrib(gdi_display, cfgs[it], GLX_FBCONFIG_ID, &fmt_id);
2025         if (gl_test) {
2026             ERR("Failed to retrieve FBCONFIG_ID from GLXFBConfig, expect problems.\n");
2027             continue;
2028         }
2029
2030         gl_test = pglXGetFBConfigAttrib(gdi_display, cfgs[it], GLX_VISUAL_ID, &tmp_vis_id);
2031         if (gl_test) {
2032             ERR("Failed to retrieve VISUAL_ID from GLXFBConfig, expect problems.\n");
2033             continue;
2034         }
2035
2036         /* When the visualid of the GLXFBConfig matches the one of the main visual we have found our
2037         * only supported onscreen rendering format. This format has a WGL index of 1. */
2038         if(tmp_vis_id == visualid) {
2039             piFormats[pfmt_it] = 1;
2040             ++pfmt_it;
2041             res = GL_TRUE;
2042             TRACE("Found compatible GLXFBConfig 0x%x with WGL index 1\n", fmt_id);
2043             continue;
2044         }
2045         /* Only continue with this loop for offscreen rendering formats (visualid = 0) */
2046         else if(tmp_vis_id != 0) {
2047             TRACE("Discarded GLXFBConfig %0x with VisualID %x because the visualid is not the same as our main visual (%lx)\n", fmt_id, tmp_vis_id, visualid);
2048             continue;
2049         }
2050
2051         /* Find the index of the found format in the whole format table */
2052         for (it_fmt = 0; it_fmt < nCfgs_fmt; ++it_fmt) {
2053             gl_test = pglXGetFBConfigAttrib(gdi_display, cfgs_fmt[it_fmt], GLX_FBCONFIG_ID, &tmp_fmt_id);
2054             if (gl_test) {
2055                 ERR("Failed to retrieve FBCONFIG_ID from GLXFBConfig, expect problems.\n");
2056                 continue;
2057             }
2058             gl_test = pglXGetFBConfigAttrib(gdi_display, cfgs[it], GLX_VISUAL_ID, &tmp_vis_id);
2059             if (gl_test) {
2060                 ERR("Failed to retrieve VISUAL_ID from GLXFBConfig, expect problems.\n");
2061                 continue;
2062             }
2063             /* The format of Wine's main visual is stored at index 1 of our WGL format table.
2064             * At higher indices we store offscreen rendering formats (visualid=0). Below we calculate
2065             * the index of the offscreen format. We do this by counting the number of offscreen formats
2066             * which we see until we reach our target format. */ 
2067             if(tmp_vis_id == 0)
2068                 offscreen_index++;
2069
2070             /* We have found the format in the table (note the format is offscreen) */
2071             if (fmt_id == tmp_fmt_id) {
2072                 int tmp;
2073
2074                 piFormats[pfmt_it] = offscreen_index + 1; /* Add 1 to get a one-based index */ 
2075                 ++pfmt_it;
2076                 pglXGetFBConfigAttrib(gdi_display, cfgs_fmt[it_fmt], GLX_ALPHA_SIZE, &tmp);
2077                 TRACE("ALPHA_SIZE of FBCONFIG_ID(%d/%d) found as '%d'\n", it_fmt + 1, nCfgs_fmt, tmp);
2078                 break;
2079             }
2080         }
2081         if (it_fmt == nCfgs_fmt) {
2082             ERR("Failed to get valid fmt for %d. Try next.\n", it);
2083             continue;
2084         }
2085         TRACE("at %d/%d found FBCONFIG_ID(%d/%d)\n", it + 1, nCfgs, piFormats[it], nCfgs_fmt);
2086     }
2087
2088     *nNumFormats = pfmt_it;
2089     /** free list */
2090     XFree(cfgs);
2091     XFree(cfgs_fmt);
2092     return GL_TRUE;
2093 }
2094
2095 /* WGL_ARB_pixel_format: wglGetPixelFormatAttribfvARB */
2096 GLboolean WINAPI X11DRV_wglGetPixelFormatAttribfvARB(HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, FLOAT *pfValues)
2097 {
2098     FIXME("(%p, %d, %d, %d, %p, %p): stub\n", hdc, iPixelFormat, iLayerPlane, nAttributes, piAttributes, pfValues);
2099     return GL_FALSE;
2100 }
2101
2102 /* WGL_ARB_pixel_format: wglGetPixelFormatAttribivARB */
2103 GLboolean WINAPI X11DRV_wglGetPixelFormatAttribivARB(HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, int *piValues)
2104 {
2105     UINT i;
2106     GLXFBConfig* cfgs = NULL;
2107     GLXFBConfig  curCfg = NULL;
2108     int nCfgs = 0;
2109     int hTest;
2110     int tmp;
2111     int curGLXAttr = 0;
2112     int nWGLFormats = 0;
2113     int fmt_index = 0;
2114
2115     TRACE("(%p, %d, %d, %d, %p, %p)\n", hdc, iPixelFormat, iLayerPlane, nAttributes, piAttributes, piValues);
2116
2117     if (0 < iLayerPlane) {
2118         FIXME("unsupported iLayerPlane(%d) > 0, returns FALSE\n", iLayerPlane);
2119         return GL_FALSE;
2120     }
2121
2122     cfgs = pglXGetFBConfigs(gdi_display, DefaultScreen(gdi_display), &nCfgs);
2123     if (NULL == cfgs) {
2124         ERR("no FB Configs found for display(%p)\n", gdi_display);
2125         return GL_FALSE;
2126     }
2127
2128     /* Convert the WGL pixelformat to a GLX one, if this fails then most likely the iPixelFormat isn't supoprted.
2129     * We don't have to fail yet as a program can specify an invaled iPixelFormat (lets say 0) if it wants to query
2130     * the number of supported WGL formats. Whether the iPixelFormat is valid is handled in the for-loop below. */
2131     if(!ConvertPixelFormatWGLtoGLX(gdi_display, iPixelFormat, &fmt_index, &nWGLFormats)) {
2132         ERR("Unable to convert iPixelFormat %d to a GLX one, expect problems!\n", iPixelFormat);
2133     }
2134
2135     for (i = 0; i < nAttributes; ++i) {
2136         const int curWGLAttr = piAttributes[i];
2137         TRACE("pAttr[%d] = %x\n", i, curWGLAttr);
2138
2139         switch (curWGLAttr) {
2140             case WGL_NUMBER_PIXEL_FORMATS_ARB:
2141                 piValues[i] = nWGLFormats; 
2142                 continue;
2143
2144             case WGL_SUPPORT_OPENGL_ARB:
2145                 piValues[i] = GL_TRUE; 
2146                 continue;
2147
2148             case WGL_ACCELERATION_ARB:
2149                 curGLXAttr = GLX_CONFIG_CAVEAT;
2150
2151                 if (nCfgs < iPixelFormat || 0 >= iPixelFormat) goto pix_error;
2152                     curCfg = cfgs[iPixelFormat - 1];
2153
2154                 hTest = pglXGetFBConfigAttrib(gdi_display, curCfg, curGLXAttr, &tmp);
2155                 if (hTest) goto get_error;
2156                 switch (tmp) {
2157                     case GLX_NONE: piValues[i] = WGL_FULL_ACCELERATION_ARB; break;
2158                     case GLX_SLOW_CONFIG: piValues[i] = WGL_NO_ACCELERATION_ARB; break;
2159                     case GLX_NON_CONFORMANT_CONFIG: piValues[i] = WGL_FULL_ACCELERATION_ARB; break;
2160                     default:
2161                         ERR("unexpected Config Caveat(%x)\n", tmp);
2162                         piValues[i] = WGL_NO_ACCELERATION_ARB;
2163                 }
2164                 continue;
2165
2166             case WGL_TRANSPARENT_ARB:
2167                 curGLXAttr = GLX_TRANSPARENT_TYPE;
2168                     /* Check if the format is supported by checking if iPixelFormat isn't larger than the max number of 
2169                      * supported WGLFormats and also check if the GLX fmt_index is valid. */
2170                 if((iPixelFormat > nWGLFormats) || (fmt_index > nCfgs)) goto pix_error;
2171                     curCfg = cfgs[fmt_index];
2172                 hTest = pglXGetFBConfigAttrib(gdi_display, curCfg, curGLXAttr, &tmp);
2173                 if (hTest) goto get_error;
2174                     piValues[i] = GL_FALSE;
2175                 if (GLX_NONE != tmp) piValues[i] = GL_TRUE;
2176                     continue;
2177
2178             case WGL_PIXEL_TYPE_ARB:
2179                 curGLXAttr = GLX_RENDER_TYPE;
2180                 /* Check if the format is supported by checking if iPixelFormat isn't larger than the max number of 
2181                 * supported WGLFormats and also check if the GLX fmt_index is valid. */
2182                 if((iPixelFormat > nWGLFormats) || (fmt_index > nCfgs)) goto pix_error;
2183                     curCfg = cfgs[fmt_index];
2184                 hTest = pglXGetFBConfigAttrib(gdi_display, curCfg, curGLXAttr, &tmp);
2185                 if (hTest) goto get_error;
2186                 TRACE("WGL_PIXEL_TYPE_ARB: GLX_RENDER_TYPE = 0x%x\n", tmp);
2187                 if      (tmp & GLX_RGBA_BIT)           { piValues[i] = WGL_TYPE_RGBA_ARB; }
2188                 else if (tmp & GLX_COLOR_INDEX_BIT)    { piValues[i] = WGL_TYPE_COLORINDEX_ARB; }
2189                 else if (tmp & GLX_RGBA_FLOAT_BIT)     { piValues[i] = WGL_TYPE_RGBA_FLOAT_ATI; }
2190                 else if (tmp & GLX_RGBA_FLOAT_ATI_BIT) { piValues[i] = WGL_TYPE_RGBA_FLOAT_ATI; }
2191                 else {
2192                     ERR("unexpected RenderType(%x)\n", tmp);
2193                     piValues[i] = WGL_TYPE_RGBA_ARB;
2194                 }
2195                 continue;
2196
2197             case WGL_COLOR_BITS_ARB:
2198                 /** see ConvertAttribWGLtoGLX for explain */
2199                 /* Check if the format is supported by checking if iPixelFormat isn't larger than the max number of 
2200                 * supported WGLFormats and also check if the GLX fmt_index is valid. */
2201                 if((iPixelFormat > nWGLFormats) || (fmt_index > nCfgs)) goto pix_error;
2202                     curCfg = cfgs[fmt_index];
2203                 hTest = pglXGetFBConfigAttrib(gdi_display, curCfg, GLX_BUFFER_SIZE, piValues + i);
2204                 if (hTest) goto get_error;
2205                 TRACE("WGL_COLOR_BITS_ARB: GLX_BUFFER_SIZE = %d\n", piValues[i]);
2206                 hTest = pglXGetFBConfigAttrib(gdi_display, curCfg, GLX_ALPHA_SIZE, &tmp);
2207                 if (hTest) goto get_error;
2208                 TRACE("WGL_COLOR_BITS_ARB: GLX_ALPHA_SIZE = %d\n", tmp);
2209                 piValues[i] = piValues[i] - tmp;
2210                 continue;
2211
2212             case WGL_BIND_TO_TEXTURE_RGB_ARB:
2213                 if (use_render_texture_ati) {
2214                     curGLXAttr = GLX_BIND_TO_TEXTURE_RGB_ATI;
2215                     break;
2216                 }
2217             case WGL_BIND_TO_TEXTURE_RGBA_ARB:
2218                 if (use_render_texture_ati) {
2219                     curGLXAttr = GLX_BIND_TO_TEXTURE_RGBA_ATI;
2220                     break;
2221                 }
2222                 if (!use_render_texture_emulation) {
2223                     piValues[i] = GL_FALSE;
2224                     continue;   
2225                 }
2226                 curGLXAttr = GLX_RENDER_TYPE;
2227                 /* Check if the format is supported by checking if iPixelFormat isn't larger than the max number of 
2228                  * supported WGLFormats and also check if the GLX fmt_index is valid. */
2229                 if((iPixelFormat > nWGLFormats) || (fmt_index > nCfgs)) goto pix_error;
2230                     curCfg = cfgs[fmt_index];
2231                 hTest = pglXGetFBConfigAttrib(gdi_display, curCfg, curGLXAttr, &tmp);
2232                 if (hTest) goto get_error;
2233                 if (GLX_COLOR_INDEX_BIT == tmp) {
2234                     piValues[i] = GL_FALSE;  
2235                     continue;
2236                 }
2237                 hTest = pglXGetFBConfigAttrib(gdi_display, curCfg, GLX_DRAWABLE_TYPE, &tmp);
2238                 if (hTest) goto get_error;
2239                     piValues[i] = (tmp & GLX_PBUFFER_BIT) ? GL_TRUE : GL_FALSE;
2240                 continue;
2241
2242             case WGL_BLUE_BITS_ARB:
2243                 curGLXAttr = GLX_BLUE_SIZE;
2244                 break;
2245             case WGL_RED_BITS_ARB:
2246                 curGLXAttr = GLX_RED_SIZE;
2247                 break;
2248             case WGL_GREEN_BITS_ARB:
2249                 curGLXAttr = GLX_GREEN_SIZE;
2250                 break;
2251             case WGL_ALPHA_BITS_ARB:
2252                 curGLXAttr = GLX_ALPHA_SIZE;
2253                 break;
2254             case WGL_DEPTH_BITS_ARB:
2255                 curGLXAttr = GLX_DEPTH_SIZE;
2256                 break;
2257             case WGL_STENCIL_BITS_ARB:
2258                 curGLXAttr = GLX_STENCIL_SIZE;
2259                 break;
2260             case WGL_DOUBLE_BUFFER_ARB:
2261                 curGLXAttr = GLX_DOUBLEBUFFER;
2262                 break;
2263             case WGL_STEREO_ARB:
2264                 curGLXAttr = GLX_STEREO;
2265                 break;
2266             case WGL_AUX_BUFFERS_ARB:
2267                 curGLXAttr = GLX_AUX_BUFFERS;
2268                 break;
2269
2270             case WGL_SUPPORT_GDI_ARB:
2271             case WGL_DRAW_TO_WINDOW_ARB:
2272             case WGL_DRAW_TO_BITMAP_ARB:
2273             case WGL_DRAW_TO_PBUFFER_ARB:
2274                 curGLXAttr = GLX_X_RENDERABLE;
2275                 break;
2276
2277             case WGL_PBUFFER_LARGEST_ARB:
2278                 curGLXAttr = GLX_LARGEST_PBUFFER;
2279                 break;
2280
2281             case WGL_SAMPLE_BUFFERS_ARB:
2282                 curGLXAttr = GLX_SAMPLE_BUFFERS_ARB;
2283                 break;
2284
2285             case WGL_SAMPLES_ARB:
2286                 curGLXAttr = GLX_SAMPLES_ARB;
2287                 break;
2288
2289             default:
2290                 FIXME("unsupported %x WGL Attribute\n", curWGLAttr);
2291         }
2292
2293         if (0 != curGLXAttr) {
2294             /* Check if the format is supported by checking if iPixelFormat isn't larger than the max number of 
2295             * supported WGLFormats and also check if the GLX fmt_index is valid. */
2296             if((iPixelFormat > 0) && ((iPixelFormat > nWGLFormats) || (fmt_index > nCfgs))) goto pix_error;
2297                 curCfg = cfgs[fmt_index];
2298             hTest = pglXGetFBConfigAttrib(gdi_display, curCfg, curGLXAttr, piValues + i);
2299             if (hTest) goto get_error;
2300         } else { 
2301             piValues[i] = GL_FALSE; 
2302         }
2303     }
2304     return GL_TRUE;
2305
2306 get_error:
2307     ERR("(%p): unexpected failure on GetFBConfigAttrib(%x) returns FALSE\n", hdc, curGLXAttr);
2308     XFree(cfgs);
2309     return GL_FALSE;
2310
2311 pix_error:
2312     ERR("(%p): unexpected iPixelFormat(%d) vs nFormats(%d), returns FALSE\n", hdc, iPixelFormat, nCfgs);
2313     XFree(cfgs);
2314     return GL_FALSE;
2315 }
2316
2317 /* WGL_ARB_render_texture: wglBindTexImageARB */
2318 static GLboolean WINAPI X11DRV_wglBindTexImageARB(HPBUFFERARB hPbuffer, int iBuffer)
2319 {
2320     Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer;
2321     TRACE("(%p, %d)\n", hPbuffer, iBuffer);
2322     if (NULL == object) {
2323         SetLastError(ERROR_INVALID_HANDLE);
2324         return GL_FALSE;
2325     }
2326     if (!object->use_render_texture) {
2327         SetLastError(ERROR_INVALID_HANDLE);
2328         return GL_FALSE;
2329     }
2330     if (!use_render_texture_ati && 1 == use_render_texture_emulation) {
2331         int do_init = 0;
2332         GLint prev_binded_tex;
2333         pglGetIntegerv(object->texture_target, &prev_binded_tex);
2334         if (NULL == object->render_ctx) {
2335             object->render_hdc = X11DRV_wglGetPbufferDCARB(hPbuffer);
2336             /* FIXME: This is routed through gdi32.dll to winex11.drv, replace this with GLX calls */
2337             object->render_ctx = wglCreateContext(object->render_hdc);
2338             do_init = 1;
2339         }
2340         object->prev_hdc = wglGetCurrentDC();
2341         object->prev_ctx = wglGetCurrentContext();
2342         /* FIXME: This is routed through gdi32.dll to winex11.drv, replace this with GLX calls */
2343         wglMakeCurrent(object->render_hdc, object->render_ctx);
2344         /*
2345         if (do_init) {
2346             glBindTexture(object->texture_target, object->texture);
2347             if (GL_RGBA == object->use_render_texture) {
2348                 glTexImage2D(object->texture_target, 0, GL_RGBA8, object->width, object->height, 0, GL_RGBA, GL_FLOAT, NULL);
2349             } else {
2350                 glTexImage2D(object->texture_target, 0, GL_RGB8, object->width, object->height, 0, GL_RGB, GL_FLOAT, NULL);
2351             }
2352         }
2353         */
2354         object->texture = prev_binded_tex;
2355         return GL_TRUE;
2356     }
2357     if (NULL != pglXBindTexImageARB) {
2358         return pglXBindTexImageARB(object->display, object->drawable, iBuffer);
2359     }
2360     return GL_FALSE;
2361 }
2362
2363 /* WGL_ARB_render_texture: wglReleaseTexImageARB */
2364 static GLboolean WINAPI X11DRV_wglReleaseTexImageARB(HPBUFFERARB hPbuffer, int iBuffer)
2365 {
2366     Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer;
2367     TRACE("(%p, %d)\n", hPbuffer, iBuffer);
2368     if (NULL == object) {
2369         SetLastError(ERROR_INVALID_HANDLE);
2370         return GL_FALSE;
2371     }
2372     if (!object->use_render_texture) {
2373         SetLastError(ERROR_INVALID_HANDLE);
2374         return GL_FALSE;
2375     }
2376     if (!use_render_texture_ati && 1 == use_render_texture_emulation) {
2377     /*
2378         GLint prev_binded_tex;
2379         glGetIntegerv(object->texture_target, &prev_binded_tex);    
2380         if (GL_TEXTURE_1D == object->texture_target) {
2381             glCopyTexSubImage1D(object->texture_target, object->texture_level, 0, 0, 0, object->width);
2382         } else {
2383             glCopyTexSubImage2D(object->texture_target, object->texture_level, 0, 0, 0, 0, object->width,       object->height);
2384         }
2385         glBindTexture(object->texture_target, prev_binded_tex);
2386         SwapBuffers(object->render_hdc);
2387         */
2388         pglBindTexture(object->texture_target, object->texture);
2389         if (GL_TEXTURE_1D == object->texture_target) {
2390             pglCopyTexSubImage1D(object->texture_target, object->texture_level, 0, 0, 0, object->width);
2391         } else {
2392             pglCopyTexSubImage2D(object->texture_target, object->texture_level, 0, 0, 0, 0, object->width, object->height);
2393         }
2394
2395         /* FIXME: This is routed through gdi32.dll to winex11.drv, replace this with GLX calls */
2396         wglMakeCurrent(object->prev_hdc, object->prev_ctx);
2397         return GL_TRUE;
2398     }
2399     if (NULL != pglXReleaseTexImageARB) {
2400         return pglXReleaseTexImageARB(object->display, object->drawable, iBuffer);
2401     }
2402     return GL_FALSE;
2403 }
2404
2405 /* WGL_EXT_extensions_string: wglGetExtensionsStringEXT */
2406 const char * WINAPI X11DRV_wglGetExtensionsStringEXT(void) {
2407     TRACE("() returning \"%s\"\n", WineGLInfo.wglExtensions);
2408     return WineGLInfo.wglExtensions;
2409 }
2410
2411 /* WGL_EXT_swap_control: wglGetSwapIntervalEXT */
2412 int WINAPI X11DRV_wglGetSwapIntervalEXT(VOID) {
2413     FIXME("(),stub!\n");
2414     return swap_interval;
2415 }
2416
2417 /* WGL_EXT_swap_control: wglSwapIntervalEXT */
2418 BOOL WINAPI X11DRV_wglSwapIntervalEXT(int interval) {
2419     TRACE("(%d)\n", interval);
2420     swap_interval = interval;
2421     if (NULL != pglXSwapIntervalSGI) {
2422         return 0 == pglXSwapIntervalSGI(interval);
2423     }
2424     WARN("(): GLX_SGI_swap_control extension seems not supported\n");
2425     return TRUE;
2426 }
2427
2428 /* Check if the supported GLX version matches requiredVersion */
2429 static BOOL glxRequireVersion(int requiredVersion)
2430 {
2431     /* Both requiredVersion and glXVersion[1] contains the minor GLX version */
2432     if(requiredVersion <= WineGLInfo.glxVersion[1])
2433         return TRUE;
2434
2435     return FALSE;
2436 }
2437
2438 static BOOL glxRequireExtension(const char *requiredExtension)
2439 {
2440     if (strstr(WineGLInfo.glxClientExtensions, requiredExtension) == NULL) {
2441         return FALSE;
2442     }
2443
2444     return TRUE;
2445 }
2446
2447 static BOOL register_extension(const WineGLExtension * ext)
2448 {
2449     int i;
2450
2451     assert( WineGLExtensionListSize < MAX_EXTENSIONS );
2452     WineGLExtensionList[WineGLExtensionListSize++] = ext;
2453
2454     strcat(WineGLInfo.wglExtensions, " ");
2455     strcat(WineGLInfo.wglExtensions, ext->extName);
2456
2457     TRACE("'%s'\n", ext->extName);
2458
2459     for (i = 0; ext->extEntryPoints[i].funcName; ++i)
2460         TRACE("    - '%s'\n", ext->extEntryPoints[i].funcName);
2461
2462     return TRUE;
2463 }
2464
2465 static const WineGLExtension WGL_internal_functions =
2466 {
2467   "",
2468   {
2469     { "wglGetIntegerv", X11DRV_wglGetIntegerv },
2470   }
2471 };
2472
2473
2474 static const WineGLExtension WGL_ARB_extensions_string =
2475 {
2476   "WGL_ARB_extensions_string",
2477   {
2478     { "wglGetExtensionsStringARB", X11DRV_wglGetExtensionsStringARB },
2479   }
2480 };
2481
2482 static const WineGLExtension WGL_ARB_make_current_read =
2483 {
2484   "WGL_ARB_make_current_read",
2485   {
2486     { "wglGetCurrentReadDCARB", X11DRV_wglGetCurrentReadDCARB },
2487     { "wglMakeContextCurrentARB", X11DRV_wglMakeContextCurrentARB },
2488   }
2489 };
2490
2491 static const WineGLExtension WGL_ARB_multisample =
2492 {
2493   "WGL_ARB_multisample",
2494 };
2495
2496 static const WineGLExtension WGL_ARB_pbuffer =
2497 {
2498   "WGL_ARB_pbuffer",
2499   {
2500     { "wglCreatePbufferARB", X11DRV_wglCreatePbufferARB },
2501     { "wglDestroyPbufferARB", X11DRV_wglDestroyPbufferARB },
2502     { "wglGetPbufferDCARB", X11DRV_wglGetPbufferDCARB },
2503     { "wglQueryPbufferARB", X11DRV_wglQueryPbufferARB },
2504     { "wglReleasePbufferDCARB", X11DRV_wglReleasePbufferDCARB },
2505     { "wglSetPbufferAttribARB", X11DRV_wglSetPbufferAttribARB },
2506   }
2507 };
2508
2509 static const WineGLExtension WGL_ARB_pixel_format =
2510 {
2511   "WGL_ARB_pixel_format",
2512   {
2513     { "wglChoosePixelFormatARB", X11DRV_wglChoosePixelFormatARB },
2514     { "wglGetPixelFormatAttribfvARB", X11DRV_wglGetPixelFormatAttribfvARB },
2515     { "wglGetPixelFormatAttribivARB", X11DRV_wglGetPixelFormatAttribivARB },
2516   }
2517 };
2518
2519 static const WineGLExtension WGL_ARB_render_texture =
2520 {
2521   "WGL_ARB_render_texture",
2522   {
2523     { "wglBindTexImageARB", X11DRV_wglBindTexImageARB },
2524     { "wglReleaseTexImageARB", X11DRV_wglReleaseTexImageARB },
2525   }
2526 };
2527
2528 static const WineGLExtension WGL_EXT_extensions_string =
2529 {
2530   "WGL_EXT_extensions_string",
2531   {
2532     { "wglGetExtensionsStringEXT", X11DRV_wglGetExtensionsStringEXT },
2533   }
2534 };
2535
2536 static const WineGLExtension WGL_EXT_swap_control =
2537 {
2538   "WGL_EXT_swap_control",
2539   {
2540     { "wglSwapIntervalEXT", X11DRV_wglSwapIntervalEXT },
2541     { "wglGetSwapIntervalEXT", X11DRV_wglGetSwapIntervalEXT },
2542   }
2543 };
2544
2545
2546 /**
2547  * X11DRV_WineGL_LoadExtensions
2548  */
2549 static void X11DRV_WineGL_LoadExtensions(void)
2550 {
2551     WineGLInfo.wglExtensions[0] = 0;
2552
2553     /* Load Wine internal functions */
2554     register_extension(&WGL_internal_functions);
2555
2556     /* ARB Extensions */
2557
2558     register_extension(&WGL_ARB_extensions_string);
2559
2560     if (glxRequireVersion(3))
2561         register_extension(&WGL_ARB_make_current_read);
2562
2563     if (glxRequireExtension("GLX_ARB_multisample"))
2564         register_extension(&WGL_ARB_multisample);
2565
2566     if (glxRequireVersion(3) && glxRequireExtension("GLX_SGIX_pbuffer"))
2567         register_extension(&WGL_ARB_pbuffer);
2568
2569     register_extension(&WGL_ARB_pixel_format);
2570
2571     if (glxRequireExtension("GLX_ATI_render_texture") ||
2572         glxRequireExtension("GLX_ARB_render_texture"))
2573         register_extension(&WGL_ARB_render_texture);
2574
2575     /* EXT Extensions */
2576
2577     register_extension(&WGL_EXT_extensions_string);
2578
2579     if (glxRequireExtension("GLX_SGI_swap_control"))
2580         register_extension(&WGL_EXT_swap_control);
2581 }
2582
2583
2584 static XID create_glxpixmap(X11DRV_PDEVICE *physDev)
2585 {
2586     GLXPixmap ret;
2587     XVisualInfo *vis;
2588     XVisualInfo template;
2589     int num;
2590
2591     wine_tsx11_lock();
2592
2593     /* Retrieve the visualid from our main visual which is the only visual we can use */
2594     template.visualid =  XVisualIDFromVisual(visual);
2595     vis = XGetVisualInfo(gdi_display, VisualIDMask, &template, &num);
2596
2597     ret = pglXCreateGLXPixmap(gdi_display, vis, physDev->bitmap->pixmap);
2598     XFree(vis);
2599     wine_tsx11_unlock(); 
2600     TRACE("return %lx\n", ret);
2601     return ret;
2602 }
2603
2604 Drawable get_glxdrawable(X11DRV_PDEVICE *physDev)
2605 {
2606     Drawable ret;
2607
2608     if(physDev->bitmap)
2609     {
2610         if (physDev->bitmap->hbitmap == BITMAP_stock_phys_bitmap.hbitmap)
2611             ret = physDev->drawable; /* PBuffer */
2612         else
2613         {
2614             if(!physDev->bitmap->glxpixmap)
2615                 physDev->bitmap->glxpixmap = create_glxpixmap(physDev);
2616             ret = physDev->bitmap->glxpixmap;
2617         }
2618     }
2619     else
2620         ret = physDev->drawable;
2621     return ret;
2622 }
2623
2624 BOOL destroy_glxpixmap(XID glxpixmap)
2625 {
2626     wine_tsx11_lock(); 
2627     pglXDestroyGLXPixmap(gdi_display, glxpixmap);
2628     wine_tsx11_unlock(); 
2629     return TRUE;
2630 }
2631
2632 /**
2633  * X11DRV_SwapBuffers
2634  *
2635  * Swap the buffers of this DC
2636  */
2637 BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev)
2638 {
2639   GLXDrawable drawable;
2640   if (!has_opengl()) {
2641     ERR("No libGL on this box - disabling OpenGL support !\n");
2642     return 0;
2643   }
2644   
2645   TRACE_(opengl)("(%p)\n", physDev);
2646
2647   drawable = get_glxdrawable(physDev);
2648   wine_tsx11_lock();
2649   pglXSwapBuffers(gdi_display, drawable);
2650   wine_tsx11_unlock();
2651
2652   /* FPS support */
2653   if (TRACE_ON(fps))
2654   {
2655       static long prev_time, frames;
2656
2657       DWORD time = GetTickCount();
2658       frames++;
2659       /* every 1.5 seconds */
2660       if (time - prev_time > 1500) {
2661           TRACE_(fps)("@ approx %.2ffps\n", 1000.0*frames/(time - prev_time));
2662           prev_time = time;
2663           frames = 0;
2664       }
2665   }
2666
2667   return TRUE;
2668 }
2669
2670 /***********************************************************************
2671  *              X11DRV_setup_opengl_visual
2672  *
2673  * Setup the default visual used for OpenGL and Direct3D, and the desktop
2674  * window (if it exists).  If OpenGL isn't available, the visual is simply
2675  * set to the default visual for the display
2676  */
2677 XVisualInfo *X11DRV_setup_opengl_visual( Display *display )
2678 {
2679     XVisualInfo *visual = NULL;
2680     /* In order to support OpenGL or D3D, we require a double-buffered visual and stencil buffer support, */
2681     int dblBuf[] = {GLX_RGBA,GLX_DEPTH_SIZE, 24, GLX_STENCIL_SIZE, 8, GLX_ALPHA_SIZE, 8, GLX_DOUBLEBUFFER, None};
2682     if (!has_opengl()) return NULL;
2683
2684     wine_tsx11_lock();
2685     visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf);
2686     wine_tsx11_unlock();
2687     if (visual == NULL) {
2688         /* fallback to 16 bits depth, no alpha */
2689         int dblBuf2[] = {GLX_RGBA,GLX_DEPTH_SIZE, 16, GLX_STENCIL_SIZE, 8, GLX_DOUBLEBUFFER, None};
2690         WARN("Failed to get a visual with at least 24 bits depth\n");
2691
2692         wine_tsx11_lock();
2693         visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf2);
2694         wine_tsx11_unlock();
2695         if (visual == NULL) {
2696             /* fallback to no stencil */
2697             int dblBuf2[] = {GLX_RGBA,GLX_DEPTH_SIZE, 16, GLX_DOUBLEBUFFER, None};
2698             WARN("Failed to get a visual with at least 8 bits of stencil\n");
2699
2700             wine_tsx11_lock();
2701             visual = pglXChooseVisual(display, DefaultScreen(display), dblBuf2);
2702             wine_tsx11_unlock();
2703             if (visual == NULL) {
2704                 /* This should only happen if we cannot find a match with a depth size 16 */
2705                 FIXME("Failed to find a suitable visual\n");
2706                 return visual;
2707             }
2708         }
2709     }
2710     TRACE("Visual ID %lx Chosen\n",visual->visualid);
2711     return visual;
2712 }
2713
2714 #else  /* no OpenGL includes */
2715
2716 void X11DRV_OpenGL_Init(Display *display)
2717 {
2718 }
2719
2720 /***********************************************************************
2721  *              ChoosePixelFormat (X11DRV.@)
2722  */
2723 int X11DRV_ChoosePixelFormat(X11DRV_PDEVICE *physDev,
2724                              const PIXELFORMATDESCRIPTOR *ppfd) {
2725   ERR("No OpenGL support compiled in.\n");
2726
2727   return 0;
2728 }
2729
2730 /***********************************************************************
2731  *              DescribePixelFormat (X11DRV.@)
2732  */
2733 int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
2734                                int iPixelFormat,
2735                                UINT nBytes,
2736                                PIXELFORMATDESCRIPTOR *ppfd) {
2737   ERR("No OpenGL support compiled in.\n");
2738
2739   return 0;
2740 }
2741
2742 /***********************************************************************
2743  *              GetPixelFormat (X11DRV.@)
2744  */
2745 int X11DRV_GetPixelFormat(X11DRV_PDEVICE *physDev) {
2746   ERR("No OpenGL support compiled in.\n");
2747
2748   return 0;
2749 }
2750
2751 /***********************************************************************
2752  *              SetPixelFormat (X11DRV.@)
2753  */
2754 BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
2755                            int iPixelFormat,
2756                            const PIXELFORMATDESCRIPTOR *ppfd) {
2757   ERR("No OpenGL support compiled in.\n");
2758
2759   return FALSE;
2760 }
2761
2762 /***********************************************************************
2763  *              SwapBuffers (X11DRV.@)
2764  */
2765 BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) {
2766   ERR_(opengl)("No OpenGL support compiled in.\n");
2767
2768   return FALSE;
2769 }
2770
2771 /* OpenGL32 wglCreateContext */
2772 HGLRC WINAPI X11DRV_wglCreateContext(HDC hdc) {
2773     ERR_(opengl)("No OpenGL support compiled in.\n");
2774     return NULL;
2775 }
2776
2777 /* OpenGL32 wglDeleteContext */
2778 BOOL WINAPI X11DRV_wglDeleteContext(HGLRC hglrc) {
2779     ERR_(opengl)("No OpenGL support compiled in.\n");
2780     return FALSE;
2781 }
2782
2783 /* OpenGL32: wglGetProcAddress */
2784 PROC X11DRV_wglGetProcAddress(LPCSTR lpszProc) {
2785     ERR_(opengl)("No OpenGL support compiled in.\n");
2786     return NULL;
2787 }
2788
2789 /* OpenGL32 wglMakeCurrent */
2790 BOOL WINAPI X11DRV_wglMakeCurrent(HDC hdc, HGLRC hglrc) {
2791     ERR_(opengl)("No OpenGL support compiled in.\n");
2792     return FALSE;
2793 }
2794
2795 /* OpenGL32 wglShaderLists */
2796 BOOL WINAPI X11DRV_wglShareLists(HGLRC hglrc1, HGLRC hglrc2) {
2797     ERR_(opengl)("No OpenGL support compiled in.\n");
2798     return FALSE;
2799 }
2800
2801 /* OpenGL32 wglUseFontBitmapsA */
2802 BOOL WINAPI X11DRV_wglUseFontBitmapsA(HDC hdc, DWORD first, DWORD count, DWORD listBase)
2803 {
2804     ERR_(opengl)("No OpenGL support compiled in.\n");
2805     return FALSE;
2806 }
2807
2808 /* OpenGL32 wglUseFontBitmapsW */
2809 BOOL WINAPI X11DRV_wglUseFontBitmapsW(HDC hdc, DWORD first, DWORD count, DWORD listBase)
2810 {
2811     ERR_(opengl)("No OpenGL support compiled in.\n");
2812     return FALSE;
2813 }
2814
2815 XVisualInfo *X11DRV_setup_opengl_visual( Display *display )
2816 {
2817   return NULL;
2818 }
2819
2820 Drawable get_glxdrawable(X11DRV_PDEVICE *physDev)
2821 {
2822     return 0;
2823 }
2824
2825 BOOL destroy_glxpixmap(XID glxpixmap)
2826 {
2827     return FALSE;
2828 }
2829
2830 #endif /* defined(HAVE_OPENGL) */