msi: Add tests for the InstallServices action.
[wine] / dlls / gdi / opengl.c
1 /*
2  * OpenGL function forwarding to the display driver
3  *
4  * Copyright (c) 1999 Lionel Ulmer
5  * Copyright (c) 2005 Raphael Junqueira
6  * Copyright (c) 2006 Roderick Colenbrander
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #include "config.h"
24 #include "wine/port.h"
25
26 #include <stdarg.h>
27 #include <string.h>
28 #include <stdlib.h>
29
30 #include "windef.h"
31 #include "winbase.h"
32 #include "wingdi.h"
33 #include "winerror.h"
34 #include "winternl.h"
35 #include "winnt.h"
36 #include "gdi.h"
37 #include "gdi_private.h"
38 #include "wine/debug.h"
39
40 WINE_DEFAULT_DEBUG_CHANNEL(wgl);
41
42 static HDC default_hdc = 0;
43
44 typedef struct opengl_context
45 {
46     HDC hdc;
47 } *OPENGL_Context;
48
49 /* We route all wgl functions from opengl32.dll through gdi32.dll to
50  * the display driver. Various wgl calls have a hDC as one of their parameters.
51  * Using DC_GetDCPtr we get access to the functions exported by the driver.
52  * Some functions don't receive a hDC. This function creates a global hdc and
53  * if there's already a global hdc, it returns it.
54  */
55 static DC* OPENGL_GetDefaultDC()
56 {
57     if(!default_hdc)
58         default_hdc = CreateDCA("DISPLAY", NULL, NULL, NULL);
59         
60     return DC_GetDCPtr(default_hdc);
61 }
62
63 /***********************************************************************
64  *              wglCreateContext (OPENGL32.@)
65  */
66 HGLRC WINAPI wglCreateContext(HDC hdc)
67 {
68     HGLRC ret = 0;
69     DC * dc = DC_GetDCPtr( hdc );
70
71     TRACE("(%p)\n",hdc);
72
73     if (!dc) return 0;
74
75     if (!dc->funcs->pwglCreateContext) FIXME(" :stub\n");
76     else ret = dc->funcs->pwglCreateContext(dc->physDev);
77
78     GDI_ReleaseObj( hdc );
79     return ret;
80 }
81
82
83 /***********************************************************************
84  *              wglDeleteContext (OPENGL32.@)
85  */
86 BOOL WINAPI wglDeleteContext(HGLRC hglrc)
87 {
88     DC *dc;
89     BOOL ret = FALSE;
90     OPENGL_Context ctx = (OPENGL_Context)hglrc;
91
92     TRACE("hglrc: (%p)\n", hglrc);
93     if(ctx == NULL)
94         return FALSE;
95
96     /* Retrieve the HDC associated with the context to access the display driver */
97     dc = DC_GetDCPtr(ctx->hdc);
98     if (!dc) return FALSE;
99
100     if (!dc->funcs->pwglDeleteContext) FIXME(" :stub\n");
101     else ret = dc->funcs->pwglDeleteContext(hglrc);
102
103     GDI_ReleaseObj(ctx->hdc);
104     return ret;
105 }
106
107 /***********************************************************************
108  *              wglGetCurrentContext (OPENGL32.@)
109  */
110 HGLRC WINAPI wglGetCurrentContext(void)
111 {
112     HGLRC ret = NtCurrentTeb()->glContext;
113     TRACE(" returning %p\n", ret);
114     return ret;
115 }
116
117 /***********************************************************************
118  *              wglGetCurrentDC (OPENGL32.@)
119  */
120 HDC WINAPI wglGetCurrentDC(void)
121 {
122     OPENGL_Context ctx = (OPENGL_Context)wglGetCurrentContext();
123
124     TRACE(" found context: %p\n", ctx);
125     if(ctx == NULL)
126         return NULL;
127
128     /* Retrieve the current DC from the active context */
129     TRACE(" returning hdc: %p\n", ctx->hdc);
130     return ctx->hdc;
131 }
132
133 /***********************************************************************
134  *              wglMakeCurrent (OPENGL32.@)
135  */
136 BOOL WINAPI wglMakeCurrent(HDC hdc, HGLRC hglrc)
137 {
138     BOOL ret = FALSE;
139     DC * dc = NULL;
140
141     /* When the context hglrc is NULL, the HDC is ignored and can be NULL.
142      * In that case use the global hDC to get access to the driver.  */
143     if(hglrc == NULL)
144         dc = OPENGL_GetDefaultDC();
145     else
146         dc = DC_GetDCPtr( hdc );
147
148     TRACE("hdc: (%p), hglrc: (%p)\n", hdc, hglrc);
149
150     if (!dc) return FALSE;
151
152     if (!dc->funcs->pwglMakeCurrent) FIXME(" :stub\n");
153     else ret = dc->funcs->pwglMakeCurrent(dc->physDev,hglrc);
154
155     if(hglrc == NULL)
156         GDI_ReleaseObj(default_hdc);
157     else
158         GDI_ReleaseObj(hdc);
159
160     return ret;
161 }
162
163 /***********************************************************************
164  *              wglShareLists (OPENGL32.@)
165  */
166 BOOL WINAPI wglShareLists(HGLRC hglrc1, HGLRC hglrc2)
167 {
168     DC *dc;
169     BOOL ret = FALSE;
170     OPENGL_Context ctx = (OPENGL_Context)hglrc1;
171
172     TRACE("hglrc1: (%p); hglrc: (%p)\n", hglrc1, hglrc2);
173     if(ctx == NULL)
174         return FALSE;
175     
176     /* Retrieve the HDC associated with the context to access the display driver */
177     dc = DC_GetDCPtr(ctx->hdc);
178     if (!dc) return FALSE;
179
180     if (!dc->funcs->pwglShareLists) FIXME(" :stub\n");
181     else ret = dc->funcs->pwglShareLists(hglrc1, hglrc2);
182
183     GDI_ReleaseObj(ctx->hdc);
184     return ret;
185 }
186
187 /***********************************************************************
188  *              wglUseFontBitmapsA (OPENGL32.@)
189  */
190 BOOL WINAPI wglUseFontBitmapsA(HDC hdc, DWORD first, DWORD count, DWORD listBase)
191 {
192     BOOL ret = FALSE;
193     DC * dc = DC_GetDCPtr( hdc );
194
195     TRACE("(%p, %d, %d, %d)\n", hdc, first, count, listBase);
196
197     if (!dc) return FALSE;
198
199     if (!dc->funcs->pwglUseFontBitmapsA) FIXME(" :stub\n");
200     else ret = dc->funcs->pwglUseFontBitmapsA(dc->physDev, first, count, listBase);
201
202     GDI_ReleaseObj( hdc);
203     return ret;
204 }
205
206 /***********************************************************************
207  *              wglUseFontBitmapsW (OPENGL32.@)
208  */
209 BOOL WINAPI wglUseFontBitmapsW(HDC hdc, DWORD first, DWORD count, DWORD listBase)
210 {
211     BOOL ret = FALSE;
212     DC * dc = DC_GetDCPtr( hdc );
213
214     TRACE("(%p, %d, %d, %d)\n", hdc, first, count, listBase);
215
216     if (!dc) return FALSE;
217
218     if (!dc->funcs->pwglUseFontBitmapsW) FIXME(" :stub\n");
219     else ret = dc->funcs->pwglUseFontBitmapsW(dc->physDev, first, count, listBase);
220
221     GDI_ReleaseObj( hdc);
222     return ret;
223 }