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"
28 #include "opengl_ext.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
54 HANDLE_PBUFFER
= 0 << 12,
55 HANDLE_CONTEXT
= 1 << 12,
56 HANDLE_CONTEXT_V3
= 3 << 12,
57 HANDLE_TYPE_MASK
= 15 << 12
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 */
73 struct opengl_funcs
*funcs
;
76 struct opengl_context
*context
; /* for HANDLE_CONTEXT */
77 struct wgl_pbuffer
*pbuffer
; /* for HANDLE_PBUFFER */
78 struct wgl_handle
*next
; /* for free handles */
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
=
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
;
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
);
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
)
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
++];
151 ptr
->u
.context
= user_ptr
;
152 handle
= next_handle( ptr
, type
);
154 else SetLastError( ERROR_NOT_ENOUGH_MEMORY
);
155 LeaveCriticalSection( &wgl_section
);
159 static void free_handle_ptr( struct wgl_handle
*ptr
)
161 ptr
->handle
|= 0xffff;
162 ptr
->u
.next
= next_free
;
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
;
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
);
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
);
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
);
218 /***********************************************************************
219 * wglMakeCurrent (OPENGL32.@)
221 BOOL WINAPI
wglMakeCurrent(HDC hdc
, HGLRC hglrc
)
224 struct wgl_handle
*ptr
, *prev
= get_current_context_ptr();
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
);
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
;
244 SetLastError( ERROR_BUSY
);
247 release_handle_ptr( ptr
);
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
;
258 SetLastError( ERROR_INVALID_HANDLE
);
264 /***********************************************************************
265 * wglCreateContextAttribsARB
267 * Provided by the WGL_ARB_create_context extension.
269 HGLRC WINAPI
wglCreateContextAttribsARB( HDC hdc
, HGLRC share
, const int *attribs
)
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
);
279 SetLastError( ERROR_DC_NOT_FOUND
);
282 if (!funcs
->ext
.p_wglCreateContextAttribsARB
) return 0;
283 if (share
&& !(share_ptr
= get_handle_ptr( share
, HANDLE_CONTEXT
)))
285 SetLastError( ERROR_INVALID_OPERATION
);
288 if ((drv_ctx
= funcs
->ext
.p_wglCreateContextAttribsARB( hdc
,
289 share_ptr
? share_ptr
->u
.context
->drv_ctx
: NULL
, attribs
)))
291 if ((context
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*context
) )))
293 enum wgl_handle_type type
= HANDLE_CONTEXT
;
299 if (attribs
[0] == WGL_CONTEXT_MAJOR_VERSION_ARB
)
302 type
= HANDLE_CONTEXT_V3
;
309 context
->drv_ctx
= drv_ctx
;
310 if (!(ret
= alloc_handle( type
, funcs
, context
)))
311 HeapFree( GetProcessHeap(), 0, context
);
313 if (!ret
) funcs
->wgl
.p_wglDeleteContext( drv_ctx
);
315 release_handle_ptr( share_ptr
);
320 /***********************************************************************
321 * wglMakeContextCurrentARB
323 * Provided by the WGL_ARB_make_current_read extension.
325 BOOL WINAPI
wglMakeContextCurrentARB( HDC draw_hdc
, HDC read_hdc
, HGLRC hglrc
)
328 struct wgl_handle
*ptr
, *prev
= get_current_context_ptr();
332 if (!(ptr
= get_handle_ptr( hglrc
, HANDLE_CONTEXT
))) return FALSE
;
333 if (!ptr
->u
.context
->tid
|| ptr
->u
.context
->tid
== GetCurrentThreadId())
335 ret
= (ptr
->funcs
->ext
.p_wglMakeContextCurrentARB
&&
336 ptr
->funcs
->ext
.p_wglMakeContextCurrentARB( draw_hdc
, read_hdc
,
337 ptr
->u
.context
->drv_ctx
));
340 if (prev
) prev
->u
.context
->tid
= 0;
341 ptr
->u
.context
->tid
= GetCurrentThreadId();
342 ptr
->u
.context
->draw_dc
= draw_hdc
;
343 ptr
->u
.context
->read_dc
= read_hdc
;
344 NtCurrentTeb()->glCurrentRC
= hglrc
;
345 NtCurrentTeb()->glTable
= ptr
->funcs
;
350 SetLastError( ERROR_BUSY
);
353 release_handle_ptr( ptr
);
357 if (!prev
->funcs
->wgl
.p_wglMakeCurrent( 0, NULL
)) return FALSE
;
358 prev
->u
.context
->tid
= 0;
359 NtCurrentTeb()->glCurrentRC
= 0;
360 NtCurrentTeb()->glTable
= &null_opengl_funcs
;
365 /***********************************************************************
366 * wglGetCurrentReadDCARB
368 * Provided by the WGL_ARB_make_current_read extension.
370 HDC WINAPI
wglGetCurrentReadDCARB(void)
372 struct wgl_handle
*ptr
= get_current_context_ptr();
375 return ptr
->u
.context
->read_dc
;
378 /***********************************************************************
379 * wglShareLists (OPENGL32.@)
381 BOOL WINAPI
wglShareLists(HGLRC hglrcSrc
, HGLRC hglrcDst
)
384 struct wgl_handle
*src
, *dst
;
386 if (!(src
= get_handle_ptr( hglrcSrc
, HANDLE_CONTEXT
))) return FALSE
;
387 if ((dst
= get_handle_ptr( hglrcDst
, HANDLE_CONTEXT
)))
389 if (src
->funcs
!= dst
->funcs
) SetLastError( ERROR_INVALID_HANDLE
);
390 else ret
= src
->funcs
->wgl
.p_wglShareLists( src
->u
.context
->drv_ctx
, dst
->u
.context
->drv_ctx
);
392 release_handle_ptr( dst
);
393 release_handle_ptr( src
);
397 /***********************************************************************
398 * wglGetCurrentDC (OPENGL32.@)
400 HDC WINAPI
wglGetCurrentDC(void)
402 struct wgl_handle
*ptr
= get_current_context_ptr();
405 return ptr
->u
.context
->draw_dc
;
408 /***********************************************************************
409 * wglCreateContext (OPENGL32.@)
411 HGLRC WINAPI
wglCreateContext(HDC hdc
)
414 struct wgl_context
*drv_ctx
;
415 struct opengl_context
*context
;
416 struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
418 if (!funcs
) return 0;
419 if (!(drv_ctx
= funcs
->wgl
.p_wglCreateContext( hdc
))) return 0;
420 if ((context
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*context
) )))
422 context
->drv_ctx
= drv_ctx
;
423 if (!(ret
= alloc_handle( HANDLE_CONTEXT
, funcs
, context
)))
424 HeapFree( GetProcessHeap(), 0, context
);
426 if (!ret
) funcs
->wgl
.p_wglDeleteContext( drv_ctx
);
430 /***********************************************************************
431 * wglGetCurrentContext (OPENGL32.@)
433 HGLRC WINAPI
wglGetCurrentContext(void)
435 return NtCurrentTeb()->glCurrentRC
;
438 /***********************************************************************
439 * wglDescribePixelFormat (OPENGL32.@)
441 INT WINAPI
wglDescribePixelFormat(HDC hdc
, INT format
, UINT size
, PIXELFORMATDESCRIPTOR
*descr
)
443 struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
444 if (!funcs
) return 0;
445 return funcs
->wgl
.p_wglDescribePixelFormat( hdc
, format
, size
, descr
);
448 /***********************************************************************
449 * wglChoosePixelFormat (OPENGL32.@)
451 INT WINAPI
wglChoosePixelFormat(HDC hdc
, const PIXELFORMATDESCRIPTOR
* ppfd
)
453 PIXELFORMATDESCRIPTOR format
, best
;
454 int i
, count
, best_format
;
455 int bestDBuffer
= -1, bestStereo
= -1;
457 TRACE_(wgl
)( "%p %p: size %u version %u flags %u type %u color %u %u,%u,%u,%u "
458 "accum %u depth %u stencil %u aux %u\n",
459 hdc
, ppfd
, ppfd
->nSize
, ppfd
->nVersion
, ppfd
->dwFlags
, ppfd
->iPixelType
,
460 ppfd
->cColorBits
, ppfd
->cRedBits
, ppfd
->cGreenBits
, ppfd
->cBlueBits
, ppfd
->cAlphaBits
,
461 ppfd
->cAccumBits
, ppfd
->cDepthBits
, ppfd
->cStencilBits
, ppfd
->cAuxBuffers
);
463 count
= wglDescribePixelFormat( hdc
, 0, 0, NULL
);
464 if (!count
) return 0;
468 best
.cAlphaBits
= -1;
469 best
.cColorBits
= -1;
470 best
.cDepthBits
= -1;
471 best
.cStencilBits
= -1;
472 best
.cAuxBuffers
= -1;
474 for (i
= 1; i
<= count
; i
++)
476 if (!wglDescribePixelFormat( hdc
, i
, sizeof(format
), &format
)) continue;
478 if (ppfd
->iPixelType
!= format
.iPixelType
)
480 TRACE( "pixel type mismatch for iPixelFormat=%d\n", i
);
484 /* only use bitmap capable for formats for bitmap rendering */
485 if( (ppfd
->dwFlags
& PFD_DRAW_TO_BITMAP
) != (format
.dwFlags
& PFD_DRAW_TO_BITMAP
))
487 TRACE( "PFD_DRAW_TO_BITMAP mismatch for iPixelFormat=%d\n", i
);
491 /* The behavior of PDF_STEREO/PFD_STEREO_DONTCARE and PFD_DOUBLEBUFFER / PFD_DOUBLEBUFFER_DONTCARE
492 * is not very clear on MSDN. They specify that ChoosePixelFormat tries to match pixel formats
493 * with the flag (PFD_STEREO / PFD_DOUBLEBUFFERING) set. Otherwise it says that it tries to match
494 * formats without the given flag set.
495 * A test on Windows using a Radeon 9500pro on WinXP (the driver doesn't support Stereo)
496 * has indicated that a format without stereo is returned when stereo is unavailable.
497 * So in case PFD_STEREO is set, formats that support it should have priority above formats
498 * without. In case PFD_STEREO_DONTCARE is set, stereo is ignored.
500 * To summarize the following is most likely the correct behavior:
501 * stereo not set -> prefer non-stereo formats, but also accept stereo formats
502 * stereo set -> prefer stereo formats, but also accept non-stereo formats
503 * stereo don't care -> it doesn't matter whether we get stereo or not
505 * In Wine we will treat non-stereo the same way as don't care because it makes
506 * format selection even more complicated and second drivers with Stereo advertise
507 * each format twice anyway.
510 /* Doublebuffer, see the comments above */
511 if (!(ppfd
->dwFlags
& PFD_DOUBLEBUFFER_DONTCARE
))
513 if (((ppfd
->dwFlags
& PFD_DOUBLEBUFFER
) != bestDBuffer
) &&
514 ((format
.dwFlags
& PFD_DOUBLEBUFFER
) == (ppfd
->dwFlags
& PFD_DOUBLEBUFFER
)))
517 if (bestDBuffer
!= -1 && (format
.dwFlags
& PFD_DOUBLEBUFFER
) != bestDBuffer
) continue;
520 /* Stereo, see the comments above. */
521 if (!(ppfd
->dwFlags
& PFD_STEREO_DONTCARE
))
523 if (((ppfd
->dwFlags
& PFD_STEREO
) != bestStereo
) &&
524 ((format
.dwFlags
& PFD_STEREO
) == (ppfd
->dwFlags
& PFD_STEREO
)))
527 if (bestStereo
!= -1 && (format
.dwFlags
& PFD_STEREO
) != bestStereo
) continue;
530 /* Below we will do a number of checks to select the 'best' pixelformat.
531 * We assume the precedence cColorBits > cAlphaBits > cDepthBits > cStencilBits -> cAuxBuffers.
532 * The code works by trying to match the most important options as close as possible.
533 * When a reasonable format is found, we will try to match more options.
534 * It appears (see the opengl32 test) that Windows opengl drivers ignore options
535 * like cColorBits, cAlphaBits and friends if they are set to 0, so they are considered
536 * as DONTCARE. At least Serious Sam TSE relies on this behavior. */
538 if (ppfd
->cColorBits
)
540 if (((ppfd
->cColorBits
> best
.cColorBits
) && (format
.cColorBits
> best
.cColorBits
)) ||
541 ((format
.cColorBits
>= ppfd
->cColorBits
) && (format
.cColorBits
< best
.cColorBits
)))
544 if (best
.cColorBits
!= format
.cColorBits
) /* Do further checks if the format is compatible */
546 TRACE( "color mismatch for iPixelFormat=%d\n", i
);
550 if (ppfd
->cAlphaBits
)
552 if (((ppfd
->cAlphaBits
> best
.cAlphaBits
) && (format
.cAlphaBits
> best
.cAlphaBits
)) ||
553 ((format
.cAlphaBits
>= ppfd
->cAlphaBits
) && (format
.cAlphaBits
< best
.cAlphaBits
)))
556 if (best
.cAlphaBits
!= format
.cAlphaBits
)
558 TRACE( "alpha mismatch for iPixelFormat=%d\n", i
);
562 if (ppfd
->cDepthBits
)
564 if (((ppfd
->cDepthBits
> best
.cDepthBits
) && (format
.cDepthBits
> best
.cDepthBits
)) ||
565 ((format
.cDepthBits
>= ppfd
->cDepthBits
) && (format
.cDepthBits
< best
.cDepthBits
)))
568 if (best
.cDepthBits
!= format
.cDepthBits
)
570 TRACE( "depth mismatch for iPixelFormat=%d\n", i
);
574 if (ppfd
->cStencilBits
)
576 if (((ppfd
->cStencilBits
> best
.cStencilBits
) && (format
.cStencilBits
> best
.cStencilBits
)) ||
577 ((format
.cStencilBits
>= ppfd
->cStencilBits
) && (format
.cStencilBits
< best
.cStencilBits
)))
580 if (best
.cStencilBits
!= format
.cStencilBits
)
582 TRACE( "stencil mismatch for iPixelFormat=%d\n", i
);
586 if (ppfd
->cAuxBuffers
)
588 if (((ppfd
->cAuxBuffers
> best
.cAuxBuffers
) && (format
.cAuxBuffers
> best
.cAuxBuffers
)) ||
589 ((format
.cAuxBuffers
>= ppfd
->cAuxBuffers
) && (format
.cAuxBuffers
< best
.cAuxBuffers
)))
592 if (best
.cAuxBuffers
!= format
.cAuxBuffers
)
594 TRACE( "aux mismatch for iPixelFormat=%d\n", i
);
603 bestDBuffer
= format
.dwFlags
& PFD_DOUBLEBUFFER
;
604 bestStereo
= format
.dwFlags
& PFD_STEREO
;
607 TRACE( "returning %u\n", best_format
);
611 /***********************************************************************
612 * wglGetPixelFormat (OPENGL32.@)
614 INT WINAPI
wglGetPixelFormat(HDC hdc
)
616 struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
617 if (!funcs
) return 0;
618 return funcs
->wgl
.p_wglGetPixelFormat( hdc
);
621 /***********************************************************************
622 * wglSetPixelFormat(OPENGL32.@)
624 BOOL WINAPI
wglSetPixelFormat( HDC hdc
, INT format
, const PIXELFORMATDESCRIPTOR
*descr
)
626 struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
627 if (!funcs
) return FALSE
;
628 return funcs
->wgl
.p_wglSetPixelFormat( hdc
, format
, descr
);
631 /***********************************************************************
632 * wglSwapBuffers (OPENGL32.@)
634 BOOL WINAPI DECLSPEC_HOTPATCH
wglSwapBuffers( HDC hdc
)
636 const struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
638 if (!funcs
|| !funcs
->wgl
.p_wglSwapBuffers
) return FALSE
;
639 if (!funcs
->wgl
.p_wglSwapBuffers( hdc
)) return FALSE
;
643 static long prev_time
, start_time
;
644 static unsigned long frames
, frames_total
;
646 DWORD time
= GetTickCount();
649 /* every 1.5 seconds */
650 if (time
- prev_time
> 1500)
652 TRACE_(fps
)("@ approx %.2ffps, total %.2ffps\n",
653 1000.0*frames
/(time
- prev_time
), 1000.0*frames_total
/(time
- start_time
));
656 if (start_time
== 0) start_time
= time
;
662 /***********************************************************************
663 * wglCreateLayerContext (OPENGL32.@)
665 HGLRC WINAPI
wglCreateLayerContext(HDC hdc
,
667 TRACE("(%p,%d)\n", hdc
, iLayerPlane
);
669 if (iLayerPlane
== 0) {
670 return wglCreateContext(hdc
);
672 FIXME("no handler for layer %d\n", iLayerPlane
);
677 /***********************************************************************
678 * wglDescribeLayerPlane (OPENGL32.@)
680 BOOL WINAPI
wglDescribeLayerPlane(HDC hdc
,
684 LPLAYERPLANEDESCRIPTOR plpd
) {
685 FIXME("(%p,%d,%d,%d,%p)\n", hdc
, iPixelFormat
, iLayerPlane
, nBytes
, plpd
);
690 /***********************************************************************
691 * wglGetLayerPaletteEntries (OPENGL32.@)
693 int WINAPI
wglGetLayerPaletteEntries(HDC hdc
,
697 const COLORREF
*pcr
) {
698 FIXME("(): stub!\n");
703 static BOOL
filter_extensions(const char *extensions
, GLubyte
**exts_list
, GLuint
**disabled_exts
);
705 void WINAPI
glGetIntegerv(GLenum pname
, GLint
*data
)
707 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
709 TRACE("(%d, %p)\n", pname
, data
);
710 if (pname
== GL_NUM_EXTENSIONS
)
712 struct wgl_handle
*ptr
= get_current_context_ptr();
714 if (ptr
->u
.context
->disabled_exts
||
715 filter_extensions(NULL
, NULL
, &ptr
->u
.context
->disabled_exts
))
717 const GLuint
*disabled_exts
= ptr
->u
.context
->disabled_exts
;
718 GLint count
, disabled_count
= 0;
720 funcs
->gl
.p_glGetIntegerv(pname
, &count
);
721 while (*disabled_exts
++ != ~0u)
723 *data
= count
- disabled_count
;
727 funcs
->gl
.p_glGetIntegerv(pname
, data
);
730 const GLubyte
* WINAPI
glGetStringi(GLenum name
, GLuint index
)
732 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
734 TRACE("(%d, %d)\n", name
, index
);
735 if (!funcs
->ext
.p_glGetStringi
)
737 void **func_ptr
= (void **)&funcs
->ext
.p_glGetStringi
;
739 *func_ptr
= funcs
->wgl
.p_wglGetProcAddress("glGetStringi");
742 if (name
== GL_EXTENSIONS
)
744 struct wgl_handle
*ptr
= get_current_context_ptr();
746 if (ptr
->u
.context
->disabled_exts
||
747 filter_extensions(NULL
, NULL
, &ptr
->u
.context
->disabled_exts
))
749 const GLuint
*disabled_exts
= ptr
->u
.context
->disabled_exts
;
750 unsigned int disabled_count
= 0;
752 while (index
+ disabled_count
>= *disabled_exts
++)
754 return funcs
->ext
.p_glGetStringi(name
, index
+ disabled_count
);
757 return funcs
->ext
.p_glGetStringi(name
, index
);
760 /* check if the extension is present in the list */
761 static BOOL
has_extension( const char *list
, const char *ext
, size_t len
)
767 GLint extensions_count
;
769 glGetIntegerv(GL_NUM_EXTENSIONS
, &extensions_count
);
770 for (i
= 0; i
< extensions_count
; ++i
)
772 gl_ext
= (const char *)glGetStringi(GL_EXTENSIONS
, i
);
773 if (!strncmp(gl_ext
, ext
, len
) && !gl_ext
[len
])
781 while (*list
== ' ') list
++;
782 if (!strncmp( list
, ext
, len
) && (!list
[len
] || list
[len
] == ' ')) return TRUE
;
783 list
= strchr( list
, ' ' );
788 static int compar(const void *elt_a
, const void *elt_b
) {
789 return strcmp(((const OpenGL_extension
*) elt_a
)->name
,
790 ((const OpenGL_extension
*) elt_b
)->name
);
793 /* Check if a GL extension is supported */
794 static BOOL
is_extension_supported(const char* extension
)
796 enum wgl_handle_type type
= get_current_context_type();
797 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
798 const char *gl_ext_string
= NULL
;
801 TRACE("Checking for extension '%s'\n", extension
);
803 if (type
== HANDLE_CONTEXT
)
805 gl_ext_string
= (const char*)glGetString(GL_EXTENSIONS
);
808 ERR("No OpenGL extensions found, check if your OpenGL setup is correct!\n");
813 /* We use the GetProcAddress function from the display driver to retrieve function pointers
814 * for OpenGL and WGL extensions. In case of winex11.drv the OpenGL extension lookup is done
815 * using glXGetProcAddress. This function is quite unreliable in the sense that its specs don't
816 * require the function to return NULL when an extension isn't found. For this reason we check
817 * if the OpenGL extension required for the function we are looking up is supported. */
819 while ((len
= strcspn(extension
, " ")) != 0)
821 /* Check if the extension is part of the GL extension string to see if it is supported. */
822 if (has_extension(gl_ext_string
, extension
, len
))
825 /* In general an OpenGL function starts as an ARB/EXT extension and at some stage
826 * it becomes part of the core OpenGL library and can be reached without the ARB/EXT
827 * suffix as well. In the extension table, these functions contain GL_VERSION_major_minor.
828 * Check if we are searching for a core GL function */
829 if(strncmp(extension
, "GL_VERSION_", 11) == 0)
831 const GLubyte
*gl_version
= funcs
->gl
.p_glGetString(GL_VERSION
);
832 const char *version
= extension
+ 11; /* Move past 'GL_VERSION_' */
835 ERR("No OpenGL version found!\n");
839 /* Compare the major/minor version numbers of the native OpenGL library and what is required by the function.
840 * The gl_version string is guaranteed to have at least a major/minor and sometimes it has a release number as well. */
841 if( (gl_version
[0] > version
[0]) || ((gl_version
[0] == version
[0]) && (gl_version
[2] >= version
[2])) ) {
844 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]);
847 if (extension
[len
] == ' ') len
++;
854 /***********************************************************************
855 * wglGetProcAddress (OPENGL32.@)
857 PROC WINAPI
wglGetProcAddress( LPCSTR name
)
859 struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
861 OpenGL_extension ext
;
862 const OpenGL_extension
*ext_ret
;
864 if (!name
) return NULL
;
866 /* Without an active context opengl32 doesn't know to what
867 * driver it has to dispatch wglGetProcAddress.
869 if (!get_current_context_ptr())
871 WARN("No active WGL context found\n");
876 ext_ret
= bsearch(&ext
, extension_registry
, extension_registry_size
, sizeof(ext
), compar
);
879 WARN("Function %s unknown\n", name
);
883 func_ptr
= (void **)&funcs
->ext
+ (ext_ret
- extension_registry
);
886 void *driver_func
= funcs
->wgl
.p_wglGetProcAddress( name
);
888 if (!is_extension_supported(ext_ret
->extension
))
891 static const struct { const char *name
, *alt
; } alternatives
[] =
893 { "glCopyTexSubImage3DEXT", "glCopyTexSubImage3D" }, /* needed by RuneScape */
894 { "glVertexAttribDivisor", "glVertexAttribDivisorARB"}, /* needed by Caffeine */
897 for (i
= 0; i
< sizeof(alternatives
)/sizeof(alternatives
[0]); i
++)
899 if (strcmp( name
, alternatives
[i
].name
)) continue;
900 WARN("Extension %s required for %s not supported, trying %s\n",
901 ext_ret
->extension
, name
, alternatives
[i
].alt
);
902 return wglGetProcAddress( alternatives
[i
].alt
);
904 WARN("Extension %s required for %s not supported\n", ext_ret
->extension
, name
);
908 if (driver_func
== NULL
)
910 WARN("Function %s not supported by driver\n", name
);
913 *func_ptr
= driver_func
;
916 TRACE("returning %s -> %p\n", name
, ext_ret
->func
);
917 return ext_ret
->func
;
920 /***********************************************************************
921 * wglRealizeLayerPalette (OPENGL32.@)
923 BOOL WINAPI
wglRealizeLayerPalette(HDC hdc
,
931 /***********************************************************************
932 * wglSetLayerPaletteEntries (OPENGL32.@)
934 int WINAPI
wglSetLayerPaletteEntries(HDC hdc
,
938 const COLORREF
*pcr
) {
939 FIXME("(): stub!\n");
944 /***********************************************************************
945 * wglSwapLayerBuffers (OPENGL32.@)
947 BOOL WINAPI
wglSwapLayerBuffers(HDC hdc
,
949 TRACE("(%p, %08x)\n", hdc
, fuPlanes
);
951 if (fuPlanes
& WGL_SWAP_MAIN_PLANE
) {
952 if (!wglSwapBuffers( hdc
)) return FALSE
;
953 fuPlanes
&= ~WGL_SWAP_MAIN_PLANE
;
957 WARN("Following layers unhandled: %08x\n", fuPlanes
);
963 /***********************************************************************
964 * wglAllocateMemoryNV
966 * Provided by the WGL_NV_vertex_array_range extension.
968 void * WINAPI
wglAllocateMemoryNV( GLsizei size
, GLfloat readfreq
, GLfloat writefreq
, GLfloat priority
)
970 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
972 if (!funcs
->ext
.p_wglAllocateMemoryNV
) return NULL
;
973 return funcs
->ext
.p_wglAllocateMemoryNV( size
, readfreq
, writefreq
, priority
);
976 /***********************************************************************
979 * Provided by the WGL_NV_vertex_array_range extension.
981 void WINAPI
wglFreeMemoryNV( void *pointer
)
983 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
985 if (funcs
->ext
.p_wglFreeMemoryNV
) funcs
->ext
.p_wglFreeMemoryNV( pointer
);
988 /***********************************************************************
991 * Provided by the WGL_ARB_render_texture extension.
993 BOOL WINAPI
wglBindTexImageARB( HPBUFFERARB handle
, int buffer
)
995 struct wgl_handle
*ptr
= get_handle_ptr( handle
, HANDLE_PBUFFER
);
998 if (!ptr
) return FALSE
;
999 ret
= ptr
->funcs
->ext
.p_wglBindTexImageARB( ptr
->u
.pbuffer
, buffer
);
1000 release_handle_ptr( ptr
);
1004 /***********************************************************************
1005 * wglReleaseTexImageARB
1007 * Provided by the WGL_ARB_render_texture extension.
1009 BOOL WINAPI
wglReleaseTexImageARB( HPBUFFERARB handle
, int buffer
)
1011 struct wgl_handle
*ptr
= get_handle_ptr( handle
, HANDLE_PBUFFER
);
1014 if (!ptr
) return FALSE
;
1015 ret
= ptr
->funcs
->ext
.p_wglReleaseTexImageARB( ptr
->u
.pbuffer
, buffer
);
1016 release_handle_ptr( ptr
);
1020 /***********************************************************************
1021 * wglSetPbufferAttribARB
1023 * Provided by the WGL_ARB_render_texture extension.
1025 BOOL WINAPI
wglSetPbufferAttribARB( HPBUFFERARB handle
, const int *attribs
)
1027 struct wgl_handle
*ptr
= get_handle_ptr( handle
, HANDLE_PBUFFER
);
1030 if (!ptr
) return FALSE
;
1031 ret
= ptr
->funcs
->ext
.p_wglSetPbufferAttribARB( ptr
->u
.pbuffer
, attribs
);
1032 release_handle_ptr( ptr
);
1036 /***********************************************************************
1037 * wglChoosePixelFormatARB
1039 * Provided by the WGL_ARB_pixel_format extension.
1041 BOOL WINAPI
wglChoosePixelFormatARB( HDC hdc
, const int *iattribs
, const FLOAT
*fattribs
,
1042 UINT max
, int *formats
, UINT
*count
)
1044 const struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
1046 if (!funcs
|| !funcs
->ext
.p_wglChoosePixelFormatARB
) return FALSE
;
1047 return funcs
->ext
.p_wglChoosePixelFormatARB( hdc
, iattribs
, fattribs
, max
, formats
, count
);
1050 /***********************************************************************
1051 * wglGetPixelFormatAttribivARB
1053 * Provided by the WGL_ARB_pixel_format extension.
1055 BOOL WINAPI
wglGetPixelFormatAttribivARB( HDC hdc
, int format
, int layer
, UINT count
, const int *attribs
,
1058 const struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
1060 if (!funcs
|| !funcs
->ext
.p_wglGetPixelFormatAttribivARB
) return FALSE
;
1061 return funcs
->ext
.p_wglGetPixelFormatAttribivARB( hdc
, format
, layer
, count
, attribs
, values
);
1064 /***********************************************************************
1065 * wglGetPixelFormatAttribfvARB
1067 * Provided by the WGL_ARB_pixel_format extension.
1069 BOOL WINAPI
wglGetPixelFormatAttribfvARB( HDC hdc
, int format
, int layer
, UINT count
, const int *attribs
,
1072 const struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
1074 if (!funcs
|| !funcs
->ext
.p_wglGetPixelFormatAttribfvARB
) return FALSE
;
1075 return funcs
->ext
.p_wglGetPixelFormatAttribfvARB( hdc
, format
, layer
, count
, attribs
, values
);
1078 /***********************************************************************
1079 * wglCreatePbufferARB
1081 * Provided by the WGL_ARB_pbuffer extension.
1083 HPBUFFERARB WINAPI
wglCreatePbufferARB( HDC hdc
, int format
, int width
, int height
, const int *attribs
)
1086 struct wgl_pbuffer
*pbuffer
;
1087 struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
1089 if (!funcs
|| !funcs
->ext
.p_wglCreatePbufferARB
) return 0;
1090 if (!(pbuffer
= funcs
->ext
.p_wglCreatePbufferARB( hdc
, format
, width
, height
, attribs
))) return 0;
1091 ret
= alloc_handle( HANDLE_PBUFFER
, funcs
, pbuffer
);
1092 if (!ret
) funcs
->ext
.p_wglDestroyPbufferARB( pbuffer
);
1096 /***********************************************************************
1097 * wglGetPbufferDCARB
1099 * Provided by the WGL_ARB_pbuffer extension.
1101 HDC WINAPI
wglGetPbufferDCARB( HPBUFFERARB handle
)
1103 struct wgl_handle
*ptr
= get_handle_ptr( handle
, HANDLE_PBUFFER
);
1107 ret
= ptr
->funcs
->ext
.p_wglGetPbufferDCARB( ptr
->u
.pbuffer
);
1108 release_handle_ptr( ptr
);
1112 /***********************************************************************
1113 * wglReleasePbufferDCARB
1115 * Provided by the WGL_ARB_pbuffer extension.
1117 int WINAPI
wglReleasePbufferDCARB( HPBUFFERARB handle
, HDC hdc
)
1119 struct wgl_handle
*ptr
= get_handle_ptr( handle
, HANDLE_PBUFFER
);
1122 if (!ptr
) return FALSE
;
1123 ret
= ptr
->funcs
->ext
.p_wglReleasePbufferDCARB( ptr
->u
.pbuffer
, hdc
);
1124 release_handle_ptr( ptr
);
1128 /***********************************************************************
1129 * wglDestroyPbufferARB
1131 * Provided by the WGL_ARB_pbuffer extension.
1133 BOOL WINAPI
wglDestroyPbufferARB( HPBUFFERARB handle
)
1135 struct wgl_handle
*ptr
= get_handle_ptr( handle
, HANDLE_PBUFFER
);
1137 if (!ptr
) return FALSE
;
1138 ptr
->funcs
->ext
.p_wglDestroyPbufferARB( ptr
->u
.pbuffer
);
1139 free_handle_ptr( ptr
);
1143 /***********************************************************************
1144 * wglQueryPbufferARB
1146 * Provided by the WGL_ARB_pbuffer extension.
1148 BOOL WINAPI
wglQueryPbufferARB( HPBUFFERARB handle
, int attrib
, int *value
)
1150 struct wgl_handle
*ptr
= get_handle_ptr( handle
, HANDLE_PBUFFER
);
1153 if (!ptr
) return FALSE
;
1154 ret
= ptr
->funcs
->ext
.p_wglQueryPbufferARB( ptr
->u
.pbuffer
, attrib
, value
);
1155 release_handle_ptr( ptr
);
1159 /***********************************************************************
1160 * wglGetExtensionsStringARB
1162 * Provided by the WGL_ARB_extensions_string extension.
1164 const char * WINAPI
wglGetExtensionsStringARB( HDC hdc
)
1166 const struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
1168 if (!funcs
|| !funcs
->ext
.p_wglGetExtensionsStringARB
) return NULL
;
1169 return (const char *)funcs
->ext
.p_wglGetExtensionsStringARB( hdc
);
1172 /***********************************************************************
1173 * wglGetExtensionsStringEXT
1175 * Provided by the WGL_EXT_extensions_string extension.
1177 const char * WINAPI
wglGetExtensionsStringEXT(void)
1179 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1181 if (!funcs
->ext
.p_wglGetExtensionsStringEXT
) return NULL
;
1182 return (const char *)funcs
->ext
.p_wglGetExtensionsStringEXT();
1185 /***********************************************************************
1186 * wglSwapIntervalEXT
1188 * Provided by the WGL_EXT_swap_control extension.
1190 BOOL WINAPI
wglSwapIntervalEXT( int interval
)
1192 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1194 if (!funcs
->ext
.p_wglSwapIntervalEXT
) return FALSE
;
1195 return funcs
->ext
.p_wglSwapIntervalEXT( interval
);
1198 /***********************************************************************
1199 * wglGetSwapIntervalEXT
1201 * Provided by the WGL_EXT_swap_control extension.
1203 int WINAPI
wglGetSwapIntervalEXT(void)
1205 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1207 if (!funcs
->ext
.p_wglGetSwapIntervalEXT
) return FALSE
;
1208 return funcs
->ext
.p_wglGetSwapIntervalEXT();
1211 /***********************************************************************
1212 * wglSetPixelFormatWINE
1214 * Provided by the WGL_WINE_pixel_format_passthrough extension.
1216 BOOL WINAPI
wglSetPixelFormatWINE( HDC hdc
, int format
)
1218 const struct opengl_funcs
*funcs
= get_dc_funcs( hdc
);
1220 if (!funcs
|| !funcs
->ext
.p_wglSetPixelFormatWINE
) return FALSE
;
1221 return funcs
->ext
.p_wglSetPixelFormatWINE( hdc
, format
);
1224 /***********************************************************************
1225 * wglQueryCurrentRendererIntegerWINE
1227 * Provided by the WGL_WINE_query_renderer extension.
1229 BOOL WINAPI
wglQueryCurrentRendererIntegerWINE( GLenum attribute
, GLuint
*value
)
1231 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1233 if (!funcs
->ext
.p_wglQueryCurrentRendererIntegerWINE
) return FALSE
;
1234 return funcs
->ext
.p_wglQueryCurrentRendererIntegerWINE( attribute
, value
);
1237 /***********************************************************************
1238 * wglQueryCurrentRendererStringWINE
1240 * Provided by the WGL_WINE_query_renderer extension.
1242 const GLchar
* WINAPI
wglQueryCurrentRendererStringWINE( GLenum attribute
)
1244 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1246 if (!funcs
->ext
.p_wglQueryCurrentRendererStringWINE
) return NULL
;
1247 return funcs
->ext
.p_wglQueryCurrentRendererStringWINE( attribute
);
1250 /***********************************************************************
1251 * wglQueryRendererIntegerWINE
1253 * Provided by the WGL_WINE_query_renderer extension.
1255 BOOL WINAPI
wglQueryRendererIntegerWINE( HDC dc
, GLint renderer
, GLenum attribute
, GLuint
*value
)
1257 const struct opengl_funcs
*funcs
= get_dc_funcs( dc
);
1259 if (!funcs
|| !funcs
->ext
.p_wglQueryRendererIntegerWINE
) return FALSE
;
1260 return funcs
->ext
.p_wglQueryRendererIntegerWINE( dc
, renderer
, attribute
, value
);
1263 /***********************************************************************
1264 * wglQueryRendererStringWINE
1266 * Provided by the WGL_WINE_query_renderer extension.
1268 const GLchar
* WINAPI
wglQueryRendererStringWINE( HDC dc
, GLint renderer
, GLenum attribute
)
1270 const struct opengl_funcs
*funcs
= get_dc_funcs( dc
);
1272 if (!funcs
|| !funcs
->ext
.p_wglQueryRendererStringWINE
) return NULL
;
1273 return funcs
->ext
.p_wglQueryRendererStringWINE( dc
, renderer
, attribute
);
1276 /***********************************************************************
1277 * wglUseFontBitmaps_common
1279 static BOOL
wglUseFontBitmaps_common( HDC hdc
, DWORD first
, DWORD count
, DWORD listBase
, BOOL unicode
)
1281 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1283 unsigned int glyph
, size
= 0;
1284 void *bitmap
= NULL
, *gl_bitmap
= NULL
;
1288 funcs
->gl
.p_glGetIntegerv(GL_UNPACK_ALIGNMENT
, &org_alignment
);
1289 funcs
->gl
.p_glPixelStorei(GL_UNPACK_ALIGNMENT
, 4);
1291 for (glyph
= first
; glyph
< first
+ count
; glyph
++) {
1292 unsigned int needed_size
, height
, width
, width_int
;
1295 needed_size
= GetGlyphOutlineW(hdc
, glyph
, GGO_BITMAP
, &gm
, 0, NULL
, &identity
);
1297 needed_size
= GetGlyphOutlineA(hdc
, glyph
, GGO_BITMAP
, &gm
, 0, NULL
, &identity
);
1299 TRACE("Glyph: %3d / List: %d size %d\n", glyph
, listBase
, needed_size
);
1300 if (needed_size
== GDI_ERROR
) {
1305 if (needed_size
> size
) {
1307 HeapFree(GetProcessHeap(), 0, bitmap
);
1308 HeapFree(GetProcessHeap(), 0, gl_bitmap
);
1309 bitmap
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, size
);
1310 gl_bitmap
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, size
);
1312 if (needed_size
!= 0) {
1314 ret
= (GetGlyphOutlineW(hdc
, glyph
, GGO_BITMAP
, &gm
,
1315 size
, bitmap
, &identity
) != GDI_ERROR
);
1317 ret
= (GetGlyphOutlineA(hdc
, glyph
, GGO_BITMAP
, &gm
,
1318 size
, bitmap
, &identity
) != GDI_ERROR
);
1322 if (TRACE_ON(wgl
)) {
1323 unsigned int bitmask
;
1324 unsigned char *bitmap_
= bitmap
;
1326 TRACE(" - bbox: %d x %d\n", gm
.gmBlackBoxX
, gm
.gmBlackBoxY
);
1327 TRACE(" - origin: (%d, %d)\n", gm
.gmptGlyphOrigin
.x
, gm
.gmptGlyphOrigin
.y
);
1328 TRACE(" - increment: %d - %d\n", gm
.gmCellIncX
, gm
.gmCellIncY
);
1329 if (needed_size
!= 0) {
1330 TRACE(" - bitmap:\n");
1331 for (height
= 0; height
< gm
.gmBlackBoxY
; height
++) {
1333 for (width
= 0, bitmask
= 0x80; width
< gm
.gmBlackBoxX
; width
++, bitmask
>>= 1) {
1338 if (*bitmap_
& bitmask
)
1343 bitmap_
+= (4 - ((UINT_PTR
)bitmap_
& 0x03));
1349 /* In OpenGL, the bitmap is drawn from the bottom to the top... So we need to invert the
1350 * glyph for it to be drawn properly.
1352 if (needed_size
!= 0) {
1353 width_int
= (gm
.gmBlackBoxX
+ 31) / 32;
1354 for (height
= 0; height
< gm
.gmBlackBoxY
; height
++) {
1355 for (width
= 0; width
< width_int
; width
++) {
1356 ((int *) gl_bitmap
)[(gm
.gmBlackBoxY
- height
- 1) * width_int
+ width
] =
1357 ((int *) bitmap
)[height
* width_int
+ width
];
1362 funcs
->gl
.p_glNewList(listBase
++, GL_COMPILE
);
1363 if (needed_size
!= 0) {
1364 funcs
->gl
.p_glBitmap(gm
.gmBlackBoxX
, gm
.gmBlackBoxY
,
1365 0 - gm
.gmptGlyphOrigin
.x
, (int) gm
.gmBlackBoxY
- gm
.gmptGlyphOrigin
.y
,
1366 gm
.gmCellIncX
, gm
.gmCellIncY
,
1369 /* This is the case of 'empty' glyphs like the space character */
1370 funcs
->gl
.p_glBitmap(0, 0, 0, 0, gm
.gmCellIncX
, gm
.gmCellIncY
, NULL
);
1372 funcs
->gl
.p_glEndList();
1375 funcs
->gl
.p_glPixelStorei(GL_UNPACK_ALIGNMENT
, org_alignment
);
1376 HeapFree(GetProcessHeap(), 0, bitmap
);
1377 HeapFree(GetProcessHeap(), 0, gl_bitmap
);
1381 /***********************************************************************
1382 * wglUseFontBitmapsA (OPENGL32.@)
1384 BOOL WINAPI
wglUseFontBitmapsA(HDC hdc
, DWORD first
, DWORD count
, DWORD listBase
)
1386 return wglUseFontBitmaps_common( hdc
, first
, count
, listBase
, FALSE
);
1389 /***********************************************************************
1390 * wglUseFontBitmapsW (OPENGL32.@)
1392 BOOL WINAPI
wglUseFontBitmapsW(HDC hdc
, DWORD first
, DWORD count
, DWORD listBase
)
1394 return wglUseFontBitmaps_common( hdc
, first
, count
, listBase
, TRUE
);
1397 /* FIXME: should probably have a glu.h header */
1399 typedef struct GLUtesselator GLUtesselator
;
1400 typedef void (WINAPI
*_GLUfuncptr
)(void);
1402 #define GLU_TESS_BEGIN 100100
1403 #define GLU_TESS_VERTEX 100101
1404 #define GLU_TESS_END 100102
1406 static GLUtesselator
* (WINAPI
*pgluNewTess
)(void);
1407 static void (WINAPI
*pgluDeleteTess
)(GLUtesselator
*tess
);
1408 static void (WINAPI
*pgluTessNormal
)(GLUtesselator
*tess
, GLdouble x
, GLdouble y
, GLdouble z
);
1409 static void (WINAPI
*pgluTessBeginPolygon
)(GLUtesselator
*tess
, void *polygon_data
);
1410 static void (WINAPI
*pgluTessEndPolygon
)(GLUtesselator
*tess
);
1411 static void (WINAPI
*pgluTessCallback
)(GLUtesselator
*tess
, GLenum which
, _GLUfuncptr fn
);
1412 static void (WINAPI
*pgluTessBeginContour
)(GLUtesselator
*tess
);
1413 static void (WINAPI
*pgluTessEndContour
)(GLUtesselator
*tess
);
1414 static void (WINAPI
*pgluTessVertex
)(GLUtesselator
*tess
, GLdouble
*location
, GLvoid
* data
);
1416 static HMODULE
load_libglu(void)
1418 static const WCHAR glu32W
[] = {'g','l','u','3','2','.','d','l','l',0};
1419 static BOOL already_loaded
;
1420 static HMODULE module
;
1422 if (already_loaded
) return module
;
1423 already_loaded
= TRUE
;
1425 TRACE("Trying to load GLU library\n");
1426 module
= LoadLibraryW( glu32W
);
1429 WARN("Failed to load glu32\n");
1432 #define LOAD_FUNCPTR(f) p##f = (void *)GetProcAddress( module, #f )
1433 LOAD_FUNCPTR(gluNewTess
);
1434 LOAD_FUNCPTR(gluDeleteTess
);
1435 LOAD_FUNCPTR(gluTessBeginContour
);
1436 LOAD_FUNCPTR(gluTessNormal
);
1437 LOAD_FUNCPTR(gluTessBeginPolygon
);
1438 LOAD_FUNCPTR(gluTessCallback
);
1439 LOAD_FUNCPTR(gluTessEndContour
);
1440 LOAD_FUNCPTR(gluTessEndPolygon
);
1441 LOAD_FUNCPTR(gluTessVertex
);
1446 static void fixed_to_double(POINTFX fixed
, UINT em_size
, GLdouble vertex
[3])
1448 vertex
[0] = (fixed
.x
.value
+ (GLdouble
)fixed
.x
.fract
/ (1 << 16)) / em_size
;
1449 vertex
[1] = (fixed
.y
.value
+ (GLdouble
)fixed
.y
.fract
/ (1 << 16)) / em_size
;
1453 static void WINAPI
tess_callback_vertex(GLvoid
*vertex
)
1455 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1456 GLdouble
*dbl
= vertex
;
1457 TRACE("%f, %f, %f\n", dbl
[0], dbl
[1], dbl
[2]);
1458 funcs
->gl
.p_glVertex3dv(vertex
);
1461 static void WINAPI
tess_callback_begin(GLenum which
)
1463 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1464 TRACE("%d\n", which
);
1465 funcs
->gl
.p_glBegin(which
);
1468 static void WINAPI
tess_callback_end(void)
1470 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1472 funcs
->gl
.p_glEnd();
1475 typedef struct _bezier_vector
{
1480 static double bezier_deviation_squared(const bezier_vector
*p
)
1482 bezier_vector deviation
;
1483 bezier_vector vertex
;
1488 vertex
.x
= (p
[0].x
+ p
[1].x
*2 + p
[2].x
)/4 - p
[0].x
;
1489 vertex
.y
= (p
[0].y
+ p
[1].y
*2 + p
[2].y
)/4 - p
[0].y
;
1491 base
.x
= p
[2].x
- p
[0].x
;
1492 base
.y
= p
[2].y
- p
[0].y
;
1494 base_length
= sqrt(base
.x
*base
.x
+ base
.y
*base
.y
);
1495 base
.x
/= base_length
;
1496 base
.y
/= base_length
;
1498 dot
= base
.x
*vertex
.x
+ base
.y
*vertex
.y
;
1499 dot
= min(max(dot
, 0.0), base_length
);
1503 deviation
.x
= vertex
.x
-base
.x
;
1504 deviation
.y
= vertex
.y
-base
.y
;
1506 return deviation
.x
*deviation
.x
+ deviation
.y
*deviation
.y
;
1509 static int bezier_approximate(const bezier_vector
*p
, bezier_vector
*points
, FLOAT deviation
)
1511 bezier_vector first_curve
[3];
1512 bezier_vector second_curve
[3];
1513 bezier_vector vertex
;
1516 if(bezier_deviation_squared(p
) <= deviation
*deviation
)
1523 vertex
.x
= (p
[0].x
+ p
[1].x
*2 + p
[2].x
)/4;
1524 vertex
.y
= (p
[0].y
+ p
[1].y
*2 + p
[2].y
)/4;
1526 first_curve
[0] = p
[0];
1527 first_curve
[1].x
= (p
[0].x
+ p
[1].x
)/2;
1528 first_curve
[1].y
= (p
[0].y
+ p
[1].y
)/2;
1529 first_curve
[2] = vertex
;
1531 second_curve
[0] = vertex
;
1532 second_curve
[1].x
= (p
[2].x
+ p
[1].x
)/2;
1533 second_curve
[1].y
= (p
[2].y
+ p
[1].y
)/2;
1534 second_curve
[2] = p
[2];
1536 total_vertices
= bezier_approximate(first_curve
, points
, deviation
);
1538 points
+= total_vertices
;
1539 total_vertices
+= bezier_approximate(second_curve
, points
, deviation
);
1540 return total_vertices
;
1543 /***********************************************************************
1544 * wglUseFontOutlines_common
1546 static BOOL
wglUseFontOutlines_common(HDC hdc
,
1553 LPGLYPHMETRICSFLOAT lpgmf
,
1556 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1558 GLUtesselator
*tess
= NULL
;
1560 HFONT old_font
, unscaled_font
;
1561 UINT em_size
= 1024;
1564 TRACE("(%p, %d, %d, %d, %f, %f, %d, %p, %s)\n", hdc
, first
, count
,
1565 listBase
, deviation
, extrusion
, format
, lpgmf
, unicode
? "W" : "A");
1567 if(deviation
<= 0.0)
1568 deviation
= 1.0/em_size
;
1570 if(format
== WGL_FONT_POLYGONS
)
1574 ERR("glu32 is required for this function but isn't available\n");
1578 tess
= pgluNewTess();
1579 if(!tess
) return FALSE
;
1580 pgluTessCallback(tess
, GLU_TESS_VERTEX
, (_GLUfuncptr
)tess_callback_vertex
);
1581 pgluTessCallback(tess
, GLU_TESS_BEGIN
, (_GLUfuncptr
)tess_callback_begin
);
1582 pgluTessCallback(tess
, GLU_TESS_END
, tess_callback_end
);
1585 GetObjectW(GetCurrentObject(hdc
, OBJ_FONT
), sizeof(lf
), &lf
);
1586 rc
.left
= rc
.right
= rc
.bottom
= 0;
1588 DPtoLP(hdc
, (POINT
*)&rc
, 2);
1589 lf
.lfHeight
= -abs(rc
.top
- rc
.bottom
);
1590 lf
.lfOrientation
= lf
.lfEscapement
= 0;
1591 unscaled_font
= CreateFontIndirectW(&lf
);
1592 old_font
= SelectObject(hdc
, unscaled_font
);
1594 for (glyph
= first
; glyph
< first
+ count
; glyph
++)
1599 TTPOLYGONHEADER
*pph
;
1601 GLdouble
*vertices
= NULL
;
1602 int vertex_total
= -1;
1605 needed
= GetGlyphOutlineW(hdc
, glyph
, GGO_NATIVE
, &gm
, 0, NULL
, &identity
);
1607 needed
= GetGlyphOutlineA(hdc
, glyph
, GGO_NATIVE
, &gm
, 0, NULL
, &identity
);
1609 if(needed
== GDI_ERROR
)
1612 buf
= HeapAlloc(GetProcessHeap(), 0, needed
);
1615 GetGlyphOutlineW(hdc
, glyph
, GGO_NATIVE
, &gm
, needed
, buf
, &identity
);
1617 GetGlyphOutlineA(hdc
, glyph
, GGO_NATIVE
, &gm
, needed
, buf
, &identity
);
1619 TRACE("glyph %d\n", glyph
);
1623 lpgmf
->gmfBlackBoxX
= (float)gm
.gmBlackBoxX
/ em_size
;
1624 lpgmf
->gmfBlackBoxY
= (float)gm
.gmBlackBoxY
/ em_size
;
1625 lpgmf
->gmfptGlyphOrigin
.x
= (float)gm
.gmptGlyphOrigin
.x
/ em_size
;
1626 lpgmf
->gmfptGlyphOrigin
.y
= (float)gm
.gmptGlyphOrigin
.y
/ em_size
;
1627 lpgmf
->gmfCellIncX
= (float)gm
.gmCellIncX
/ em_size
;
1628 lpgmf
->gmfCellIncY
= (float)gm
.gmCellIncY
/ em_size
;
1630 TRACE("%fx%f at %f,%f inc %f,%f\n", lpgmf
->gmfBlackBoxX
, lpgmf
->gmfBlackBoxY
,
1631 lpgmf
->gmfptGlyphOrigin
.x
, lpgmf
->gmfptGlyphOrigin
.y
, lpgmf
->gmfCellIncX
, lpgmf
->gmfCellIncY
);
1635 funcs
->gl
.p_glNewList(listBase
++, GL_COMPILE
);
1636 funcs
->gl
.p_glFrontFace(GL_CCW
);
1637 if(format
== WGL_FONT_POLYGONS
)
1639 funcs
->gl
.p_glNormal3d(0.0, 0.0, 1.0);
1640 pgluTessNormal(tess
, 0, 0, 1);
1641 pgluTessBeginPolygon(tess
, NULL
);
1646 if(vertex_total
!= -1)
1647 vertices
= HeapAlloc(GetProcessHeap(), 0, vertex_total
* 3 * sizeof(GLdouble
));
1650 pph
= (TTPOLYGONHEADER
*)buf
;
1651 while((BYTE
*)pph
< buf
+ needed
)
1653 GLdouble previous
[3];
1654 fixed_to_double(pph
->pfxStart
, em_size
, previous
);
1657 TRACE("\tstart %d, %d\n", pph
->pfxStart
.x
.value
, pph
->pfxStart
.y
.value
);
1659 if(format
== WGL_FONT_POLYGONS
)
1660 pgluTessBeginContour(tess
);
1662 funcs
->gl
.p_glBegin(GL_LINE_LOOP
);
1666 fixed_to_double(pph
->pfxStart
, em_size
, vertices
);
1667 if(format
== WGL_FONT_POLYGONS
)
1668 pgluTessVertex(tess
, vertices
, vertices
);
1670 funcs
->gl
.p_glVertex3d(vertices
[0], vertices
[1], vertices
[2]);
1675 ppc
= (TTPOLYCURVE
*)((char*)pph
+ sizeof(*pph
));
1676 while((char*)ppc
< (char*)pph
+ pph
->cb
)
1681 switch(ppc
->wType
) {
1683 for(i
= 0; i
< ppc
->cpfx
; i
++)
1687 TRACE("\t\tline to %d, %d\n",
1688 ppc
->apfx
[i
].x
.value
, ppc
->apfx
[i
].y
.value
);
1689 fixed_to_double(ppc
->apfx
[i
], em_size
, vertices
);
1690 if(format
== WGL_FONT_POLYGONS
)
1691 pgluTessVertex(tess
, vertices
, vertices
);
1693 funcs
->gl
.p_glVertex3d(vertices
[0], vertices
[1], vertices
[2]);
1696 fixed_to_double(ppc
->apfx
[i
], em_size
, previous
);
1701 case TT_PRIM_QSPLINE
:
1702 for(i
= 0; i
< ppc
->cpfx
-1; i
++)
1704 bezier_vector curve
[3];
1705 bezier_vector
*points
;
1706 GLdouble curve_vertex
[3];
1709 TRACE("\t\tcurve %d,%d %d,%d\n",
1710 ppc
->apfx
[i
].x
.value
, ppc
->apfx
[i
].y
.value
,
1711 ppc
->apfx
[i
+ 1].x
.value
, ppc
->apfx
[i
+ 1].y
.value
);
1713 curve
[0].x
= previous
[0];
1714 curve
[0].y
= previous
[1];
1715 fixed_to_double(ppc
->apfx
[i
], em_size
, curve_vertex
);
1716 curve
[1].x
= curve_vertex
[0];
1717 curve
[1].y
= curve_vertex
[1];
1718 fixed_to_double(ppc
->apfx
[i
+ 1], em_size
, curve_vertex
);
1719 curve
[2].x
= curve_vertex
[0];
1720 curve
[2].y
= curve_vertex
[1];
1723 curve
[2].x
= (curve
[1].x
+ curve
[2].x
)/2;
1724 curve
[2].y
= (curve
[1].y
+ curve
[2].y
)/2;
1726 num
= bezier_approximate(curve
, NULL
, deviation
);
1727 points
= HeapAlloc(GetProcessHeap(), 0, num
*sizeof(bezier_vector
));
1728 num
= bezier_approximate(curve
, points
, deviation
);
1729 vertex_total
+= num
;
1732 for(j
=0; j
<num
; j
++)
1734 TRACE("\t\t\tvertex at %f,%f\n", points
[j
].x
, points
[j
].y
);
1735 vertices
[0] = points
[j
].x
;
1736 vertices
[1] = points
[j
].y
;
1738 if(format
== WGL_FONT_POLYGONS
)
1739 pgluTessVertex(tess
, vertices
, vertices
);
1741 funcs
->gl
.p_glVertex3d(vertices
[0], vertices
[1], vertices
[2]);
1745 HeapFree(GetProcessHeap(), 0, points
);
1746 previous
[0] = curve
[2].x
;
1747 previous
[1] = curve
[2].y
;
1751 ERR("\t\tcurve type = %d\n", ppc
->wType
);
1752 if(format
== WGL_FONT_POLYGONS
)
1753 pgluTessEndContour(tess
);
1755 funcs
->gl
.p_glEnd();
1759 ppc
= (TTPOLYCURVE
*)((char*)ppc
+ sizeof(*ppc
) +
1760 (ppc
->cpfx
- 1) * sizeof(POINTFX
));
1762 if(format
== WGL_FONT_POLYGONS
)
1763 pgluTessEndContour(tess
);
1765 funcs
->gl
.p_glEnd();
1766 pph
= (TTPOLYGONHEADER
*)((char*)pph
+ pph
->cb
);
1771 if(format
== WGL_FONT_POLYGONS
)
1772 pgluTessEndPolygon(tess
);
1773 funcs
->gl
.p_glTranslated((GLdouble
)gm
.gmCellIncX
/ em_size
, (GLdouble
)gm
.gmCellIncY
/ em_size
, 0.0);
1774 funcs
->gl
.p_glEndList();
1775 HeapFree(GetProcessHeap(), 0, buf
);
1776 HeapFree(GetProcessHeap(), 0, vertices
);
1780 DeleteObject(SelectObject(hdc
, old_font
));
1781 if(format
== WGL_FONT_POLYGONS
)
1782 pgluDeleteTess(tess
);
1787 /***********************************************************************
1788 * wglUseFontOutlinesA (OPENGL32.@)
1790 BOOL WINAPI
wglUseFontOutlinesA(HDC hdc
,
1797 LPGLYPHMETRICSFLOAT lpgmf
)
1799 return wglUseFontOutlines_common(hdc
, first
, count
, listBase
, deviation
, extrusion
, format
, lpgmf
, FALSE
);
1802 /***********************************************************************
1803 * wglUseFontOutlinesW (OPENGL32.@)
1805 BOOL WINAPI
wglUseFontOutlinesW(HDC hdc
,
1812 LPGLYPHMETRICSFLOAT lpgmf
)
1814 return wglUseFontOutlines_common(hdc
, first
, count
, listBase
, deviation
, extrusion
, format
, lpgmf
, TRUE
);
1817 /***********************************************************************
1818 * glDebugEntry (OPENGL32.@)
1820 GLint WINAPI
glDebugEntry( GLint unknown1
, GLint unknown2
)
1825 static GLubyte
*filter_extensions_list(const char *extensions
, const char *disabled
)
1830 p
= str
= HeapAlloc(GetProcessHeap(), 0, strlen(extensions
) + 2);
1834 TRACE( "GL_EXTENSIONS:\n" );
1838 while (*extensions
== ' ')
1842 if (!(end
= strchr(extensions
, ' ')))
1843 end
= extensions
+ strlen(extensions
);
1844 memcpy(p
, extensions
, end
- extensions
);
1845 p
[end
- extensions
] = 0;
1846 if (!has_extension(disabled
, p
, strlen(p
)))
1848 TRACE("++ %s\n", p
);
1849 p
+= end
- extensions
;
1854 TRACE("-- %s (disabled by config)\n", p
);
1859 return (GLubyte
*)str
;
1862 static GLuint
*filter_extensions_index(const char *disabled
)
1864 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1865 const char *ext
, *end
, *gl_ext
;
1866 GLuint
*disabled_exts
, *new_disabled_exts
;
1867 unsigned int i
= 0, j
, disabled_size
;
1868 GLint extensions_count
;
1870 if (!funcs
->ext
.p_glGetStringi
)
1872 void **func_ptr
= (void **)&funcs
->ext
.p_glGetStringi
;
1874 *func_ptr
= funcs
->wgl
.p_wglGetProcAddress("glGetStringi");
1875 if (!funcs
->ext
.p_glGetStringi
)
1879 funcs
->gl
.p_glGetIntegerv(GL_NUM_EXTENSIONS
, &extensions_count
);
1881 disabled_exts
= HeapAlloc(GetProcessHeap(), 0, disabled_size
* sizeof(*disabled_exts
));
1885 TRACE( "GL_EXTENSIONS:\n" );
1887 for (j
= 0; j
< extensions_count
; ++j
)
1889 gl_ext
= (const char *)funcs
->ext
.p_glGetStringi(GL_EXTENSIONS
, j
);
1897 TRACE("++ %s\n", gl_ext
);
1900 if (!(end
= strchr(ext
, ' ')))
1901 end
= ext
+ strlen(ext
);
1903 if (!strncmp(gl_ext
, ext
, end
- ext
) && !gl_ext
[end
- ext
])
1905 if (i
+ 1 == disabled_size
)
1908 new_disabled_exts
= HeapReAlloc(GetProcessHeap(), 0, disabled_exts
,
1909 disabled_size
* sizeof(*disabled_exts
));
1910 if (!new_disabled_exts
)
1912 disabled_exts
[i
] = ~0u;
1913 return disabled_exts
;
1915 disabled_exts
= new_disabled_exts
;
1917 TRACE("-- %s (disabled by config)\n", gl_ext
);
1918 disabled_exts
[i
++] = j
;
1924 disabled_exts
[i
] = ~0u;
1925 return disabled_exts
;
1928 /* build the extension string by filtering out the disabled extensions */
1929 static BOOL
filter_extensions(const char *extensions
, GLubyte
**exts_list
, GLuint
**disabled_exts
)
1931 static const char *disabled
;
1939 /* @@ Wine registry key: HKCU\Software\Wine\OpenGL */
1940 if (!RegOpenKeyA( HKEY_CURRENT_USER
, "Software\\Wine\\OpenGL", &hkey
))
1942 if (!RegQueryValueExA( hkey
, "DisabledExtensions", 0, NULL
, NULL
, &size
))
1944 str
= HeapAlloc( GetProcessHeap(), 0, size
);
1945 if (RegQueryValueExA( hkey
, "DisabledExtensions", 0, NULL
, (BYTE
*)str
, &size
)) *str
= 0;
1947 RegCloseKey( hkey
);
1951 if (InterlockedCompareExchangePointer( (void **)&disabled
, str
, NULL
))
1952 HeapFree( GetProcessHeap(), 0, str
);
1960 if (extensions
&& !*exts_list
)
1961 *exts_list
= filter_extensions_list(extensions
, disabled
);
1963 if (!*disabled_exts
)
1964 *disabled_exts
= filter_extensions_index(disabled
);
1966 return (exts_list
&& *exts_list
) || *disabled_exts
;
1969 /***********************************************************************
1970 * glGetString (OPENGL32.@)
1972 const GLubyte
* WINAPI
glGetString( GLenum name
)
1974 const struct opengl_funcs
*funcs
= NtCurrentTeb()->glTable
;
1975 const GLubyte
*ret
= funcs
->gl
.p_glGetString( name
);
1977 if (name
== GL_EXTENSIONS
&& ret
)
1979 struct wgl_handle
*ptr
= get_current_context_ptr();
1980 if (ptr
->u
.context
->extensions
||
1981 filter_extensions((const char *)ret
, &ptr
->u
.context
->extensions
, &ptr
->u
.context
->disabled_exts
))
1982 ret
= ptr
->u
.context
->extensions
;
1987 /***********************************************************************
1988 * OpenGL initialisation routine
1990 BOOL WINAPI
DllMain( HINSTANCE hinst
, DWORD reason
, LPVOID reserved
)
1994 case DLL_PROCESS_ATTACH
:
1995 NtCurrentTeb()->glTable
= &null_opengl_funcs
;
1997 case DLL_THREAD_ATTACH
:
1998 NtCurrentTeb()->glTable
= &null_opengl_funcs
;