TESTING -- override pthreads to fix gstreamer v5
[wine/multimedia.git] / dlls / opengl32 / wgl.c
blobf3f78efc7697daba0c9e795bcec62d9625945c14
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
21 #include "config.h"
22 #include "wine/port.h"
24 #include <stdarg.h>
25 #include <stdlib.h>
26 #include <string.h>
28 #include "opengl_ext.h"
29 #include "windef.h"
30 #include "winbase.h"
31 #include "winuser.h"
32 #include "winreg.h"
33 #include "wingdi.h"
34 #include "winternl.h"
35 #include "winnt.h"
37 #define WGL_WGLEXT_PROTOTYPES
38 #include "wine/wglext.h"
39 #include "wine/gdi_driver.h"
40 #include "wine/wgl_driver.h"
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(wgl);
44 WINE_DECLARE_DEBUG_CHANNEL(fps);
46 extern struct opengl_funcs null_opengl_funcs;
48 /* handle management */
50 #define MAX_WGL_HANDLES 1024
52 enum wgl_handle_type
54 HANDLE_PBUFFER = 0 << 12,
55 HANDLE_CONTEXT = 1 << 12,
56 HANDLE_CONTEXT_V3 = 3 << 12,
57 HANDLE_TYPE_MASK = 15 << 12
60 struct opengl_context
62 DWORD tid; /* thread that the context is current in */
63 HDC draw_dc; /* current drawing DC */
64 HDC read_dc; /* current reading DC */
65 GLubyte *extensions; /* extension string */
66 GLuint *disabled_exts; /* indices of disabled extensions */
67 struct wgl_context *drv_ctx; /* driver context */
70 struct wgl_handle
72 UINT handle;
73 struct opengl_funcs *funcs;
74 union
76 struct opengl_context *context; /* for HANDLE_CONTEXT */
77 struct wgl_pbuffer *pbuffer; /* for HANDLE_PBUFFER */
78 struct wgl_handle *next; /* for free handles */
79 } u;
82 static struct wgl_handle wgl_handles[MAX_WGL_HANDLES];
83 static struct wgl_handle *next_free;
84 static unsigned int handle_count;
86 static CRITICAL_SECTION wgl_section;
87 static CRITICAL_SECTION_DEBUG critsect_debug =
89 0, 0, &wgl_section,
90 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
91 0, 0, { (DWORD_PTR)(__FILE__ ": wgl_section") }
93 static CRITICAL_SECTION wgl_section = { &critsect_debug, -1, 0, 0, 0, 0 };
95 static const MAT2 identity = { {0,1},{0,0},{0,0},{0,1} };
97 static inline struct opengl_funcs *get_dc_funcs( HDC hdc )
99 struct opengl_funcs *funcs = __wine_get_wgl_driver( hdc, WINE_WGL_DRIVER_VERSION );
100 if (funcs == (void *)-1) funcs = &null_opengl_funcs;
101 return funcs;
104 static inline HANDLE next_handle( struct wgl_handle *ptr, enum wgl_handle_type type )
106 WORD generation = HIWORD( ptr->handle ) + 1;
107 if (!generation) generation++;
108 ptr->handle = MAKELONG( ptr - wgl_handles, generation ) | type;
109 return ULongToHandle( ptr->handle );
112 /* the current context is assumed valid and doesn't need locking */
113 static inline struct wgl_handle *get_current_context_ptr(void)
115 if (!NtCurrentTeb()->glCurrentRC) return NULL;
116 return &wgl_handles[LOWORD(NtCurrentTeb()->glCurrentRC) & ~HANDLE_TYPE_MASK];
119 static struct wgl_handle *get_handle_ptr( HANDLE handle, enum wgl_handle_type type )
121 unsigned int index = LOWORD( handle ) & ~HANDLE_TYPE_MASK;
123 EnterCriticalSection( &wgl_section );
124 if (index < handle_count && ULongToHandle(wgl_handles[index].handle) == handle)
125 return &wgl_handles[index];
127 LeaveCriticalSection( &wgl_section );
128 SetLastError( ERROR_INVALID_HANDLE );
129 return NULL;
132 static void release_handle_ptr( struct wgl_handle *ptr )
134 if (ptr) LeaveCriticalSection( &wgl_section );
137 static HANDLE alloc_handle( enum wgl_handle_type type, struct opengl_funcs *funcs, void *user_ptr )
139 HANDLE handle = 0;
140 struct wgl_handle *ptr = NULL;
142 EnterCriticalSection( &wgl_section );
143 if ((ptr = next_free))
144 next_free = next_free->u.next;
145 else if (handle_count < MAX_WGL_HANDLES)
146 ptr = &wgl_handles[handle_count++];
148 if (ptr)
150 ptr->funcs = funcs;
151 ptr->u.context = user_ptr;
152 handle = next_handle( ptr, type );
154 else SetLastError( ERROR_NOT_ENOUGH_MEMORY );
155 LeaveCriticalSection( &wgl_section );
156 return handle;
159 static void free_handle_ptr( struct wgl_handle *ptr )
161 ptr->handle |= 0xffff;
162 ptr->u.next = next_free;
163 ptr->funcs = NULL;
164 next_free = ptr;
165 LeaveCriticalSection( &wgl_section );
168 static inline enum wgl_handle_type get_current_context_type(void)
170 if (!NtCurrentTeb()->glCurrentRC) return HANDLE_CONTEXT;
171 return LOWORD(NtCurrentTeb()->glCurrentRC) & HANDLE_TYPE_MASK;
174 /***********************************************************************
175 * wglCopyContext (OPENGL32.@)
177 BOOL WINAPI wglCopyContext(HGLRC hglrcSrc, HGLRC hglrcDst, UINT mask)
179 struct wgl_handle *src, *dst;
180 BOOL ret = FALSE;
182 if (!(src = get_handle_ptr( hglrcSrc, HANDLE_CONTEXT ))) return FALSE;
183 if ((dst = get_handle_ptr( hglrcDst, HANDLE_CONTEXT )))
185 if (src->funcs != dst->funcs) SetLastError( ERROR_INVALID_HANDLE );
186 else ret = src->funcs->wgl.p_wglCopyContext( src->u.context->drv_ctx,
187 dst->u.context->drv_ctx, mask );
189 release_handle_ptr( dst );
190 release_handle_ptr( src );
191 return ret;
194 /***********************************************************************
195 * wglDeleteContext (OPENGL32.@)
197 BOOL WINAPI wglDeleteContext(HGLRC hglrc)
199 struct wgl_handle *ptr = get_handle_ptr( hglrc, HANDLE_CONTEXT );
201 if (!ptr) return FALSE;
203 if (ptr->u.context->tid && ptr->u.context->tid != GetCurrentThreadId())
205 SetLastError( ERROR_BUSY );
206 release_handle_ptr( ptr );
207 return FALSE;
209 if (hglrc == NtCurrentTeb()->glCurrentRC) wglMakeCurrent( 0, 0 );
210 ptr->funcs->wgl.p_wglDeleteContext( ptr->u.context->drv_ctx );
211 HeapFree( GetProcessHeap(), 0, ptr->u.context->disabled_exts );
212 HeapFree( GetProcessHeap(), 0, ptr->u.context->extensions );
213 HeapFree( GetProcessHeap(), 0, ptr->u.context );
214 free_handle_ptr( ptr );
215 return TRUE;
218 /***********************************************************************
219 * wglMakeCurrent (OPENGL32.@)
221 BOOL WINAPI wglMakeCurrent(HDC hdc, HGLRC hglrc)
223 BOOL ret = TRUE;
224 struct wgl_handle *ptr, *prev = get_current_context_ptr();
226 if (hglrc)
228 if (!(ptr = get_handle_ptr( hglrc, HANDLE_CONTEXT ))) return FALSE;
229 if (!ptr->u.context->tid || ptr->u.context->tid == GetCurrentThreadId())
231 ret = ptr->funcs->wgl.p_wglMakeCurrent( hdc, ptr->u.context->drv_ctx );
232 if (ret)
234 if (prev) prev->u.context->tid = 0;
235 ptr->u.context->tid = GetCurrentThreadId();
236 ptr->u.context->draw_dc = hdc;
237 ptr->u.context->read_dc = hdc;
238 NtCurrentTeb()->glCurrentRC = hglrc;
239 NtCurrentTeb()->glTable = ptr->funcs;
242 else
244 SetLastError( ERROR_BUSY );
245 ret = FALSE;
247 release_handle_ptr( ptr );
249 else if (prev)
251 if (!prev->funcs->wgl.p_wglMakeCurrent( 0, NULL )) return FALSE;
252 prev->u.context->tid = 0;
253 NtCurrentTeb()->glCurrentRC = 0;
254 NtCurrentTeb()->glTable = &null_opengl_funcs;
256 else if (!hdc)
258 SetLastError( ERROR_INVALID_HANDLE );
259 ret = FALSE;
261 return ret;
264 /***********************************************************************
265 * wglCreateContextAttribsARB
267 * Provided by the WGL_ARB_create_context extension.
269 HGLRC WINAPI wglCreateContextAttribsARB( HDC hdc, HGLRC share, const int *attribs )
271 HGLRC ret = 0;
272 struct wgl_context *drv_ctx;
273 struct wgl_handle *share_ptr = NULL;
274 struct opengl_context *context;
275 struct opengl_funcs *funcs = get_dc_funcs( hdc );
277 if (!funcs || !funcs->ext.p_wglCreateContextAttribsARB) return 0;
278 if (share && !(share_ptr = get_handle_ptr( share, HANDLE_CONTEXT ))) return 0;
279 if ((drv_ctx = funcs->ext.p_wglCreateContextAttribsARB( hdc,
280 share_ptr ? share_ptr->u.context->drv_ctx : NULL, attribs )))
282 if ((context = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*context) )))
284 enum wgl_handle_type type = HANDLE_CONTEXT;
286 if (attribs)
288 while (*attribs)
290 if (attribs[0] == WGL_CONTEXT_MAJOR_VERSION_ARB)
292 if (attribs[1] >= 3)
293 type = HANDLE_CONTEXT_V3;
294 break;
296 attribs += 2;
300 context->drv_ctx = drv_ctx;
301 if (!(ret = alloc_handle( type, funcs, context )))
302 HeapFree( GetProcessHeap(), 0, context );
304 if (!ret) funcs->wgl.p_wglDeleteContext( drv_ctx );
306 release_handle_ptr( share_ptr );
307 return ret;
311 /***********************************************************************
312 * wglMakeContextCurrentARB
314 * Provided by the WGL_ARB_make_current_read extension.
316 BOOL WINAPI wglMakeContextCurrentARB( HDC draw_hdc, HDC read_hdc, HGLRC hglrc )
318 BOOL ret = TRUE;
319 struct wgl_handle *ptr, *prev = get_current_context_ptr();
321 if (hglrc)
323 if (!(ptr = get_handle_ptr( hglrc, HANDLE_CONTEXT ))) return FALSE;
324 if (!ptr->u.context->tid || ptr->u.context->tid == GetCurrentThreadId())
326 ret = (ptr->funcs->ext.p_wglMakeContextCurrentARB &&
327 ptr->funcs->ext.p_wglMakeContextCurrentARB( draw_hdc, read_hdc,
328 ptr->u.context->drv_ctx ));
329 if (ret)
331 if (prev) prev->u.context->tid = 0;
332 ptr->u.context->tid = GetCurrentThreadId();
333 ptr->u.context->draw_dc = draw_hdc;
334 ptr->u.context->read_dc = read_hdc;
335 NtCurrentTeb()->glCurrentRC = hglrc;
336 NtCurrentTeb()->glTable = ptr->funcs;
339 else
341 SetLastError( ERROR_BUSY );
342 ret = FALSE;
344 release_handle_ptr( ptr );
346 else if (prev)
348 if (!prev->funcs->wgl.p_wglMakeCurrent( 0, NULL )) return FALSE;
349 prev->u.context->tid = 0;
350 NtCurrentTeb()->glCurrentRC = 0;
351 NtCurrentTeb()->glTable = &null_opengl_funcs;
353 return ret;
356 /***********************************************************************
357 * wglGetCurrentReadDCARB
359 * Provided by the WGL_ARB_make_current_read extension.
361 HDC WINAPI wglGetCurrentReadDCARB(void)
363 struct wgl_handle *ptr = get_current_context_ptr();
365 if (!ptr) return 0;
366 return ptr->u.context->read_dc;
369 /***********************************************************************
370 * wglShareLists (OPENGL32.@)
372 BOOL WINAPI wglShareLists(HGLRC hglrcSrc, HGLRC hglrcDst)
374 BOOL ret = FALSE;
375 struct wgl_handle *src, *dst;
377 if (!(src = get_handle_ptr( hglrcSrc, HANDLE_CONTEXT ))) return FALSE;
378 if ((dst = get_handle_ptr( hglrcDst, HANDLE_CONTEXT )))
380 if (src->funcs != dst->funcs) SetLastError( ERROR_INVALID_HANDLE );
381 else ret = src->funcs->wgl.p_wglShareLists( src->u.context->drv_ctx, dst->u.context->drv_ctx );
383 release_handle_ptr( dst );
384 release_handle_ptr( src );
385 return ret;
388 /***********************************************************************
389 * wglGetCurrentDC (OPENGL32.@)
391 HDC WINAPI wglGetCurrentDC(void)
393 struct wgl_handle *ptr = get_current_context_ptr();
395 if (!ptr) return 0;
396 return ptr->u.context->draw_dc;
399 /***********************************************************************
400 * wglCreateContext (OPENGL32.@)
402 HGLRC WINAPI wglCreateContext(HDC hdc)
404 HGLRC ret = 0;
405 struct wgl_context *drv_ctx;
406 struct opengl_context *context;
407 struct opengl_funcs *funcs = get_dc_funcs( hdc );
409 if (!funcs) return 0;
410 if (!(drv_ctx = funcs->wgl.p_wglCreateContext( hdc ))) return 0;
411 if ((context = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*context) )))
413 context->drv_ctx = drv_ctx;
414 if (!(ret = alloc_handle( HANDLE_CONTEXT, funcs, context )))
415 HeapFree( GetProcessHeap(), 0, context );
417 if (!ret) funcs->wgl.p_wglDeleteContext( drv_ctx );
418 return ret;
421 /***********************************************************************
422 * wglGetCurrentContext (OPENGL32.@)
424 HGLRC WINAPI wglGetCurrentContext(void)
426 return NtCurrentTeb()->glCurrentRC;
429 /***********************************************************************
430 * wglDescribePixelFormat (OPENGL32.@)
432 INT WINAPI wglDescribePixelFormat(HDC hdc, INT format, UINT size, PIXELFORMATDESCRIPTOR *descr )
434 struct opengl_funcs *funcs = get_dc_funcs( hdc );
435 if (!funcs) return 0;
436 return funcs->wgl.p_wglDescribePixelFormat( hdc, format, size, descr );
439 /***********************************************************************
440 * wglChoosePixelFormat (OPENGL32.@)
442 INT WINAPI wglChoosePixelFormat(HDC hdc, const PIXELFORMATDESCRIPTOR* ppfd)
444 PIXELFORMATDESCRIPTOR format, best;
445 int i, count, best_format;
446 int bestDBuffer = -1, bestStereo = -1;
448 TRACE_(wgl)( "%p %p: size %u version %u flags %u type %u color %u %u,%u,%u,%u "
449 "accum %u depth %u stencil %u aux %u\n",
450 hdc, ppfd, ppfd->nSize, ppfd->nVersion, ppfd->dwFlags, ppfd->iPixelType,
451 ppfd->cColorBits, ppfd->cRedBits, ppfd->cGreenBits, ppfd->cBlueBits, ppfd->cAlphaBits,
452 ppfd->cAccumBits, ppfd->cDepthBits, ppfd->cStencilBits, ppfd->cAuxBuffers );
454 count = wglDescribePixelFormat( hdc, 0, 0, NULL );
455 if (!count) return 0;
457 best_format = 0;
458 best.dwFlags = 0;
459 best.cAlphaBits = -1;
460 best.cColorBits = -1;
461 best.cDepthBits = -1;
462 best.cStencilBits = -1;
463 best.cAuxBuffers = -1;
465 for (i = 1; i <= count; i++)
467 if (!wglDescribePixelFormat( hdc, i, sizeof(format), &format )) continue;
469 if (ppfd->iPixelType != format.iPixelType)
471 TRACE( "pixel type mismatch for iPixelFormat=%d\n", i );
472 continue;
475 /* only use bitmap capable for formats for bitmap rendering */
476 if( (ppfd->dwFlags & PFD_DRAW_TO_BITMAP) != (format.dwFlags & PFD_DRAW_TO_BITMAP))
478 TRACE( "PFD_DRAW_TO_BITMAP mismatch for iPixelFormat=%d\n", i );
479 continue;
482 /* The behavior of PDF_STEREO/PFD_STEREO_DONTCARE and PFD_DOUBLEBUFFER / PFD_DOUBLEBUFFER_DONTCARE
483 * is not very clear on MSDN. They specify that ChoosePixelFormat tries to match pixel formats
484 * with the flag (PFD_STEREO / PFD_DOUBLEBUFFERING) set. Otherwise it says that it tries to match
485 * formats without the given flag set.
486 * A test on Windows using a Radeon 9500pro on WinXP (the driver doesn't support Stereo)
487 * has indicated that a format without stereo is returned when stereo is unavailable.
488 * So in case PFD_STEREO is set, formats that support it should have priority above formats
489 * without. In case PFD_STEREO_DONTCARE is set, stereo is ignored.
491 * To summarize the following is most likely the correct behavior:
492 * stereo not set -> prefer non-stereo formats, but also accept stereo formats
493 * stereo set -> prefer stereo formats, but also accept non-stereo formats
494 * stereo don't care -> it doesn't matter whether we get stereo or not
496 * In Wine we will treat non-stereo the same way as don't care because it makes
497 * format selection even more complicated and second drivers with Stereo advertise
498 * each format twice anyway.
501 /* Doublebuffer, see the comments above */
502 if (!(ppfd->dwFlags & PFD_DOUBLEBUFFER_DONTCARE))
504 if (((ppfd->dwFlags & PFD_DOUBLEBUFFER) != bestDBuffer) &&
505 ((format.dwFlags & PFD_DOUBLEBUFFER) == (ppfd->dwFlags & PFD_DOUBLEBUFFER)))
506 goto found;
508 if (bestDBuffer != -1 && (format.dwFlags & PFD_DOUBLEBUFFER) != bestDBuffer) continue;
511 /* Stereo, see the comments above. */
512 if (!(ppfd->dwFlags & PFD_STEREO_DONTCARE))
514 if (((ppfd->dwFlags & PFD_STEREO) != bestStereo) &&
515 ((format.dwFlags & PFD_STEREO) == (ppfd->dwFlags & PFD_STEREO)))
516 goto found;
518 if (bestStereo != -1 && (format.dwFlags & PFD_STEREO) != bestStereo) continue;
521 /* Below we will do a number of checks to select the 'best' pixelformat.
522 * We assume the precedence cColorBits > cAlphaBits > cDepthBits > cStencilBits -> cAuxBuffers.
523 * The code works by trying to match the most important options as close as possible.
524 * When a reasonable format is found, we will try to match more options.
525 * It appears (see the opengl32 test) that Windows opengl drivers ignore options
526 * like cColorBits, cAlphaBits and friends if they are set to 0, so they are considered
527 * as DONTCARE. At least Serious Sam TSE relies on this behavior. */
529 if (ppfd->cColorBits)
531 if (((ppfd->cColorBits > best.cColorBits) && (format.cColorBits > best.cColorBits)) ||
532 ((format.cColorBits >= ppfd->cColorBits) && (format.cColorBits < best.cColorBits)))
533 goto found;
535 if (best.cColorBits != format.cColorBits) /* Do further checks if the format is compatible */
537 TRACE( "color mismatch for iPixelFormat=%d\n", i );
538 continue;
541 if (ppfd->cAlphaBits)
543 if (((ppfd->cAlphaBits > best.cAlphaBits) && (format.cAlphaBits > best.cAlphaBits)) ||
544 ((format.cAlphaBits >= ppfd->cAlphaBits) && (format.cAlphaBits < best.cAlphaBits)))
545 goto found;
547 if (best.cAlphaBits != format.cAlphaBits)
549 TRACE( "alpha mismatch for iPixelFormat=%d\n", i );
550 continue;
553 if (ppfd->cDepthBits)
555 if (((ppfd->cDepthBits > best.cDepthBits) && (format.cDepthBits > best.cDepthBits)) ||
556 ((format.cDepthBits >= ppfd->cDepthBits) && (format.cDepthBits < best.cDepthBits)))
557 goto found;
559 if (best.cDepthBits != format.cDepthBits)
561 TRACE( "depth mismatch for iPixelFormat=%d\n", i );
562 continue;
565 if (ppfd->cStencilBits)
567 if (((ppfd->cStencilBits > best.cStencilBits) && (format.cStencilBits > best.cStencilBits)) ||
568 ((format.cStencilBits >= ppfd->cStencilBits) && (format.cStencilBits < best.cStencilBits)))
569 goto found;
571 if (best.cStencilBits != format.cStencilBits)
573 TRACE( "stencil mismatch for iPixelFormat=%d\n", i );
574 continue;
577 if (ppfd->cAuxBuffers)
579 if (((ppfd->cAuxBuffers > best.cAuxBuffers) && (format.cAuxBuffers > best.cAuxBuffers)) ||
580 ((format.cAuxBuffers >= ppfd->cAuxBuffers) && (format.cAuxBuffers < best.cAuxBuffers)))
581 goto found;
583 if (best.cAuxBuffers != format.cAuxBuffers)
585 TRACE( "aux mismatch for iPixelFormat=%d\n", i );
586 continue;
589 continue;
591 found:
592 best_format = i;
593 best = format;
594 bestDBuffer = format.dwFlags & PFD_DOUBLEBUFFER;
595 bestStereo = format.dwFlags & PFD_STEREO;
598 TRACE( "returning %u\n", best_format );
599 return best_format;
602 /***********************************************************************
603 * wglGetPixelFormat (OPENGL32.@)
605 INT WINAPI wglGetPixelFormat(HDC hdc)
607 struct opengl_funcs *funcs = get_dc_funcs( hdc );
608 if (!funcs) return 0;
609 return funcs->wgl.p_wglGetPixelFormat( hdc );
612 /***********************************************************************
613 * wglSetPixelFormat(OPENGL32.@)
615 BOOL WINAPI wglSetPixelFormat( HDC hdc, INT format, const PIXELFORMATDESCRIPTOR *descr )
617 struct opengl_funcs *funcs = get_dc_funcs( hdc );
618 if (!funcs) return FALSE;
619 return funcs->wgl.p_wglSetPixelFormat( hdc, format, descr );
622 /***********************************************************************
623 * wglSwapBuffers (OPENGL32.@)
625 BOOL WINAPI DECLSPEC_HOTPATCH wglSwapBuffers( HDC hdc )
627 const struct opengl_funcs *funcs = get_dc_funcs( hdc );
629 if (!funcs || !funcs->wgl.p_wglSwapBuffers) return FALSE;
630 if (!funcs->wgl.p_wglSwapBuffers( hdc )) return FALSE;
632 if (TRACE_ON(fps))
634 static long prev_time, start_time;
635 static unsigned long frames, frames_total;
637 DWORD time = GetTickCount();
638 frames++;
639 frames_total++;
640 /* every 1.5 seconds */
641 if (time - prev_time > 1500)
643 TRACE_(fps)("@ approx %.2ffps, total %.2ffps\n",
644 1000.0*frames/(time - prev_time), 1000.0*frames_total/(time - start_time));
645 prev_time = time;
646 frames = 0;
647 if (start_time == 0) start_time = time;
650 return TRUE;
653 /***********************************************************************
654 * wglCreateLayerContext (OPENGL32.@)
656 HGLRC WINAPI wglCreateLayerContext(HDC hdc,
657 int iLayerPlane) {
658 TRACE("(%p,%d)\n", hdc, iLayerPlane);
660 if (iLayerPlane == 0) {
661 return wglCreateContext(hdc);
663 FIXME("no handler for layer %d\n", iLayerPlane);
665 return NULL;
668 /***********************************************************************
669 * wglDescribeLayerPlane (OPENGL32.@)
671 BOOL WINAPI wglDescribeLayerPlane(HDC hdc,
672 int iPixelFormat,
673 int iLayerPlane,
674 UINT nBytes,
675 LPLAYERPLANEDESCRIPTOR plpd) {
676 FIXME("(%p,%d,%d,%d,%p)\n", hdc, iPixelFormat, iLayerPlane, nBytes, plpd);
678 return FALSE;
681 /***********************************************************************
682 * wglGetLayerPaletteEntries (OPENGL32.@)
684 int WINAPI wglGetLayerPaletteEntries(HDC hdc,
685 int iLayerPlane,
686 int iStart,
687 int cEntries,
688 const COLORREF *pcr) {
689 FIXME("(): stub!\n");
691 return 0;
694 static BOOL filter_extensions(const char *extensions, GLubyte **exts_list, GLuint **disabled_exts);
696 void WINAPI glGetIntegerv(GLenum pname, GLint *data)
698 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
700 TRACE("(%d, %p)\n", pname, data);
701 if (pname == GL_NUM_EXTENSIONS)
703 struct wgl_handle *ptr = get_current_context_ptr();
705 if (ptr->u.context->disabled_exts ||
706 filter_extensions(NULL, NULL, &ptr->u.context->disabled_exts))
708 const GLuint *disabled_exts = ptr->u.context->disabled_exts;
709 GLint count, disabled_count = 0;
711 funcs->gl.p_glGetIntegerv(pname, &count);
712 while (*disabled_exts++ != ~0u)
713 disabled_count++;
714 *data = count - disabled_count;
715 return;
718 funcs->gl.p_glGetIntegerv(pname, data);
721 const GLubyte * WINAPI glGetStringi(GLenum name, GLuint index)
723 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
725 TRACE("(%d, %d)\n", name, index);
726 if (!funcs->ext.p_glGetStringi)
728 void **func_ptr = (void **)&funcs->ext.p_glGetStringi;
730 *func_ptr = funcs->wgl.p_wglGetProcAddress("glGetStringi");
733 if (name == GL_EXTENSIONS)
735 struct wgl_handle *ptr = get_current_context_ptr();
737 if (ptr->u.context->disabled_exts ||
738 filter_extensions(NULL, NULL, &ptr->u.context->disabled_exts))
740 const GLuint *disabled_exts = ptr->u.context->disabled_exts;
741 unsigned int disabled_count = 0;
743 while (index + disabled_count >= *disabled_exts++)
744 disabled_count++;
745 return funcs->ext.p_glGetStringi(name, index + disabled_count);
748 return funcs->ext.p_glGetStringi(name, index);
751 /* check if the extension is present in the list */
752 static BOOL has_extension( const char *list, const char *ext, size_t len )
754 if (!list)
756 const char *gl_ext;
757 unsigned int i;
758 GLint extensions_count;
760 glGetIntegerv(GL_NUM_EXTENSIONS, &extensions_count);
761 for (i = 0; i < extensions_count; ++i)
763 gl_ext = (const char *)glGetStringi(GL_EXTENSIONS, i);
764 if (!strncmp(gl_ext, ext, len) && !gl_ext[len])
765 return TRUE;
767 return FALSE;
770 while (list)
772 while (*list == ' ') list++;
773 if (!strncmp( list, ext, len ) && (!list[len] || list[len] == ' ')) return TRUE;
774 list = strchr( list, ' ' );
776 return FALSE;
779 static int compar(const void *elt_a, const void *elt_b) {
780 return strcmp(((const OpenGL_extension *) elt_a)->name,
781 ((const OpenGL_extension *) elt_b)->name);
784 /* Check if a GL extension is supported */
785 static BOOL is_extension_supported(const char* extension)
787 enum wgl_handle_type type = get_current_context_type();
788 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
789 const char *gl_ext_string = NULL;
790 size_t len;
792 TRACE("Checking for extension '%s'\n", extension);
794 if (type == HANDLE_CONTEXT)
796 gl_ext_string = (const char*)glGetString(GL_EXTENSIONS);
797 if (!gl_ext_string)
799 ERR("No OpenGL extensions found, check if your OpenGL setup is correct!\n");
800 return FALSE;
804 /* We use the GetProcAddress function from the display driver to retrieve function pointers
805 * for OpenGL and WGL extensions. In case of winex11.drv the OpenGL extension lookup is done
806 * using glXGetProcAddress. This function is quite unreliable in the sense that its specs don't
807 * require the function to return NULL when an extension isn't found. For this reason we check
808 * if the OpenGL extension required for the function we are looking up is supported. */
810 while ((len = strcspn(extension, " ")) != 0)
812 /* Check if the extension is part of the GL extension string to see if it is supported. */
813 if (has_extension(gl_ext_string, extension, len))
814 return TRUE;
816 /* In general an OpenGL function starts as an ARB/EXT extension and at some stage
817 * it becomes part of the core OpenGL library and can be reached without the ARB/EXT
818 * suffix as well. In the extension table, these functions contain GL_VERSION_major_minor.
819 * Check if we are searching for a core GL function */
820 if(strncmp(extension, "GL_VERSION_", 11) == 0)
822 const GLubyte *gl_version = funcs->gl.p_glGetString(GL_VERSION);
823 const char *version = extension + 11; /* Move past 'GL_VERSION_' */
825 if(!gl_version) {
826 ERR("No OpenGL version found!\n");
827 return FALSE;
830 /* Compare the major/minor version numbers of the native OpenGL library and what is required by the function.
831 * The gl_version string is guaranteed to have at least a major/minor and sometimes it has a release number as well. */
832 if( (gl_version[0] > version[0]) || ((gl_version[0] == version[0]) && (gl_version[2] >= version[2])) ) {
833 return TRUE;
835 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]);
838 if (extension[len] == ' ') len++;
839 extension += len;
842 return FALSE;
845 /***********************************************************************
846 * wglGetProcAddress (OPENGL32.@)
848 PROC WINAPI wglGetProcAddress( LPCSTR name )
850 struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
851 void **func_ptr;
852 OpenGL_extension ext;
853 const OpenGL_extension *ext_ret;
855 if (!name) return NULL;
857 /* Without an active context opengl32 doesn't know to what
858 * driver it has to dispatch wglGetProcAddress.
860 if (!get_current_context_ptr())
862 WARN("No active WGL context found\n");
863 return NULL;
866 ext.name = name;
867 ext_ret = bsearch(&ext, extension_registry, extension_registry_size, sizeof(ext), compar);
868 if (!ext_ret)
870 WARN("Function %s unknown\n", name);
871 return NULL;
874 func_ptr = (void **)&funcs->ext + (ext_ret - extension_registry);
875 if (!*func_ptr)
877 void *driver_func = funcs->wgl.p_wglGetProcAddress( name );
879 if (!is_extension_supported(ext_ret->extension))
881 unsigned int i;
882 static const struct { const char *name, *alt; } alternatives[] =
884 { "glCopyTexSubImage3DEXT", "glCopyTexSubImage3D" }, /* needed by RuneScape */
885 { "glVertexAttribDivisor", "glVertexAttribDivisorARB"}, /* needed by Caffeine */
888 for (i = 0; i < sizeof(alternatives)/sizeof(alternatives[0]); i++)
890 if (strcmp( name, alternatives[i].name )) continue;
891 WARN("Extension %s required for %s not supported, trying %s\n",
892 ext_ret->extension, name, alternatives[i].alt );
893 return wglGetProcAddress( alternatives[i].alt );
895 WARN("Extension %s required for %s not supported\n", ext_ret->extension, name);
896 return NULL;
899 if (driver_func == NULL)
901 WARN("Function %s not supported by driver\n", name);
902 return NULL;
904 *func_ptr = driver_func;
907 TRACE("returning %s -> %p\n", name, ext_ret->func);
908 return ext_ret->func;
911 /***********************************************************************
912 * wglRealizeLayerPalette (OPENGL32.@)
914 BOOL WINAPI wglRealizeLayerPalette(HDC hdc,
915 int iLayerPlane,
916 BOOL bRealize) {
917 FIXME("()\n");
919 return FALSE;
922 /***********************************************************************
923 * wglSetLayerPaletteEntries (OPENGL32.@)
925 int WINAPI wglSetLayerPaletteEntries(HDC hdc,
926 int iLayerPlane,
927 int iStart,
928 int cEntries,
929 const COLORREF *pcr) {
930 FIXME("(): stub!\n");
932 return 0;
935 /***********************************************************************
936 * wglSwapLayerBuffers (OPENGL32.@)
938 BOOL WINAPI wglSwapLayerBuffers(HDC hdc,
939 UINT fuPlanes) {
940 TRACE("(%p, %08x)\n", hdc, fuPlanes);
942 if (fuPlanes & WGL_SWAP_MAIN_PLANE) {
943 if (!wglSwapBuffers( hdc )) return FALSE;
944 fuPlanes &= ~WGL_SWAP_MAIN_PLANE;
947 if (fuPlanes) {
948 WARN("Following layers unhandled: %08x\n", fuPlanes);
951 return TRUE;
954 /***********************************************************************
955 * wglAllocateMemoryNV
957 * Provided by the WGL_NV_vertex_array_range extension.
959 void * WINAPI wglAllocateMemoryNV( GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority )
961 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
963 if (!funcs->ext.p_wglAllocateMemoryNV) return NULL;
964 return funcs->ext.p_wglAllocateMemoryNV( size, readfreq, writefreq, priority );
967 /***********************************************************************
968 * wglFreeMemoryNV
970 * Provided by the WGL_NV_vertex_array_range extension.
972 void WINAPI wglFreeMemoryNV( void *pointer )
974 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
976 if (funcs->ext.p_wglFreeMemoryNV) funcs->ext.p_wglFreeMemoryNV( pointer );
979 /***********************************************************************
980 * wglBindTexImageARB
982 * Provided by the WGL_ARB_render_texture extension.
984 BOOL WINAPI wglBindTexImageARB( HPBUFFERARB handle, int buffer )
986 struct wgl_handle *ptr = get_handle_ptr( handle, HANDLE_PBUFFER );
987 BOOL ret;
989 if (!ptr) return FALSE;
990 ret = ptr->funcs->ext.p_wglBindTexImageARB( ptr->u.pbuffer, buffer );
991 release_handle_ptr( ptr );
992 return ret;
995 /***********************************************************************
996 * wglReleaseTexImageARB
998 * Provided by the WGL_ARB_render_texture extension.
1000 BOOL WINAPI wglReleaseTexImageARB( HPBUFFERARB handle, int buffer )
1002 struct wgl_handle *ptr = get_handle_ptr( handle, HANDLE_PBUFFER );
1003 BOOL ret;
1005 if (!ptr) return FALSE;
1006 ret = ptr->funcs->ext.p_wglReleaseTexImageARB( ptr->u.pbuffer, buffer );
1007 release_handle_ptr( ptr );
1008 return ret;
1011 /***********************************************************************
1012 * wglSetPbufferAttribARB
1014 * Provided by the WGL_ARB_render_texture extension.
1016 BOOL WINAPI wglSetPbufferAttribARB( HPBUFFERARB handle, const int *attribs )
1018 struct wgl_handle *ptr = get_handle_ptr( handle, HANDLE_PBUFFER );
1019 BOOL ret;
1021 if (!ptr) return FALSE;
1022 ret = ptr->funcs->ext.p_wglSetPbufferAttribARB( ptr->u.pbuffer, attribs );
1023 release_handle_ptr( ptr );
1024 return ret;
1027 /***********************************************************************
1028 * wglChoosePixelFormatARB
1030 * Provided by the WGL_ARB_pixel_format extension.
1032 BOOL WINAPI wglChoosePixelFormatARB( HDC hdc, const int *iattribs, const FLOAT *fattribs,
1033 UINT max, int *formats, UINT *count )
1035 const struct opengl_funcs *funcs = get_dc_funcs( hdc );
1037 if (!funcs || !funcs->ext.p_wglChoosePixelFormatARB) return FALSE;
1038 return funcs->ext.p_wglChoosePixelFormatARB( hdc, iattribs, fattribs, max, formats, count );
1041 /***********************************************************************
1042 * wglGetPixelFormatAttribivARB
1044 * Provided by the WGL_ARB_pixel_format extension.
1046 BOOL WINAPI wglGetPixelFormatAttribivARB( HDC hdc, int format, int layer, UINT count, const int *attribs,
1047 int *values )
1049 const struct opengl_funcs *funcs = get_dc_funcs( hdc );
1051 if (!funcs || !funcs->ext.p_wglGetPixelFormatAttribivARB) return FALSE;
1052 return funcs->ext.p_wglGetPixelFormatAttribivARB( hdc, format, layer, count, attribs, values );
1055 /***********************************************************************
1056 * wglGetPixelFormatAttribfvARB
1058 * Provided by the WGL_ARB_pixel_format extension.
1060 BOOL WINAPI wglGetPixelFormatAttribfvARB( HDC hdc, int format, int layer, UINT count, const int *attribs,
1061 FLOAT *values )
1063 const struct opengl_funcs *funcs = get_dc_funcs( hdc );
1065 if (!funcs || !funcs->ext.p_wglGetPixelFormatAttribfvARB) return FALSE;
1066 return funcs->ext.p_wglGetPixelFormatAttribfvARB( hdc, format, layer, count, attribs, values );
1069 /***********************************************************************
1070 * wglCreatePbufferARB
1072 * Provided by the WGL_ARB_pbuffer extension.
1074 HPBUFFERARB WINAPI wglCreatePbufferARB( HDC hdc, int format, int width, int height, const int *attribs )
1076 HPBUFFERARB ret;
1077 struct wgl_pbuffer *pbuffer;
1078 struct opengl_funcs *funcs = get_dc_funcs( hdc );
1080 if (!funcs || !funcs->ext.p_wglCreatePbufferARB) return 0;
1081 if (!(pbuffer = funcs->ext.p_wglCreatePbufferARB( hdc, format, width, height, attribs ))) return 0;
1082 ret = alloc_handle( HANDLE_PBUFFER, funcs, pbuffer );
1083 if (!ret) funcs->ext.p_wglDestroyPbufferARB( pbuffer );
1084 return ret;
1087 /***********************************************************************
1088 * wglGetPbufferDCARB
1090 * Provided by the WGL_ARB_pbuffer extension.
1092 HDC WINAPI wglGetPbufferDCARB( HPBUFFERARB handle )
1094 struct wgl_handle *ptr = get_handle_ptr( handle, HANDLE_PBUFFER );
1095 HDC ret;
1097 if (!ptr) return 0;
1098 ret = ptr->funcs->ext.p_wglGetPbufferDCARB( ptr->u.pbuffer );
1099 release_handle_ptr( ptr );
1100 return ret;
1103 /***********************************************************************
1104 * wglReleasePbufferDCARB
1106 * Provided by the WGL_ARB_pbuffer extension.
1108 int WINAPI wglReleasePbufferDCARB( HPBUFFERARB handle, HDC hdc )
1110 struct wgl_handle *ptr = get_handle_ptr( handle, HANDLE_PBUFFER );
1111 BOOL ret;
1113 if (!ptr) return FALSE;
1114 ret = ptr->funcs->ext.p_wglReleasePbufferDCARB( ptr->u.pbuffer, hdc );
1115 release_handle_ptr( ptr );
1116 return ret;
1119 /***********************************************************************
1120 * wglDestroyPbufferARB
1122 * Provided by the WGL_ARB_pbuffer extension.
1124 BOOL WINAPI wglDestroyPbufferARB( HPBUFFERARB handle )
1126 struct wgl_handle *ptr = get_handle_ptr( handle, HANDLE_PBUFFER );
1128 if (!ptr) return FALSE;
1129 ptr->funcs->ext.p_wglDestroyPbufferARB( ptr->u.pbuffer );
1130 free_handle_ptr( ptr );
1131 return TRUE;
1134 /***********************************************************************
1135 * wglQueryPbufferARB
1137 * Provided by the WGL_ARB_pbuffer extension.
1139 BOOL WINAPI wglQueryPbufferARB( HPBUFFERARB handle, int attrib, int *value )
1141 struct wgl_handle *ptr = get_handle_ptr( handle, HANDLE_PBUFFER );
1142 BOOL ret;
1144 if (!ptr) return FALSE;
1145 ret = ptr->funcs->ext.p_wglQueryPbufferARB( ptr->u.pbuffer, attrib, value );
1146 release_handle_ptr( ptr );
1147 return ret;
1150 /***********************************************************************
1151 * wglGetExtensionsStringARB
1153 * Provided by the WGL_ARB_extensions_string extension.
1155 const char * WINAPI wglGetExtensionsStringARB( HDC hdc )
1157 const struct opengl_funcs *funcs = get_dc_funcs( hdc );
1159 if (!funcs || !funcs->ext.p_wglGetExtensionsStringARB) return NULL;
1160 return (const char *)funcs->ext.p_wglGetExtensionsStringARB( hdc );
1163 /***********************************************************************
1164 * wglGetExtensionsStringEXT
1166 * Provided by the WGL_EXT_extensions_string extension.
1168 const char * WINAPI wglGetExtensionsStringEXT(void)
1170 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
1172 if (!funcs->ext.p_wglGetExtensionsStringEXT) return NULL;
1173 return (const char *)funcs->ext.p_wglGetExtensionsStringEXT();
1176 /***********************************************************************
1177 * wglSwapIntervalEXT
1179 * Provided by the WGL_EXT_swap_control extension.
1181 BOOL WINAPI wglSwapIntervalEXT( int interval )
1183 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
1185 if (!funcs->ext.p_wglSwapIntervalEXT) return FALSE;
1186 return funcs->ext.p_wglSwapIntervalEXT( interval );
1189 /***********************************************************************
1190 * wglGetSwapIntervalEXT
1192 * Provided by the WGL_EXT_swap_control extension.
1194 int WINAPI wglGetSwapIntervalEXT(void)
1196 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
1198 if (!funcs->ext.p_wglGetSwapIntervalEXT) return FALSE;
1199 return funcs->ext.p_wglGetSwapIntervalEXT();
1202 /***********************************************************************
1203 * wglSetPixelFormatWINE
1205 * Provided by the WGL_WINE_pixel_format_passthrough extension.
1207 BOOL WINAPI wglSetPixelFormatWINE( HDC hdc, int format )
1209 const struct opengl_funcs *funcs = get_dc_funcs( hdc );
1211 if (!funcs || !funcs->ext.p_wglSetPixelFormatWINE) return FALSE;
1212 return funcs->ext.p_wglSetPixelFormatWINE( hdc, format );
1215 /***********************************************************************
1216 * wglUseFontBitmaps_common
1218 static BOOL wglUseFontBitmaps_common( HDC hdc, DWORD first, DWORD count, DWORD listBase, BOOL unicode )
1220 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
1221 GLYPHMETRICS gm;
1222 unsigned int glyph, size = 0;
1223 void *bitmap = NULL, *gl_bitmap = NULL;
1224 int org_alignment;
1225 BOOL ret = TRUE;
1227 funcs->gl.p_glGetIntegerv(GL_UNPACK_ALIGNMENT, &org_alignment);
1228 funcs->gl.p_glPixelStorei(GL_UNPACK_ALIGNMENT, 4);
1230 for (glyph = first; glyph < first + count; glyph++) {
1231 unsigned int needed_size, height, width, width_int;
1233 if (unicode)
1234 needed_size = GetGlyphOutlineW(hdc, glyph, GGO_BITMAP, &gm, 0, NULL, &identity);
1235 else
1236 needed_size = GetGlyphOutlineA(hdc, glyph, GGO_BITMAP, &gm, 0, NULL, &identity);
1238 TRACE("Glyph: %3d / List: %d size %d\n", glyph, listBase, needed_size);
1239 if (needed_size == GDI_ERROR) {
1240 ret = FALSE;
1241 break;
1244 if (needed_size > size) {
1245 size = needed_size;
1246 HeapFree(GetProcessHeap(), 0, bitmap);
1247 HeapFree(GetProcessHeap(), 0, gl_bitmap);
1248 bitmap = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
1249 gl_bitmap = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, size);
1251 if (needed_size != 0) {
1252 if (unicode)
1253 ret = (GetGlyphOutlineW(hdc, glyph, GGO_BITMAP, &gm,
1254 size, bitmap, &identity) != GDI_ERROR);
1255 else
1256 ret = (GetGlyphOutlineA(hdc, glyph, GGO_BITMAP, &gm,
1257 size, bitmap, &identity) != GDI_ERROR);
1258 if (!ret) break;
1261 if (TRACE_ON(wgl)) {
1262 unsigned int bitmask;
1263 unsigned char *bitmap_ = bitmap;
1265 TRACE(" - bbox: %d x %d\n", gm.gmBlackBoxX, gm.gmBlackBoxY);
1266 TRACE(" - origin: (%d, %d)\n", gm.gmptGlyphOrigin.x, gm.gmptGlyphOrigin.y);
1267 TRACE(" - increment: %d - %d\n", gm.gmCellIncX, gm.gmCellIncY);
1268 if (needed_size != 0) {
1269 TRACE(" - bitmap:\n");
1270 for (height = 0; height < gm.gmBlackBoxY; height++) {
1271 TRACE(" ");
1272 for (width = 0, bitmask = 0x80; width < gm.gmBlackBoxX; width++, bitmask >>= 1) {
1273 if (bitmask == 0) {
1274 bitmap_ += 1;
1275 bitmask = 0x80;
1277 if (*bitmap_ & bitmask)
1278 TRACE("*");
1279 else
1280 TRACE(" ");
1282 bitmap_ += (4 - ((UINT_PTR)bitmap_ & 0x03));
1283 TRACE("\n");
1288 /* In OpenGL, the bitmap is drawn from the bottom to the top... So we need to invert the
1289 * glyph for it to be drawn properly.
1291 if (needed_size != 0) {
1292 width_int = (gm.gmBlackBoxX + 31) / 32;
1293 for (height = 0; height < gm.gmBlackBoxY; height++) {
1294 for (width = 0; width < width_int; width++) {
1295 ((int *) gl_bitmap)[(gm.gmBlackBoxY - height - 1) * width_int + width] =
1296 ((int *) bitmap)[height * width_int + width];
1301 funcs->gl.p_glNewList(listBase++, GL_COMPILE);
1302 if (needed_size != 0) {
1303 funcs->gl.p_glBitmap(gm.gmBlackBoxX, gm.gmBlackBoxY,
1304 0 - gm.gmptGlyphOrigin.x, (int) gm.gmBlackBoxY - gm.gmptGlyphOrigin.y,
1305 gm.gmCellIncX, gm.gmCellIncY,
1306 gl_bitmap);
1307 } else {
1308 /* This is the case of 'empty' glyphs like the space character */
1309 funcs->gl.p_glBitmap(0, 0, 0, 0, gm.gmCellIncX, gm.gmCellIncY, NULL);
1311 funcs->gl.p_glEndList();
1314 funcs->gl.p_glPixelStorei(GL_UNPACK_ALIGNMENT, org_alignment);
1315 HeapFree(GetProcessHeap(), 0, bitmap);
1316 HeapFree(GetProcessHeap(), 0, gl_bitmap);
1317 return ret;
1320 /***********************************************************************
1321 * wglUseFontBitmapsA (OPENGL32.@)
1323 BOOL WINAPI wglUseFontBitmapsA(HDC hdc, DWORD first, DWORD count, DWORD listBase)
1325 return wglUseFontBitmaps_common( hdc, first, count, listBase, FALSE );
1328 /***********************************************************************
1329 * wglUseFontBitmapsW (OPENGL32.@)
1331 BOOL WINAPI wglUseFontBitmapsW(HDC hdc, DWORD first, DWORD count, DWORD listBase)
1333 return wglUseFontBitmaps_common( hdc, first, count, listBase, TRUE );
1336 /* FIXME: should probably have a glu.h header */
1338 typedef struct GLUtesselator GLUtesselator;
1339 typedef void (WINAPI *_GLUfuncptr)(void);
1341 #define GLU_TESS_BEGIN 100100
1342 #define GLU_TESS_VERTEX 100101
1343 #define GLU_TESS_END 100102
1345 static GLUtesselator * (WINAPI *pgluNewTess)(void);
1346 static void (WINAPI *pgluDeleteTess)(GLUtesselator *tess);
1347 static void (WINAPI *pgluTessNormal)(GLUtesselator *tess, GLdouble x, GLdouble y, GLdouble z);
1348 static void (WINAPI *pgluTessBeginPolygon)(GLUtesselator *tess, void *polygon_data);
1349 static void (WINAPI *pgluTessEndPolygon)(GLUtesselator *tess);
1350 static void (WINAPI *pgluTessCallback)(GLUtesselator *tess, GLenum which, _GLUfuncptr fn);
1351 static void (WINAPI *pgluTessBeginContour)(GLUtesselator *tess);
1352 static void (WINAPI *pgluTessEndContour)(GLUtesselator *tess);
1353 static void (WINAPI *pgluTessVertex)(GLUtesselator *tess, GLdouble *location, GLvoid* data);
1355 static HMODULE load_libglu(void)
1357 static const WCHAR glu32W[] = {'g','l','u','3','2','.','d','l','l',0};
1358 static BOOL already_loaded;
1359 static HMODULE module;
1361 if (already_loaded) return module;
1362 already_loaded = TRUE;
1364 TRACE("Trying to load GLU library\n");
1365 module = LoadLibraryW( glu32W );
1366 if (!module)
1368 WARN("Failed to load glu32\n");
1369 return NULL;
1371 #define LOAD_FUNCPTR(f) p##f = (void *)GetProcAddress( module, #f )
1372 LOAD_FUNCPTR(gluNewTess);
1373 LOAD_FUNCPTR(gluDeleteTess);
1374 LOAD_FUNCPTR(gluTessBeginContour);
1375 LOAD_FUNCPTR(gluTessNormal);
1376 LOAD_FUNCPTR(gluTessBeginPolygon);
1377 LOAD_FUNCPTR(gluTessCallback);
1378 LOAD_FUNCPTR(gluTessEndContour);
1379 LOAD_FUNCPTR(gluTessEndPolygon);
1380 LOAD_FUNCPTR(gluTessVertex);
1381 #undef LOAD_FUNCPTR
1382 return module;
1385 static void fixed_to_double(POINTFX fixed, UINT em_size, GLdouble vertex[3])
1387 vertex[0] = (fixed.x.value + (GLdouble)fixed.x.fract / (1 << 16)) / em_size;
1388 vertex[1] = (fixed.y.value + (GLdouble)fixed.y.fract / (1 << 16)) / em_size;
1389 vertex[2] = 0.0;
1392 static void WINAPI tess_callback_vertex(GLvoid *vertex)
1394 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
1395 GLdouble *dbl = vertex;
1396 TRACE("%f, %f, %f\n", dbl[0], dbl[1], dbl[2]);
1397 funcs->gl.p_glVertex3dv(vertex);
1400 static void WINAPI tess_callback_begin(GLenum which)
1402 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
1403 TRACE("%d\n", which);
1404 funcs->gl.p_glBegin(which);
1407 static void WINAPI tess_callback_end(void)
1409 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
1410 TRACE("\n");
1411 funcs->gl.p_glEnd();
1414 typedef struct _bezier_vector {
1415 GLdouble x;
1416 GLdouble y;
1417 } bezier_vector;
1419 static double bezier_deviation_squared(const bezier_vector *p)
1421 bezier_vector deviation;
1422 bezier_vector vertex;
1423 bezier_vector base;
1424 double base_length;
1425 double dot;
1427 vertex.x = (p[0].x + p[1].x*2 + p[2].x)/4 - p[0].x;
1428 vertex.y = (p[0].y + p[1].y*2 + p[2].y)/4 - p[0].y;
1430 base.x = p[2].x - p[0].x;
1431 base.y = p[2].y - p[0].y;
1433 base_length = sqrt(base.x*base.x + base.y*base.y);
1434 base.x /= base_length;
1435 base.y /= base_length;
1437 dot = base.x*vertex.x + base.y*vertex.y;
1438 dot = min(max(dot, 0.0), base_length);
1439 base.x *= dot;
1440 base.y *= dot;
1442 deviation.x = vertex.x-base.x;
1443 deviation.y = vertex.y-base.y;
1445 return deviation.x*deviation.x + deviation.y*deviation.y;
1448 static int bezier_approximate(const bezier_vector *p, bezier_vector *points, FLOAT deviation)
1450 bezier_vector first_curve[3];
1451 bezier_vector second_curve[3];
1452 bezier_vector vertex;
1453 int total_vertices;
1455 if(bezier_deviation_squared(p) <= deviation*deviation)
1457 if(points)
1458 *points = p[2];
1459 return 1;
1462 vertex.x = (p[0].x + p[1].x*2 + p[2].x)/4;
1463 vertex.y = (p[0].y + p[1].y*2 + p[2].y)/4;
1465 first_curve[0] = p[0];
1466 first_curve[1].x = (p[0].x + p[1].x)/2;
1467 first_curve[1].y = (p[0].y + p[1].y)/2;
1468 first_curve[2] = vertex;
1470 second_curve[0] = vertex;
1471 second_curve[1].x = (p[2].x + p[1].x)/2;
1472 second_curve[1].y = (p[2].y + p[1].y)/2;
1473 second_curve[2] = p[2];
1475 total_vertices = bezier_approximate(first_curve, points, deviation);
1476 if(points)
1477 points += total_vertices;
1478 total_vertices += bezier_approximate(second_curve, points, deviation);
1479 return total_vertices;
1482 /***********************************************************************
1483 * wglUseFontOutlines_common
1485 static BOOL wglUseFontOutlines_common(HDC hdc,
1486 DWORD first,
1487 DWORD count,
1488 DWORD listBase,
1489 FLOAT deviation,
1490 FLOAT extrusion,
1491 int format,
1492 LPGLYPHMETRICSFLOAT lpgmf,
1493 BOOL unicode)
1495 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
1496 UINT glyph;
1497 GLUtesselator *tess = NULL;
1498 LOGFONTW lf;
1499 HFONT old_font, unscaled_font;
1500 UINT em_size = 1024;
1501 RECT rc;
1503 TRACE("(%p, %d, %d, %d, %f, %f, %d, %p, %s)\n", hdc, first, count,
1504 listBase, deviation, extrusion, format, lpgmf, unicode ? "W" : "A");
1506 if(deviation <= 0.0)
1507 deviation = 1.0/em_size;
1509 if(format == WGL_FONT_POLYGONS)
1511 if (!load_libglu())
1513 ERR("glu32 is required for this function but isn't available\n");
1514 return FALSE;
1517 tess = pgluNewTess();
1518 if(!tess) return FALSE;
1519 pgluTessCallback(tess, GLU_TESS_VERTEX, (_GLUfuncptr)tess_callback_vertex);
1520 pgluTessCallback(tess, GLU_TESS_BEGIN, (_GLUfuncptr)tess_callback_begin);
1521 pgluTessCallback(tess, GLU_TESS_END, tess_callback_end);
1524 GetObjectW(GetCurrentObject(hdc, OBJ_FONT), sizeof(lf), &lf);
1525 rc.left = rc.right = rc.bottom = 0;
1526 rc.top = em_size;
1527 DPtoLP(hdc, (POINT*)&rc, 2);
1528 lf.lfHeight = -abs(rc.top - rc.bottom);
1529 lf.lfOrientation = lf.lfEscapement = 0;
1530 unscaled_font = CreateFontIndirectW(&lf);
1531 old_font = SelectObject(hdc, unscaled_font);
1533 for (glyph = first; glyph < first + count; glyph++)
1535 DWORD needed;
1536 GLYPHMETRICS gm;
1537 BYTE *buf;
1538 TTPOLYGONHEADER *pph;
1539 TTPOLYCURVE *ppc;
1540 GLdouble *vertices = NULL;
1541 int vertex_total = -1;
1543 if(unicode)
1544 needed = GetGlyphOutlineW(hdc, glyph, GGO_NATIVE, &gm, 0, NULL, &identity);
1545 else
1546 needed = GetGlyphOutlineA(hdc, glyph, GGO_NATIVE, &gm, 0, NULL, &identity);
1548 if(needed == GDI_ERROR)
1549 goto error;
1551 buf = HeapAlloc(GetProcessHeap(), 0, needed);
1553 if(unicode)
1554 GetGlyphOutlineW(hdc, glyph, GGO_NATIVE, &gm, needed, buf, &identity);
1555 else
1556 GetGlyphOutlineA(hdc, glyph, GGO_NATIVE, &gm, needed, buf, &identity);
1558 TRACE("glyph %d\n", glyph);
1560 if(lpgmf)
1562 lpgmf->gmfBlackBoxX = (float)gm.gmBlackBoxX / em_size;
1563 lpgmf->gmfBlackBoxY = (float)gm.gmBlackBoxY / em_size;
1564 lpgmf->gmfptGlyphOrigin.x = (float)gm.gmptGlyphOrigin.x / em_size;
1565 lpgmf->gmfptGlyphOrigin.y = (float)gm.gmptGlyphOrigin.y / em_size;
1566 lpgmf->gmfCellIncX = (float)gm.gmCellIncX / em_size;
1567 lpgmf->gmfCellIncY = (float)gm.gmCellIncY / em_size;
1569 TRACE("%fx%f at %f,%f inc %f,%f\n", lpgmf->gmfBlackBoxX, lpgmf->gmfBlackBoxY,
1570 lpgmf->gmfptGlyphOrigin.x, lpgmf->gmfptGlyphOrigin.y, lpgmf->gmfCellIncX, lpgmf->gmfCellIncY);
1571 lpgmf++;
1574 funcs->gl.p_glNewList(listBase++, GL_COMPILE);
1575 funcs->gl.p_glFrontFace(GL_CCW);
1576 if(format == WGL_FONT_POLYGONS)
1578 funcs->gl.p_glNormal3d(0.0, 0.0, 1.0);
1579 pgluTessNormal(tess, 0, 0, 1);
1580 pgluTessBeginPolygon(tess, NULL);
1583 while(!vertices)
1585 if(vertex_total != -1)
1586 vertices = HeapAlloc(GetProcessHeap(), 0, vertex_total * 3 * sizeof(GLdouble));
1587 vertex_total = 0;
1589 pph = (TTPOLYGONHEADER*)buf;
1590 while((BYTE*)pph < buf + needed)
1592 GLdouble previous[3];
1593 fixed_to_double(pph->pfxStart, em_size, previous);
1595 if(vertices)
1596 TRACE("\tstart %d, %d\n", pph->pfxStart.x.value, pph->pfxStart.y.value);
1598 if(format == WGL_FONT_POLYGONS)
1599 pgluTessBeginContour(tess);
1600 else
1601 funcs->gl.p_glBegin(GL_LINE_LOOP);
1603 if(vertices)
1605 fixed_to_double(pph->pfxStart, em_size, vertices);
1606 if(format == WGL_FONT_POLYGONS)
1607 pgluTessVertex(tess, vertices, vertices);
1608 else
1609 funcs->gl.p_glVertex3d(vertices[0], vertices[1], vertices[2]);
1610 vertices += 3;
1612 vertex_total++;
1614 ppc = (TTPOLYCURVE*)((char*)pph + sizeof(*pph));
1615 while((char*)ppc < (char*)pph + pph->cb)
1617 int i, j;
1618 int num;
1620 switch(ppc->wType) {
1621 case TT_PRIM_LINE:
1622 for(i = 0; i < ppc->cpfx; i++)
1624 if(vertices)
1626 TRACE("\t\tline to %d, %d\n",
1627 ppc->apfx[i].x.value, ppc->apfx[i].y.value);
1628 fixed_to_double(ppc->apfx[i], em_size, vertices);
1629 if(format == WGL_FONT_POLYGONS)
1630 pgluTessVertex(tess, vertices, vertices);
1631 else
1632 funcs->gl.p_glVertex3d(vertices[0], vertices[1], vertices[2]);
1633 vertices += 3;
1635 fixed_to_double(ppc->apfx[i], em_size, previous);
1636 vertex_total++;
1638 break;
1640 case TT_PRIM_QSPLINE:
1641 for(i = 0; i < ppc->cpfx-1; i++)
1643 bezier_vector curve[3];
1644 bezier_vector *points;
1645 GLdouble curve_vertex[3];
1647 if(vertices)
1648 TRACE("\t\tcurve %d,%d %d,%d\n",
1649 ppc->apfx[i].x.value, ppc->apfx[i].y.value,
1650 ppc->apfx[i + 1].x.value, ppc->apfx[i + 1].y.value);
1652 curve[0].x = previous[0];
1653 curve[0].y = previous[1];
1654 fixed_to_double(ppc->apfx[i], em_size, curve_vertex);
1655 curve[1].x = curve_vertex[0];
1656 curve[1].y = curve_vertex[1];
1657 fixed_to_double(ppc->apfx[i + 1], em_size, curve_vertex);
1658 curve[2].x = curve_vertex[0];
1659 curve[2].y = curve_vertex[1];
1660 if(i < ppc->cpfx-2)
1662 curve[2].x = (curve[1].x + curve[2].x)/2;
1663 curve[2].y = (curve[1].y + curve[2].y)/2;
1665 num = bezier_approximate(curve, NULL, deviation);
1666 points = HeapAlloc(GetProcessHeap(), 0, num*sizeof(bezier_vector));
1667 num = bezier_approximate(curve, points, deviation);
1668 vertex_total += num;
1669 if(vertices)
1671 for(j=0; j<num; j++)
1673 TRACE("\t\t\tvertex at %f,%f\n", points[j].x, points[j].y);
1674 vertices[0] = points[j].x;
1675 vertices[1] = points[j].y;
1676 vertices[2] = 0.0;
1677 if(format == WGL_FONT_POLYGONS)
1678 pgluTessVertex(tess, vertices, vertices);
1679 else
1680 funcs->gl.p_glVertex3d(vertices[0], vertices[1], vertices[2]);
1681 vertices += 3;
1684 HeapFree(GetProcessHeap(), 0, points);
1685 previous[0] = curve[2].x;
1686 previous[1] = curve[2].y;
1688 break;
1689 default:
1690 ERR("\t\tcurve type = %d\n", ppc->wType);
1691 if(format == WGL_FONT_POLYGONS)
1692 pgluTessEndContour(tess);
1693 else
1694 funcs->gl.p_glEnd();
1695 goto error_in_list;
1698 ppc = (TTPOLYCURVE*)((char*)ppc + sizeof(*ppc) +
1699 (ppc->cpfx - 1) * sizeof(POINTFX));
1701 if(format == WGL_FONT_POLYGONS)
1702 pgluTessEndContour(tess);
1703 else
1704 funcs->gl.p_glEnd();
1705 pph = (TTPOLYGONHEADER*)((char*)pph + pph->cb);
1709 error_in_list:
1710 if(format == WGL_FONT_POLYGONS)
1711 pgluTessEndPolygon(tess);
1712 funcs->gl.p_glTranslated((GLdouble)gm.gmCellIncX / em_size, (GLdouble)gm.gmCellIncY / em_size, 0.0);
1713 funcs->gl.p_glEndList();
1714 HeapFree(GetProcessHeap(), 0, buf);
1715 HeapFree(GetProcessHeap(), 0, vertices);
1718 error:
1719 DeleteObject(SelectObject(hdc, old_font));
1720 if(format == WGL_FONT_POLYGONS)
1721 pgluDeleteTess(tess);
1722 return TRUE;
1726 /***********************************************************************
1727 * wglUseFontOutlinesA (OPENGL32.@)
1729 BOOL WINAPI wglUseFontOutlinesA(HDC hdc,
1730 DWORD first,
1731 DWORD count,
1732 DWORD listBase,
1733 FLOAT deviation,
1734 FLOAT extrusion,
1735 int format,
1736 LPGLYPHMETRICSFLOAT lpgmf)
1738 return wglUseFontOutlines_common(hdc, first, count, listBase, deviation, extrusion, format, lpgmf, FALSE);
1741 /***********************************************************************
1742 * wglUseFontOutlinesW (OPENGL32.@)
1744 BOOL WINAPI wglUseFontOutlinesW(HDC hdc,
1745 DWORD first,
1746 DWORD count,
1747 DWORD listBase,
1748 FLOAT deviation,
1749 FLOAT extrusion,
1750 int format,
1751 LPGLYPHMETRICSFLOAT lpgmf)
1753 return wglUseFontOutlines_common(hdc, first, count, listBase, deviation, extrusion, format, lpgmf, TRUE);
1756 /***********************************************************************
1757 * glDebugEntry (OPENGL32.@)
1759 GLint WINAPI glDebugEntry( GLint unknown1, GLint unknown2 )
1761 return 0;
1764 static GLubyte *filter_extensions_list(const char *extensions, const char *disabled)
1766 char *p, *str;
1767 const char *end;
1769 p = str = HeapAlloc(GetProcessHeap(), 0, strlen(extensions) + 2);
1770 if (!str)
1771 return NULL;
1772 for (;;)
1774 while (*extensions == ' ')
1775 extensions++;
1776 if (!*extensions)
1777 break;
1778 if (!(end = strchr(extensions, ' ')))
1779 end = extensions + strlen(extensions);
1780 memcpy(p, extensions, end - extensions);
1781 p[end - extensions] = 0;
1782 if (!has_extension(disabled, p, strlen(p)))
1784 TRACE("++ %s\n", p);
1785 p += end - extensions;
1786 *p++ = ' ';
1788 else
1790 TRACE("-- %s (disabled by config)\n", p);
1792 extensions = end;
1794 *p = 0;
1795 return (GLubyte *)str;
1798 static GLuint *filter_extensions_index(const char *disabled)
1800 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
1801 const char *ext, *end, *gl_ext;
1802 GLuint *disabled_exts, *new_disabled_exts;
1803 unsigned int i = 0, j, disabled_size;
1804 GLint extensions_count;
1806 if (!funcs->ext.p_glGetStringi)
1808 void **func_ptr = (void **)&funcs->ext.p_glGetStringi;
1810 *func_ptr = funcs->wgl.p_wglGetProcAddress("glGetStringi");
1811 if (!funcs->ext.p_glGetStringi)
1812 return NULL;
1815 funcs->gl.p_glGetIntegerv(GL_NUM_EXTENSIONS, &extensions_count);
1816 disabled_size = 2;
1817 disabled_exts = HeapAlloc(GetProcessHeap(), 0, disabled_size * sizeof(*disabled_exts));
1818 if (!disabled_exts)
1819 return NULL;
1820 for (j = 0; j < extensions_count; ++j)
1822 gl_ext = (const char *)funcs->ext.p_glGetStringi(GL_EXTENSIONS, j);
1823 ext = disabled;
1824 for (;;)
1826 while (*ext == ' ')
1827 ext++;
1828 if (!*ext)
1830 TRACE("++ %s\n", gl_ext);
1831 break;
1833 if (!(end = strchr(ext, ' ')))
1834 end = ext + strlen(ext);
1836 if (!strncmp(gl_ext, ext, end - ext) && !gl_ext[end - ext])
1838 if (i + 1 == disabled_size)
1840 disabled_size *= 2;
1841 new_disabled_exts = HeapReAlloc(GetProcessHeap(), 0, disabled_exts,
1842 disabled_size * sizeof(*disabled_exts));
1843 if (!new_disabled_exts)
1845 disabled_exts[i] = ~0u;
1846 return disabled_exts;
1848 disabled_exts = new_disabled_exts;
1850 TRACE("-- %s (disabled by config)\n", gl_ext);
1851 disabled_exts[i++] = j;
1852 break;
1854 ext = end;
1857 disabled_exts[i] = ~0u;
1858 return disabled_exts;
1861 /* build the extension string by filtering out the disabled extensions */
1862 static BOOL filter_extensions(const char *extensions, GLubyte **exts_list, GLuint **disabled_exts)
1864 static const char *disabled;
1866 TRACE( "GL_EXTENSIONS:\n" );
1868 if (!disabled)
1870 HKEY hkey;
1871 DWORD size;
1872 char *str = NULL;
1874 /* @@ Wine registry key: HKCU\Software\Wine\OpenGL */
1875 if (!RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\OpenGL", &hkey ))
1877 if (!RegQueryValueExA( hkey, "DisabledExtensions", 0, NULL, NULL, &size ))
1879 str = HeapAlloc( GetProcessHeap(), 0, size );
1880 if (RegQueryValueExA( hkey, "DisabledExtensions", 0, NULL, (BYTE *)str, &size )) *str = 0;
1882 RegCloseKey( hkey );
1884 if (str)
1886 if (InterlockedCompareExchangePointer( (void **)&disabled, str, NULL ))
1887 HeapFree( GetProcessHeap(), 0, str );
1889 else disabled = "";
1892 if (!disabled[0])
1893 return FALSE;
1895 if (extensions && !*exts_list)
1896 *exts_list = filter_extensions_list(extensions, disabled);
1898 if (!*disabled_exts)
1899 *disabled_exts = filter_extensions_index(disabled);
1901 return (exts_list && *exts_list) || *disabled_exts;
1904 /***********************************************************************
1905 * glGetString (OPENGL32.@)
1907 const GLubyte * WINAPI glGetString( GLenum name )
1909 const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;
1910 const GLubyte *ret = funcs->gl.p_glGetString( name );
1912 if (name == GL_EXTENSIONS && ret)
1914 struct wgl_handle *ptr = get_current_context_ptr();
1915 if (ptr->u.context->extensions ||
1916 filter_extensions((const char *)ret, &ptr->u.context->extensions, &ptr->u.context->disabled_exts))
1917 ret = ptr->u.context->extensions;
1919 return ret;
1922 /***********************************************************************
1923 * OpenGL initialisation routine
1925 BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
1927 switch(reason)
1929 case DLL_PROCESS_ATTACH:
1930 NtCurrentTeb()->glTable = &null_opengl_funcs;
1931 break;
1932 case DLL_THREAD_ATTACH:
1933 NtCurrentTeb()->glTable = &null_opengl_funcs;
1934 break;
1936 return TRUE;