1 /* Window-specific OpenGL functions implementation.
3 * Copyright (c) 1999 Lionel Ulmer
4 * Copyright (c) 2005 Raphael Junqueira
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
37 #include "opengl_ext.h"
43 #include "wine/library.h"
44 #include "wine/debug.h"
46 WINE_DEFAULT_DEBUG_CHANNEL(wgl);
47 WINE_DECLARE_DEBUG_CHANNEL(opengl);
49 typedef struct wine_wgl_s {
50 PROC WINAPI (*p_wglGetProcAddress)(LPCSTR lpszProc);
52 void WINAPI (*p_wglDisable)(GLenum cap);
53 void WINAPI (*p_wglEnable)(GLenum cap);
54 void WINAPI (*p_wglGetIntegerv)(GLenum pname, GLint* params);
55 GLboolean WINAPI (*p_wglIsEnabled)(GLenum cap);
56 void WINAPI (*p_wglScissor)(GLint x, GLint y, GLsizei width, GLsizei height);
57 void WINAPI (*p_wglViewport)(GLint x, GLint y, GLsizei width, GLsizei height);
60 /** global wgl object */
61 static wine_wgl_t wine_wgl;
63 /* x11drv GDI escapes */
64 #define X11DRV_ESCAPE 6789
65 enum x11drv_escape_codes
67 X11DRV_GET_DISPLAY, /* get X11 display for a DC */
68 X11DRV_GET_DRAWABLE, /* get current drawable for a DC */
69 X11DRV_GET_FONT, /* get current X font for a DC */
70 X11DRV_SET_DRAWABLE, /* set current drawable for a DC */
71 X11DRV_START_EXPOSURES, /* start graphics exposures */
72 X11DRV_END_EXPOSURES, /* end graphics exposures */
73 X11DRV_GET_DCE, /* get the DCE pointer */
74 X11DRV_SET_DCE, /* set the DCE pointer */
75 X11DRV_GET_GLX_DRAWABLE, /* get current glx drawable for a DC */
76 X11DRV_SYNC_PIXMAP /* sync the dibsection to its pixmap */
79 void (*wine_tsx11_lock_ptr)(void) = NULL;
80 void (*wine_tsx11_unlock_ptr)(void) = NULL;
82 static HMODULE opengl32_handle;
84 static char internal_gl_disabled_extensions[512];
85 static char* internal_gl_extensions = NULL;
87 typedef struct wine_glcontext {
93 /* ... more stuff here */
98 Wine_GLContext *curctx = (Wine_GLContext *) NtCurrentTeb()->glContext;
100 if (curctx && curctx->do_escape)
102 enum x11drv_escape_codes escape = X11DRV_SYNC_PIXMAP;
103 ExtEscape(curctx->hdc, X11DRV_ESCAPE, sizeof(escape), (LPCSTR)&escape, 0, NULL);
106 wine_tsx11_lock_ptr();
110 const GLubyte * WINAPI wine_glGetString( GLenum name );
112 /***********************************************************************
113 * wglCreateLayerContext (OPENGL32.@)
115 HGLRC WINAPI wglCreateLayerContext(HDC hdc,
117 TRACE("(%p,%d)\n", hdc, iLayerPlane);
119 if (iLayerPlane == 0) {
120 return wglCreateContext(hdc);
122 FIXME(" no handler for layer %d\n", iLayerPlane);
127 /***********************************************************************
128 * wglCopyContext (OPENGL32.@)
130 BOOL WINAPI wglCopyContext(HGLRC hglrcSrc,
133 FIXME("(%p,%p,%d)\n", hglrcSrc, hglrcDst, mask);
138 /***********************************************************************
139 * wglDescribeLayerPlane (OPENGL32.@)
141 BOOL WINAPI wglDescribeLayerPlane(HDC hdc,
145 LPLAYERPLANEDESCRIPTOR plpd) {
146 FIXME("(%p,%d,%d,%d,%p)\n", hdc, iPixelFormat, iLayerPlane, nBytes, plpd);
151 /***********************************************************************
152 * wglGetLayerPaletteEntries (OPENGL32.@)
154 int WINAPI wglGetLayerPaletteEntries(HDC hdc,
158 const COLORREF *pcr) {
159 FIXME("(): stub !\n");
164 static int compar(const void *elt_a, const void *elt_b) {
165 return strcmp(((const OpenGL_extension *) elt_a)->name,
166 ((const OpenGL_extension *) elt_b)->name);
169 /* Check if a GL extension is supported */
170 static BOOL is_extension_supported(const char* extension)
172 const char *gl_ext_string = (const char*)wine_glGetString(GL_EXTENSIONS);
174 TRACE("Checking for extension '%s'\n", extension);
177 ERR("No OpenGL extensions found, check if your OpenGL setup is correct!\n");
181 /* We use the GetProcAddress function from the display driver to retrieve function pointers
182 * for OpenGL and WGL extensions. In case of winex11.drv the OpenGL extension lookup is done
183 * using glXGetProcAddress. This function is quite unreliable in the sense that its specs don't
184 * require the function to return NULL when a extension isn't found. For this reason we check
185 * if the OpenGL extension required for the function we are looking up is supported. */
187 /* Check if the extension is part of the GL extension string to see if it is supported. */
188 if(strstr(gl_ext_string, extension) != NULL)
191 /* In general an OpenGL function starts as an ARB/EXT extension and at some stage
192 * it becomes part of the core OpenGL library and can be reached without the ARB/EXT
193 * suffix as well. In the extension table, these functions contain GL_VERSION_major_minor.
194 * Check if we are searching for a core GL function */
195 if(strncmp(extension, "GL_VERSION_", 11) == 0)
197 const GLubyte *gl_version = glGetString(GL_VERSION);
198 const char *version = extension + 11; /* Move past 'GL_VERSION_' */
201 ERR("Error no OpenGL version found,\n");
205 /* Compare the major/minor version numbers of the native OpenGL library and what is required by the function.
206 * The gl_version string is guaranteed to have at least a major/minor and sometimes it has a release number as well. */
207 if( (gl_version[0] >= version[0]) || ((gl_version[0] == version[0]) && (gl_version[2] >= version[2])) ) {
210 WARN("The function requires OpenGL version '%c.%c' while your drivers only provide '%c.%c'\n", version[0], version[2], gl_version[0], gl_version[2]);
216 /***********************************************************************
217 * wglGetProcAddress (OPENGL32.@)
219 PROC WINAPI wglGetProcAddress(LPCSTR lpszProc) {
221 OpenGL_extension ext;
222 const OpenGL_extension *ext_ret;
224 TRACE("(%s)\n", lpszProc);
229 /* First, look if it's not already defined in the 'standard' OpenGL functions */
230 if ((local_func = GetProcAddress(opengl32_handle, lpszProc)) != NULL) {
231 TRACE(" found function in 'standard' OpenGL functions (%p)\n", local_func);
235 /* After that, search in the thunks to find the real name of the extension */
237 ext_ret = (const OpenGL_extension *) bsearch(&ext, extension_registry,
238 extension_registry_size, sizeof(OpenGL_extension), compar);
240 /* If nothing was found, we are looking for a WGL extension or an unknown GL extension. */
241 if (ext_ret == NULL) {
242 /* If the function name starts with a w it is a WGL extension */
243 if(lpszProc[0] == 'w')
244 return wine_wgl.p_wglGetProcAddress(lpszProc);
246 /* We are dealing with an unknown GL extension. */
247 WARN("Extension '%s' not defined in opengl32.dll's function table!\n", lpszProc);
249 } else { /* We are looking for an OpenGL extension */
251 /* Check if the GL extension required by the function is available */
252 if(!is_extension_supported(ext_ret->extension)) {
253 WARN("Extension '%s' required by function '%s' not supported!\n", ext_ret->extension, lpszProc);
257 local_func = wine_wgl.p_wglGetProcAddress(ext_ret->name);
259 /* After that, look at the extensions defined in the Linux OpenGL library */
260 if (local_func == NULL) {
264 /* Remove the 3 last letters (EXT, ARB, ...).
266 I know that some extensions have more than 3 letters (MESA, NV,
267 INTEL, ...), but this is only a stop-gap measure to fix buggy
268 OpenGL drivers (moreover, it is only useful for old 1.0 apps
269 that query the glBindTextureEXT extension).
271 memcpy(buf, ext_ret->name, strlen(ext_ret->name) - 3);
272 buf[strlen(ext_ret->name) - 3] = '\0';
273 TRACE(" extension not found in the Linux OpenGL library, checking against libGL bug with %s..\n", buf);
275 ret = GetProcAddress(opengl32_handle, buf);
277 TRACE(" found function in main OpenGL library (%p) !\n", ret);
279 WARN("Did not find function %s (%s) in your OpenGL library !\n", lpszProc, ext_ret->name);
284 TRACE(" returning function (%p)\n", ext_ret->func);
285 extension_funcs[ext_ret - extension_registry] = local_func;
287 return ext_ret->func;
292 /***********************************************************************
293 * wglRealizeLayerPalette (OPENGL32.@)
295 BOOL WINAPI wglRealizeLayerPalette(HDC hdc,
303 /***********************************************************************
304 * wglSetLayerPaletteEntries (OPENGL32.@)
306 int WINAPI wglSetLayerPaletteEntries(HDC hdc,
310 const COLORREF *pcr) {
311 FIXME("(): stub !\n");
316 /***********************************************************************
317 * wglSwapLayerBuffers (OPENGL32.@)
319 BOOL WINAPI wglSwapLayerBuffers(HDC hdc,
321 TRACE_(opengl)("(%p, %08x)\n", hdc, fuPlanes);
323 if (fuPlanes & WGL_SWAP_MAIN_PLANE) {
324 if (!SwapBuffers(hdc)) return FALSE;
325 fuPlanes &= ~WGL_SWAP_MAIN_PLANE;
329 WARN("Following layers unhandled : %08x\n", fuPlanes);
337 static void fixed_to_double(POINTFX fixed, UINT em_size, GLdouble vertex[3])
339 vertex[0] = (fixed.x.value + (GLdouble)fixed.x.fract / (1 << 16)) / em_size;
340 vertex[1] = (fixed.y.value + (GLdouble)fixed.y.fract / (1 << 16)) / em_size;
344 static void tess_callback_vertex(GLvoid *vertex)
346 GLdouble *dbl = vertex;
347 TRACE("%f, %f, %f\n", dbl[0], dbl[1], dbl[2]);
351 static void tess_callback_begin(GLenum which)
353 TRACE("%d\n", which);
357 static void tess_callback_end(void)
363 /***********************************************************************
364 * wglUseFontOutlines_common
366 BOOL WINAPI wglUseFontOutlines_common(HDC hdc,
373 LPGLYPHMETRICSFLOAT lpgmf,
377 const MAT2 identity = {{0,1},{0,0},{0,0},{0,1}};
380 HFONT old_font, unscaled_font;
384 TRACE("(%p, %d, %d, %d, %f, %f, %d, %p, %s)\n", hdc, first, count,
385 listBase, deviation, extrusion, format, lpgmf, unicode ? "W" : "A");
392 gluTessCallback(tess, GLU_TESS_VERTEX, (_GLUfuncptr)tess_callback_vertex);
393 gluTessCallback(tess, GLU_TESS_BEGIN, (_GLUfuncptr)tess_callback_begin);
394 gluTessCallback(tess, GLU_TESS_END, tess_callback_end);
398 if(!tess) return FALSE;
400 GetObjectW(GetCurrentObject(hdc, OBJ_FONT), sizeof(lf), &lf);
401 rc.left = rc.right = rc.bottom = 0;
403 DPtoLP(hdc, (POINT*)&rc, 2);
404 lf.lfHeight = -abs(rc.top - rc.bottom);
405 lf.lfOrientation = lf.lfEscapement = 0;
406 unscaled_font = CreateFontIndirectW(&lf);
407 old_font = SelectObject(hdc, unscaled_font);
409 for (glyph = first; glyph < first + count; glyph++)
414 TTPOLYGONHEADER *pph;
419 needed = GetGlyphOutlineW(hdc, glyph, GGO_NATIVE, &gm, 0, NULL, &identity);
421 needed = GetGlyphOutlineA(hdc, glyph, GGO_NATIVE, &gm, 0, NULL, &identity);
423 if(needed == GDI_ERROR)
426 buf = HeapAlloc(GetProcessHeap(), 0, needed);
427 vertices = HeapAlloc(GetProcessHeap(), 0, needed / sizeof(POINTFX) * 3 * sizeof(GLdouble));
430 GetGlyphOutlineW(hdc, glyph, GGO_NATIVE, &gm, needed, buf, &identity);
432 GetGlyphOutlineA(hdc, glyph, GGO_NATIVE, &gm, needed, buf, &identity);
434 TRACE("glyph %d\n", glyph);
438 lpgmf->gmfBlackBoxX = (float)gm.gmBlackBoxX / em_size;
439 lpgmf->gmfBlackBoxY = (float)gm.gmBlackBoxY / em_size;
440 lpgmf->gmfptGlyphOrigin.x = (float)gm.gmptGlyphOrigin.x / em_size;
441 lpgmf->gmfptGlyphOrigin.y = (float)gm.gmptGlyphOrigin.y / em_size;
442 lpgmf->gmfCellIncX = (float)gm.gmCellIncX / em_size;
443 lpgmf->gmfCellIncY = (float)gm.gmCellIncY / em_size;
445 TRACE("%fx%f at %f,%f inc %f,%f\n", lpgmf->gmfBlackBoxX, lpgmf->gmfBlackBoxY,
446 lpgmf->gmfptGlyphOrigin.x, lpgmf->gmfptGlyphOrigin.y, lpgmf->gmfCellIncX, lpgmf->gmfCellIncY);
451 glNewList(listBase++, GL_COMPILE);
452 gluTessBeginPolygon(tess, NULL);
454 pph = (TTPOLYGONHEADER*)buf;
455 while((BYTE*)pph < buf + needed)
457 TRACE("\tstart %d, %d\n", pph->pfxStart.x.value, pph->pfxStart.y.value);
459 gluTessBeginContour(tess);
461 fixed_to_double(pph->pfxStart, em_size, vertices);
462 gluTessVertex(tess, vertices, vertices);
465 ppc = (TTPOLYCURVE*)((char*)pph + sizeof(*pph));
466 while((char*)ppc < (char*)pph + pph->cb)
472 for(i = 0; i < ppc->cpfx; i++)
474 TRACE("\t\tline to %d, %d\n", ppc->apfx[i].x.value, ppc->apfx[i].y.value);
475 fixed_to_double(ppc->apfx[i], em_size, vertices);
476 gluTessVertex(tess, vertices, vertices);
481 case TT_PRIM_QSPLINE:
482 for(i = 0; i < ppc->cpfx/2; i++)
484 /* FIXME just connecting the control points for now */
485 TRACE("\t\tcurve %d,%d %d,%d\n",
486 ppc->apfx[i * 2].x.value, ppc->apfx[i * 3].y.value,
487 ppc->apfx[i * 2 + 1].x.value, ppc->apfx[i * 3 + 1].y.value);
488 fixed_to_double(ppc->apfx[i * 2], em_size, vertices);
489 gluTessVertex(tess, vertices, vertices);
491 fixed_to_double(ppc->apfx[i * 2 + 1], em_size, vertices);
492 gluTessVertex(tess, vertices, vertices);
497 ERR("\t\tcurve type = %d\n", ppc->wType);
498 gluTessEndContour(tess);
502 ppc = (TTPOLYCURVE*)((char*)ppc + sizeof(*ppc) +
503 (ppc->cpfx - 1) * sizeof(POINTFX));
505 gluTessEndContour(tess);
506 pph = (TTPOLYGONHEADER*)((char*)pph + pph->cb);
510 gluTessEndPolygon(tess);
511 glTranslated((GLdouble)gm.gmCellIncX / em_size, (GLdouble)gm.gmCellIncY / em_size, 0.0);
514 HeapFree(GetProcessHeap(), 0, buf);
515 HeapFree(GetProcessHeap(), 0, vertices);
519 DeleteObject(SelectObject(hdc, old_font));
525 #else /* HAVE_GL_GLU_H */
527 BOOL WINAPI wglUseFontOutlines_common(HDC hdc,
534 LPGLYPHMETRICSFLOAT lpgmf,
537 FIXME("Unable to compile in wglUseFontOutlines support without GL/glu.h\n");
541 #endif /* HAVE_GL_GLU_H */
543 /***********************************************************************
544 * wglUseFontOutlinesA (OPENGL32.@)
546 BOOL WINAPI wglUseFontOutlinesA(HDC hdc,
553 LPGLYPHMETRICSFLOAT lpgmf)
555 return wglUseFontOutlines_common(hdc, first, count, listBase, deviation, extrusion, format, lpgmf, FALSE);
558 /***********************************************************************
559 * wglUseFontOutlinesW (OPENGL32.@)
561 BOOL WINAPI wglUseFontOutlinesW(HDC hdc,
568 LPGLYPHMETRICSFLOAT lpgmf)
570 return wglUseFontOutlines_common(hdc, first, count, listBase, deviation, extrusion, format, lpgmf, TRUE);
573 /***********************************************************************
574 * glEnable (OPENGL32.@)
576 void WINAPI wine_glEnable( GLenum cap )
578 TRACE("(%d)\n", cap );
579 wine_wgl.p_wglEnable(cap);
582 /***********************************************************************
583 * glIsEnabled (OPENGL32.@)
585 GLboolean WINAPI wine_glIsEnabled( GLenum cap )
587 TRACE("(%d)\n", cap );
588 return wine_wgl.p_wglIsEnabled(cap);
591 /***********************************************************************
592 * glDisable (OPENGL32.@)
594 void WINAPI wine_glDisable( GLenum cap )
596 TRACE("(%d)\n", cap );
597 wine_wgl.p_wglDisable(cap);
600 /***********************************************************************
601 * glScissor (OPENGL32.@)
603 void WINAPI wine_glScissor( GLint x, GLint y, GLsizei width, GLsizei height )
605 TRACE("(%d, %d, %d, %d)\n", x, y, width, height );
606 wine_wgl.p_wglScissor(x, y, width, height);
609 /***********************************************************************
610 * glViewport (OPENGL32.@)
612 void WINAPI wine_glViewport( GLint x, GLint y, GLsizei width, GLsizei height )
614 TRACE("(%d, %d, %d, %d)\n", x, y, width, height );
615 wine_wgl.p_wglViewport(x, y, width, height);
618 /***********************************************************************
619 * glGetString (OPENGL32.@)
621 const GLubyte * WINAPI wine_glGetString( GLenum name )
624 const char* GL_Extensions = NULL;
626 if (GL_EXTENSIONS != name) {
628 ret = glGetString(name);
633 if (NULL == internal_gl_extensions) {
635 GL_Extensions = (const char *) glGetString(GL_EXTENSIONS);
639 size_t len = strlen(GL_Extensions);
640 internal_gl_extensions = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len + 2);
642 TRACE("GL_EXTENSIONS reported:\n");
643 while (*GL_Extensions != 0x00) {
644 const char* Start = GL_Extensions;
647 while (*GL_Extensions != ' ' && *GL_Extensions != 0x00) {
650 memcpy(ThisExtn, Start, (GL_Extensions - Start));
651 ThisExtn[GL_Extensions - Start] = 0;
652 TRACE("- %s:", ThisExtn);
654 /* test if supported API is disabled by config */
655 if (NULL == strstr(internal_gl_disabled_extensions, ThisExtn)) {
656 strcat(internal_gl_extensions, " ");
657 strcat(internal_gl_extensions, ThisExtn);
660 TRACE(" deactived (by config)\n");
663 if (*GL_Extensions == ' ') GL_Extensions++;
668 return (const GLubyte *) internal_gl_extensions;
671 /***********************************************************************
672 * glGetIntegerv (OPENGL32.@)
674 void WINAPI wine_glGetIntegerv( GLenum pname, GLint* params )
676 wine_wgl.p_wglGetIntegerv(pname, params);
680 /* No need to load any other libraries as according to the ABI, libGL should be self-sufficient and
681 include all dependencies
684 #define SONAME_LIBGL "libGL.so"
687 /* This is for brain-dead applications that use OpenGL functions before even
688 creating a rendering context.... */
689 static BOOL process_attach(void)
691 HMODULE mod_x11, mod_gdi32;
692 DWORD size = sizeof(internal_gl_disabled_extensions);
695 GetDesktopWindow(); /* make sure winex11 is loaded (FIXME) */
696 mod_x11 = GetModuleHandleA( "winex11.drv" );
697 mod_gdi32 = GetModuleHandleA( "gdi32.dll" );
699 if (!mod_x11 || !mod_gdi32)
701 ERR("X11DRV or GDI32 not loaded. Cannot create default context.\n");
705 wine_tsx11_lock_ptr = (void *)GetProcAddress( mod_x11, "wine_tsx11_lock" );
706 wine_tsx11_unlock_ptr = (void *)GetProcAddress( mod_x11, "wine_tsx11_unlock" );
708 wine_wgl.p_wglGetProcAddress = (void *)GetProcAddress(mod_gdi32, "wglGetProcAddress");
710 /* Interal WGL function */
711 wine_wgl.p_wglDisable = (void *)wine_wgl.p_wglGetProcAddress("wglDisable");
712 wine_wgl.p_wglEnable = (void *)wine_wgl.p_wglGetProcAddress("wglEnable");
713 wine_wgl.p_wglGetIntegerv = (void *)wine_wgl.p_wglGetProcAddress("wglGetIntegerv");
714 wine_wgl.p_wglIsEnabled = (void *)wine_wgl.p_wglGetProcAddress("wglIsEnabled");
715 wine_wgl.p_wglScissor = (void *)wine_wgl.p_wglGetProcAddress("wglScissor");
716 wine_wgl.p_wglViewport = (void *)wine_wgl.p_wglGetProcAddress("wglViewport");
718 internal_gl_disabled_extensions[0] = 0;
719 if (!RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\OpenGL", &hkey)) {
720 if (!RegQueryValueExA( hkey, "DisabledExtensions", 0, NULL, (LPBYTE)internal_gl_disabled_extensions, &size)) {
721 TRACE("found DisabledExtensions=\"%s\"\n", internal_gl_disabled_extensions);
730 /**********************************************************************/
732 static void process_detach(void)
734 HeapFree(GetProcessHeap(), 0, internal_gl_extensions);
737 /***********************************************************************
738 * OpenGL initialisation routine
740 BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
744 case DLL_PROCESS_ATTACH:
745 opengl32_handle = hinst;
746 DisableThreadLibraryCalls(hinst);
747 return process_attach();
748 case DLL_PROCESS_DETACH: