comctl32: We can now store binary files in the repository.
[wine] / dlls / opengl32 / tests / opengl.c
1 /*
2  * Some tests for OpenGL functions
3  *
4  * Copyright (C) 2007 Roderick Colenbrander
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include <windows.h>
22 #include <wingdi.h>
23 #include "wine/test.h"
24
25 #define MAX_FORMATS 256
26 typedef void* HPBUFFERARB;
27
28 /* WGL_ARB_extensions_string */
29 static const char* (WINAPI *pwglGetExtensionsStringARB)(HDC);
30 static int (WINAPI *pwglReleasePbufferDCARB)(HPBUFFERARB, HDC);
31
32 /* WGL_ARB_make_current_read */
33 static BOOL (WINAPI *pwglMakeContextCurrentARB)(HDC hdraw, HDC hread, HGLRC hglrc);
34 static HDC (WINAPI *pwglGetCurrentReadDCARB)();
35
36 /* WGL_ARB_pixel_format */
37 #define WGL_COLOR_BITS_ARB 0x2014
38 #define WGL_RED_BITS_ARB   0x2015
39 #define WGL_GREEN_BITS_ARB 0x2017
40 #define WGL_BLUE_BITS_ARB  0x2019
41 #define WGL_ALPHA_BITS_ARB 0x201B
42 #define WGL_SUPPORT_GDI_ARB   0x200F
43 #define WGL_DOUBLE_BUFFER_ARB 0x2011
44
45 static BOOL (WINAPI *pwglChoosePixelFormatARB)(HDC, const int *, const FLOAT *, UINT, int *, UINT *);
46 static BOOL (WINAPI *pwglGetPixelFormatAttribivARB)(HDC, int, int, UINT, const int *, int *);
47
48 /* WGL_ARB_pbuffer */
49 #define WGL_DRAW_TO_PBUFFER_ARB 0x202D
50 static HPBUFFERARB* (WINAPI *pwglCreatePbufferARB)(HDC, int, int, int, const int *);
51 static HDC (WINAPI *pwglGetPbufferDCARB)(HPBUFFERARB);
52
53 static const char* wgl_extensions = NULL;
54
55 static void init_functions(void)
56 {
57 #define GET_PROC(func) \
58     p ## func = (void*)wglGetProcAddress(#func); \
59     if(!p ## func) \
60       trace("wglGetProcAddress(%s) failed\n", #func);
61
62     /* WGL_ARB_extensions_string */
63     GET_PROC(wglGetExtensionsStringARB)
64
65     /* WGL_ARB_make_current_read */
66     GET_PROC(wglMakeContextCurrentARB);
67     GET_PROC(wglGetCurrentReadDCARB);
68
69     /* WGL_ARB_pixel_format */
70     GET_PROC(wglChoosePixelFormatARB)
71     GET_PROC(wglGetPixelFormatAttribivARB)
72
73     /* WGL_ARB_pbuffer */
74     GET_PROC(wglCreatePbufferARB)
75     GET_PROC(wglGetPbufferDCARB)
76     GET_PROC(wglReleasePbufferDCARB)
77
78 #undef GET_PROC
79 }
80
81 static void test_pbuffers(HDC hdc)
82 {
83     const int iAttribList[] = { WGL_DRAW_TO_PBUFFER_ARB, 1, /* Request pbuffer support */
84                                 0 };
85     int iFormats[MAX_FORMATS];
86     unsigned int nOnscreenFormats;
87     unsigned int nFormats;
88     int i, res;
89     int iPixelFormat = 0;
90
91     nOnscreenFormats = DescribePixelFormat(hdc, 0, 0, NULL);
92
93     /* When you want to render to a pbuffer you need to call wglGetPbufferDCARB which
94      * returns a 'magic' HDC which you can then pass to wglMakeCurrent to switch rendering
95      * to the pbuffer. Below some tests are performed on what happens if you use standard WGL calls
96      * on this 'magic' HDC for both a pixelformat that support onscreen and offscreen rendering
97      * and a pixelformat that's only available for offscreen rendering (this means that only
98      * wglChoosePixelFormatARB and friends know about the format.
99      *
100      * The first thing we need are pixelformats with pbuffer capabilites.
101      */
102     res = pwglChoosePixelFormatARB(hdc, iAttribList, NULL, MAX_FORMATS, iFormats, &nFormats);
103     if(res <= 0)
104     {
105         skip("No pbuffer compatible formats found while WGL_ARB_pbuffer is supported\n");
106         return;
107     }
108     trace("nOnscreenFormats: %d\n", nOnscreenFormats);
109     trace("Total number of pbuffer capable pixelformats: %d\n", nFormats);
110
111     /* Try to select an onscreen pixelformat out of the list */
112     for(i=0; i < nFormats; i++)
113     {
114         /* Check if the format is onscreen, if it is choose it */
115         if(iFormats[i] <= nOnscreenFormats)
116         {
117             iPixelFormat = iFormats[i];
118             trace("Selected iPixelFormat=%d\n", iPixelFormat);
119             break;
120         }
121     }
122
123     /* A video driver supports a large number of onscreen and offscreen pixelformats.
124      * The traditional WGL calls only see a subset of the whole pixelformat list. First
125      * of all they only see the onscreen formats (the offscreen formats are at the end of the
126      * pixelformat list) and second extended pixelformat capabilities are hidden from the
127      * standard WGL calls. Only functions that depend on WGL_ARB_pixel_format can see them.
128      *
129      * Below we check if the pixelformat is also supported onscreen.
130      */
131     if(iPixelFormat != 0)
132     {
133         HDC pbuffer_hdc;
134         HPBUFFERARB pbuffer = pwglCreatePbufferARB(hdc, iPixelFormat, 640 /* width */, 480 /* height */, NULL);
135         if(!pbuffer)
136             skip("Pbuffer creation failed!\n");
137
138         /* Test the pixelformat returned by GetPixelFormat on a pbuffer as the behavior is not clear */
139         pbuffer_hdc = pwglGetPbufferDCARB(pbuffer);
140         res = GetPixelFormat(pbuffer_hdc);
141         ok(res == iPixelFormat, "Unexpected iPixelFormat=%d returned by GetPixelFormat for format %d\n", res, iPixelFormat);
142         trace("iPixelFormat returned by GetPixelFormat: %d\n", res);
143         trace("PixelFormat from wglChoosePixelFormatARB: %d\n", iPixelFormat);
144
145         pwglReleasePbufferDCARB(pbuffer, hdc);
146     }
147     else skip("Pbuffer test for onscreen pixelformat skipped as no onscreen format with pbuffer capabilities have been found\n");
148
149     /* Search for a real offscreen format */
150     for(i=0, iPixelFormat=0; i<nFormats; i++)
151     {
152         if(iFormats[i] > nOnscreenFormats)
153         {
154             iPixelFormat = iFormats[i];
155             trace("Selected iPixelFormat: %d\n", iPixelFormat);
156             break;
157         }
158     }
159
160     if(iPixelFormat != 0)
161     {
162         HDC pbuffer_hdc;
163         HPBUFFERARB pbuffer = pwglCreatePbufferARB(hdc, iPixelFormat, 640 /* width */, 480 /* height */, NULL);
164         if(!pbuffer)
165             skip("Pbuffer creation failed!\n");
166
167         /* Test the pixelformat returned by GetPixelFormat on a pbuffer as the behavior is not clear */
168         pbuffer_hdc = pwglGetPbufferDCARB(pbuffer);
169         res = GetPixelFormat(pbuffer_hdc);
170
171         ok(res == 1, "Unexpected iPixelFormat=%d (1 expected) returned by GetPixelFormat for offscreen format %d\n", res, iPixelFormat);
172         trace("iPixelFormat returned by GetPixelFormat: %d\n", res);
173         trace("PixelFormat from wglChoosePixelFormatARB: %d\n", iPixelFormat);
174         pwglReleasePbufferDCARB(pbuffer, hdc);
175     }
176     else skip("Pbuffer test for offscreen pixelformat skipped as no offscreen-only format with pbuffer capabilities has been found\n");
177 }
178
179 static void test_setpixelformat(void)
180 {
181     int res = 0;
182     int pf;
183     PIXELFORMATDESCRIPTOR pfd = {
184         sizeof(PIXELFORMATDESCRIPTOR),
185         1,                     /* version */
186         PFD_DRAW_TO_WINDOW |
187         PFD_SUPPORT_OPENGL |
188         PFD_DOUBLEBUFFER,
189         PFD_TYPE_RGBA,
190         24,                    /* 24-bit color depth */
191         0, 0, 0, 0, 0, 0,      /* color bits */
192         0,                     /* alpha buffer */
193         0,                     /* shift bit */
194         0,                     /* accumulation buffer */
195         0, 0, 0, 0,            /* accum bits */
196         32,                    /* z-buffer */
197         0,                     /* stencil buffer */
198         0,                     /* auxiliary buffer */
199         PFD_MAIN_PLANE,        /* main layer */
200         0,                     /* reserved */
201         0, 0, 0                /* layer masks */
202     };
203
204     HDC hdc = GetDC(0);
205     ok(hdc != 0, "GetDC(0) failed!\n");
206
207     /* This should pass even on the main device context */
208     pf = ChoosePixelFormat(hdc, &pfd);
209     ok(pf != 0, "ChoosePixelFormat failed on main device context\n");
210
211     /* SetPixelFormat on the main device context 'X root window' should fail */
212     res = SetPixelFormat(hdc, pf, &pfd);
213     ok(res == 0, "SetPixelFormat on main device context should fail\n");
214 }
215
216 static void test_colorbits(HDC hdc)
217 {
218     const int iAttribList[] = { WGL_COLOR_BITS_ARB, WGL_RED_BITS_ARB, WGL_GREEN_BITS_ARB,
219                                 WGL_BLUE_BITS_ARB, WGL_ALPHA_BITS_ARB };
220     int iAttribRet[sizeof(iAttribList)/sizeof(iAttribList[0])];
221     const int iAttribs[] = { WGL_ALPHA_BITS_ARB, 1, 0 };
222     unsigned int nFormats;
223     int res;
224     int iPixelFormat = 0;
225
226     /* We need a pixel format with at least one bit of alpha */
227     res = pwglChoosePixelFormatARB(hdc, iAttribs, NULL, 1, &iPixelFormat, &nFormats);
228     if(res == FALSE || nFormats == 0)
229     {
230         skip("No suitable pixel formats found\n");
231         return;
232     }
233
234     res = pwglGetPixelFormatAttribivARB(hdc, iPixelFormat, 0,
235               sizeof(iAttribList)/sizeof(iAttribList[0]), iAttribList, iAttribRet);
236     if(res == FALSE)
237     {
238         skip("wglGetPixelFormatAttribivARB failed\n");
239         return;
240     }
241     iAttribRet[1] += iAttribRet[2]+iAttribRet[3]+iAttribRet[4];
242     ok(iAttribRet[0] == iAttribRet[1], "WGL_COLOR_BITS_ARB (%d) does not equal R+G+B+A (%d)!\n",
243                                        iAttribRet[0], iAttribRet[1]);
244 }
245
246 static void test_gdi_dbuf(HDC hdc)
247 {
248     const int iAttribList[] = { WGL_SUPPORT_GDI_ARB, WGL_DOUBLE_BUFFER_ARB };
249     int iAttribRet[sizeof(iAttribList)/sizeof(iAttribList[0])];
250     unsigned int nFormats;
251     int iPixelFormat;
252     int res;
253
254     nFormats = DescribePixelFormat(hdc, 0, 0, NULL);
255     for(iPixelFormat = 1;iPixelFormat <= nFormats;iPixelFormat++)
256     {
257         res = pwglGetPixelFormatAttribivARB(hdc, iPixelFormat, 0,
258                   sizeof(iAttribList)/sizeof(iAttribList[0]), iAttribList,
259                   iAttribRet);
260         ok(res!=FALSE, "wglGetPixelFormatAttribivARB failed for pixel format %d\n", iPixelFormat);
261         if(res == FALSE)
262             continue;
263
264         ok(!(iAttribRet[0] && iAttribRet[1]), "GDI support and double buffering on pixel format %d\n", iPixelFormat);
265     }
266 }
267
268 static void test_make_current_read(HDC hdc)
269 {
270     int res;
271     HDC hread;
272     HGLRC hglrc = wglCreateContext(hdc);
273
274     if(!hglrc)
275     {
276         skip("wglCreateContext failed!\n");
277         return;
278     }
279
280     res = wglMakeCurrent(hdc, hglrc);
281     if(!res)
282     {
283         skip("wglMakeCurrent failed!\n");
284         return;
285     }
286
287     /* Test what wglGetCurrentReadDCARB does for wglMakeCurrent as the spec doesn't mention it */
288     hread = pwglGetCurrentReadDCARB();
289     trace("hread %p, hdc %p\n", hread, hdc);
290     ok(hread == hdc, "wglGetCurrentReadDCARB failed for standard wglMakeCurrent\n");
291
292     pwglMakeContextCurrentARB(hdc, hdc, hglrc);
293     hread = pwglGetCurrentReadDCARB();
294     ok(hread == hdc, "wglGetCurrentReadDCARB failed for wglMakeContextCurrent\n");
295 }
296
297 START_TEST(opengl)
298 {
299     HWND hwnd;
300     PIXELFORMATDESCRIPTOR pfd = {
301         sizeof(PIXELFORMATDESCRIPTOR),
302         1,                     /* version */
303         PFD_DRAW_TO_WINDOW |
304         PFD_SUPPORT_OPENGL |
305         PFD_DOUBLEBUFFER,
306         PFD_TYPE_RGBA,
307         24,                    /* 24-bit color depth */
308         0, 0, 0, 0, 0, 0,      /* color bits */
309         0,                     /* alpha buffer */
310         0,                     /* shift bit */
311         0,                     /* accumulation buffer */
312         0, 0, 0, 0,            /* accum bits */
313         32,                    /* z-buffer */
314         0,                     /* stencil buffer */
315         0,                     /* auxiliary buffer */
316         PFD_MAIN_PLANE,        /* main layer */
317         0,                     /* reserved */
318         0, 0, 0                /* layer masks */
319     };
320
321     hwnd = CreateWindow("static", "Title", WS_OVERLAPPEDWINDOW,
322                         10, 10, 200, 200, NULL, NULL, NULL, NULL);
323     ok(hwnd != NULL, "err: %d\n", GetLastError());
324     if (hwnd)
325     {
326         HDC hdc;
327         int iPixelFormat, res;
328         HGLRC hglrc;
329         ShowWindow(hwnd, SW_SHOW);
330
331         hdc = GetDC(hwnd);
332
333         iPixelFormat = ChoosePixelFormat(hdc, &pfd);
334         ok(iPixelFormat > 0, "No pixelformat found!\n"); /* This should never happen as ChoosePixelFormat always returns a closest match */
335
336         res = SetPixelFormat(hdc, iPixelFormat, &pfd);
337         ok(res, "SetPixelformat failed: %x\n", GetLastError());
338
339         hglrc = wglCreateContext(hdc);
340         res = wglMakeCurrent(hdc, hglrc);
341         ok(res, "wglMakeCurrent failed!\n");
342         init_functions();
343
344         test_setpixelformat();
345         test_colorbits(hdc);
346         test_gdi_dbuf(hdc);
347
348         wgl_extensions = pwglGetExtensionsStringARB(hdc);
349         if(wgl_extensions == NULL) skip("Skipping opengl32 tests because this OpenGL implementation doesn't support WGL extensions!\n");
350
351         if(strstr(wgl_extensions, "WGL_ARB_make_current_read"))
352             test_make_current_read(hdc);
353         else
354             trace("WGL_ARB_make_current_read not supported, skipping test\n");
355
356         if(strstr(wgl_extensions, "WGL_ARB_pbuffer"))
357             test_pbuffers(hdc);
358         else
359             trace("WGL_ARB_pbuffer not supported, skipping pbuffer test\n");
360
361         DestroyWindow(hwnd);
362     }
363 }