wined3d: Initial post pixelshader blending support. [attempt 2].
[wine/wine-kai.git] / dlls / wined3d / context.c
blob90828d654426d084862468329852994049bb1ac2
1 /*
2 * Context and render target management in wined3d
4 * Copyright 2007 Stefan Dösinger for CodeWeavers
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 <stdio.h>
23 #ifdef HAVE_FLOAT_H
24 # include <float.h>
25 #endif
26 #include "wined3d_private.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(d3d);
30 #define GLINFO_LOCATION This->adapter->gl_info
32 /*****************************************************************************
33 * Context_MarkStateDirty
35 * Marks a state in a context dirty. Only one context, opposed to
36 * IWineD3DDeviceImpl_MarkStateDirty, which marks the state dirty in all
37 * contexts
39 * Params:
40 * context: Context to mark the state dirty in
41 * state: State to mark dirty
42 * StateTable: Pointer to the state table in use(for state grouping)
44 *****************************************************************************/
45 static void Context_MarkStateDirty(WineD3DContext *context, DWORD state, const struct StateEntry *StateTable) {
46 DWORD rep = StateTable[state].representative;
47 DWORD idx;
48 BYTE shift;
50 if(!rep || isStateDirty(context, rep)) return;
52 context->dirtyArray[context->numDirtyEntries++] = rep;
53 idx = rep >> 5;
54 shift = rep & 0x1f;
55 context->isStateDirty[idx] |= (1 << shift);
58 /*****************************************************************************
59 * AddContextToArray
61 * Adds a context to the context array. Helper function for CreateContext
63 * This method is not called in performance-critical code paths, only when a
64 * new render target or swapchain is created. Thus performance is not an issue
65 * here.
67 * Params:
68 * This: Device to add the context for
69 * hdc: device context
70 * glCtx: WGL context to add
71 * pbuffer: optional pbuffer used with this context
73 *****************************************************************************/
74 static WineD3DContext *AddContextToArray(IWineD3DDeviceImpl *This, HWND win_handle, HDC hdc, HGLRC glCtx, HPBUFFERARB pbuffer) {
75 WineD3DContext **oldArray = This->contexts;
76 DWORD state;
78 This->contexts = HeapAlloc(GetProcessHeap(), 0, sizeof(*This->contexts) * (This->numContexts + 1));
79 if(This->contexts == NULL) {
80 ERR("Unable to grow the context array\n");
81 This->contexts = oldArray;
82 return NULL;
84 if(oldArray) {
85 memcpy(This->contexts, oldArray, sizeof(*This->contexts) * This->numContexts);
88 This->contexts[This->numContexts] = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(WineD3DContext));
89 if(This->contexts[This->numContexts] == NULL) {
90 ERR("Unable to allocate a new context\n");
91 HeapFree(GetProcessHeap(), 0, This->contexts);
92 This->contexts = oldArray;
93 return NULL;
96 This->contexts[This->numContexts]->hdc = hdc;
97 This->contexts[This->numContexts]->glCtx = glCtx;
98 This->contexts[This->numContexts]->pbuffer = pbuffer;
99 This->contexts[This->numContexts]->win_handle = win_handle;
100 HeapFree(GetProcessHeap(), 0, oldArray);
102 /* Mark all states dirty to force a proper initialization of the states on the first use of the context
104 for(state = 0; state <= STATE_HIGHEST; state++) {
105 Context_MarkStateDirty(This->contexts[This->numContexts], state, This->shader_backend->StateTable);
108 This->numContexts++;
109 TRACE("Created context %p\n", This->contexts[This->numContexts - 1]);
110 return This->contexts[This->numContexts - 1];
113 /*****************************************************************************
114 * CreateContext
116 * Creates a new context for a window, or a pbuffer context.
118 * * Params:
119 * This: Device to activate the context for
120 * target: Surface this context will render to
121 * win_handle: handle to the window which we are drawing to
122 * create_pbuffer: tells whether to create a pbuffer or not
123 * pPresentParameters: contains the pixelformats to use for onscreen rendering
125 *****************************************************************************/
126 WineD3DContext *CreateContext(IWineD3DDeviceImpl *This, IWineD3DSurfaceImpl *target, HWND win_handle, BOOL create_pbuffer, const WINED3DPRESENT_PARAMETERS *pPresentParms) {
127 HDC oldDrawable, hdc;
128 HPBUFFERARB pbuffer = NULL;
129 HGLRC ctx = NULL, oldCtx;
130 WineD3DContext *ret = NULL;
131 int s;
133 TRACE("(%p): Creating a %s context for render target %p\n", This, create_pbuffer ? "offscreen" : "onscreen", target);
135 #define PUSH1(att) attribs[nAttribs++] = (att);
136 #define PUSH2(att,value) attribs[nAttribs++] = (att); attribs[nAttribs++] = (value);
137 if(create_pbuffer) {
138 HDC hdc_parent = GetDC(win_handle);
139 int iPixelFormat = 0;
140 short redBits, greenBits, blueBits, alphaBits, colorBits;
141 short depthBits, stencilBits;
143 IWineD3DSurface *StencilSurface = This->stencilBufferTarget;
144 WINED3DFORMAT StencilBufferFormat = (NULL != StencilSurface) ? ((IWineD3DSurfaceImpl *) StencilSurface)->resource.format : 0;
146 int attribs[256];
147 int nAttribs = 0;
148 unsigned int nFormats;
150 /* Retrieve the specifications for the pixelformat from the backbuffer / stencilbuffer */
151 getColorBits(target->resource.format, &redBits, &greenBits, &blueBits, &alphaBits, &colorBits);
152 getDepthStencilBits(StencilBufferFormat, &depthBits, &stencilBits);
153 PUSH2(WGL_DRAW_TO_PBUFFER_ARB, 1); /* We need pbuffer support; doublebuffering isn't needed */
154 PUSH2(WGL_PIXEL_TYPE_ARB, WGL_TYPE_RGBA_ARB); /* Make sure we don't get a float or color index format */
155 PUSH2(WGL_COLOR_BITS_ARB, colorBits);
156 PUSH2(WGL_RED_BITS_ARB, redBits);
157 PUSH2(WGL_GREEN_BITS_ARB, greenBits);
158 PUSH2(WGL_BLUE_BITS_ARB, blueBits);
159 PUSH2(WGL_ALPHA_BITS_ARB, alphaBits);
160 PUSH2(WGL_DEPTH_BITS_ARB, depthBits);
161 PUSH2(WGL_STENCIL_BITS_ARB, stencilBits);
162 PUSH1(0); /* end the list */
164 /* Try to find a pixelformat that matches exactly. If that fails let ChoosePixelFormat try to find a close match */
165 if(!GL_EXTCALL(wglChoosePixelFormatARB(hdc_parent, (const int*)&attribs, NULL, 1, &iPixelFormat, &nFormats)))
167 PIXELFORMATDESCRIPTOR pfd;
169 TRACE("Falling back to ChoosePixelFormat as wglChoosePixelFormatARB failed\n");
171 ZeroMemory(&pfd, sizeof(pfd));
172 pfd.nSize = sizeof(pfd);
173 pfd.nVersion = 1;
174 pfd.dwFlags = PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER_DONTCARE | PFD_DRAW_TO_WINDOW;
175 pfd.iPixelType = PFD_TYPE_RGBA;
176 pfd.cColorBits = colorBits;
177 pfd.cDepthBits = depthBits;
178 pfd.cStencilBits = stencilBits;
179 pfd.iLayerType = PFD_MAIN_PLANE;
181 iPixelFormat = ChoosePixelFormat(hdc_parent, &pfd);
182 if(!iPixelFormat) {
183 /* If this happens something is very wrong as ChoosePixelFormat barely fails */
184 ERR("Can't find a suitable iPixelFormat for the pbuffer\n");
188 TRACE("Creating a pBuffer drawable for the new context\n");
189 pbuffer = GL_EXTCALL(wglCreatePbufferARB(hdc_parent, iPixelFormat, target->currentDesc.Width, target->currentDesc.Height, 0));
190 if(!pbuffer) {
191 ERR("Cannot create a pbuffer\n");
192 ReleaseDC(win_handle, hdc_parent);
193 goto out;
196 /* In WGL a pbuffer is 'wrapped' inside a HDC to 'fool' wglMakeCurrent */
197 hdc = GL_EXTCALL(wglGetPbufferDCARB(pbuffer));
198 if(!hdc) {
199 ERR("Cannot get a HDC for pbuffer (%p)\n", pbuffer);
200 GL_EXTCALL(wglDestroyPbufferARB(pbuffer));
201 ReleaseDC(win_handle, hdc_parent);
202 goto out;
204 ReleaseDC(win_handle, hdc_parent);
205 } else {
206 PIXELFORMATDESCRIPTOR pfd;
207 int iPixelFormat;
208 short redBits, greenBits, blueBits, alphaBits, colorBits;
209 short depthBits=0, stencilBits=0;
210 int res;
211 int attribs[256];
212 int nAttribs = 0;
213 unsigned int nFormats;
214 WINED3DFORMAT fmt = target->resource.format;
216 hdc = GetDC(win_handle);
217 if(hdc == NULL) {
218 ERR("Cannot retrieve a device context!\n");
219 goto out;
222 /* PixelFormat selection */
223 PUSH2(WGL_DRAW_TO_WINDOW_ARB, GL_TRUE); /* We want to draw to a window */
224 PUSH2(WGL_DOUBLE_BUFFER_ARB, GL_TRUE);
225 PUSH2(WGL_PIXEL_TYPE_ARB, WGL_TYPE_RGBA_ARB); /* Make sure we don't get a float or color index format */
226 PUSH2(WGL_SUPPORT_OPENGL_ARB, GL_TRUE);
227 PUSH2(WGL_ACCELERATION_ARB, WGL_FULL_ACCELERATION_ARB); /* Make sure we receive an accelerated format. On windows (at least on ATI) this is not always the case */
229 /* In case of ORM_BACKBUFFER, make sure to request an alpha component for X4R4G4B4/X8R8G8B8 as we might need it for the backbuffer. */
230 if(wined3d_settings.offscreen_rendering_mode == ORM_BACKBUFFER) {
231 if(target->resource.format == WINED3DFMT_X4R4G4B4)
232 fmt = WINED3DFMT_A4R4G4B4;
233 else if(target->resource.format == WINED3DFMT_X8R8G8B8)
234 fmt = WINED3DFMT_A8R8G8B8;
236 /* We like to have two aux buffers in backbuffer mode */
237 PUSH2(WGL_AUX_BUFFERS_ARB, 2);
240 if(!getColorBits(fmt, &redBits, &greenBits, &blueBits, &alphaBits, &colorBits)) {
241 ERR("Unable to get color bits for format %#x!\n", target->resource.format);
242 return FALSE;
244 PUSH2(WGL_COLOR_BITS_ARB, colorBits);
245 PUSH2(WGL_RED_BITS_ARB, redBits);
246 PUSH2(WGL_GREEN_BITS_ARB, greenBits);
247 PUSH2(WGL_BLUE_BITS_ARB, blueBits);
248 PUSH2(WGL_ALPHA_BITS_ARB, alphaBits);
250 /* Retrieve the depth stencil format from the present parameters.
251 * The choice of the proper format can give a nice performance boost
252 * in case of GPU limited programs. */
253 if(pPresentParms->EnableAutoDepthStencil) {
254 TRACE("pPresentParms->EnableAutoDepthStencil=enabled; using AutoDepthStencilFormat=%s\n", debug_d3dformat(pPresentParms->AutoDepthStencilFormat));
255 if(!getDepthStencilBits(pPresentParms->AutoDepthStencilFormat, &depthBits, &stencilBits)) {
256 ERR("Unable to get depth / stencil bits for AutoDepthStencilFormat %#x!\n", pPresentParms->AutoDepthStencilFormat);
257 return FALSE;
259 PUSH2(WGL_DEPTH_BITS_ARB, depthBits);
260 PUSH2(WGL_STENCIL_BITS_ARB, stencilBits);
263 PUSH1(0); /* end the list */
265 /* In case of failure hope that standard ChoosePixelFormat will find something suitable */
266 if(!GL_EXTCALL(wglChoosePixelFormatARB(hdc, (const int*)&attribs, NULL, 1, &iPixelFormat, &nFormats)))
268 /* PixelFormat selection */
269 ZeroMemory(&pfd, sizeof(pfd));
270 pfd.nSize = sizeof(pfd);
271 pfd.nVersion = 1;
272 pfd.dwFlags = PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER | PFD_DRAW_TO_WINDOW;/*PFD_GENERIC_ACCELERATED*/
273 pfd.iPixelType = PFD_TYPE_RGBA;
274 pfd.cAlphaBits = alphaBits;
275 pfd.cColorBits = colorBits;
276 pfd.cDepthBits = depthBits;
277 pfd.cStencilBits = stencilBits;
278 pfd.iLayerType = PFD_MAIN_PLANE;
280 iPixelFormat = ChoosePixelFormat(hdc, &pfd);
281 if(!iPixelFormat) {
282 /* If this happens something is very wrong as ChoosePixelFormat barely fails */
283 ERR("Can't find a suitable iPixelFormat\n");
287 DescribePixelFormat(hdc, iPixelFormat, sizeof(pfd), &pfd);
288 res = SetPixelFormat(hdc, iPixelFormat, NULL);
289 if(!res) {
290 int oldPixelFormat = GetPixelFormat(hdc);
292 if(oldPixelFormat) {
293 /* OpenGL doesn't allow pixel format adjustments. Print an error and continue using the old format.
294 * There's a big chance that the old format works although with a performance hit and perhaps rendering errors. */
295 ERR("HDC=%p is already set to iPixelFormat=%d and OpenGL doesn't allow changes!\n", hdc, oldPixelFormat);
297 else {
298 ERR("SetPixelFormat failed on HDC=%p for iPixelFormat=%d\n", hdc, iPixelFormat);
299 return FALSE;
303 #undef PUSH1
304 #undef PUSH2
306 ctx = pwglCreateContext(hdc);
307 if(This->numContexts) pwglShareLists(This->contexts[0]->glCtx, ctx);
309 if(!ctx) {
310 ERR("Failed to create a WGL context\n");
311 if(create_pbuffer) {
312 GL_EXTCALL(wglReleasePbufferDCARB(pbuffer, hdc));
313 GL_EXTCALL(wglDestroyPbufferARB(pbuffer));
315 goto out;
317 ret = AddContextToArray(This, win_handle, hdc, ctx, pbuffer);
318 if(!ret) {
319 ERR("Failed to add the newly created context to the context list\n");
320 pwglDeleteContext(ctx);
321 if(create_pbuffer) {
322 GL_EXTCALL(wglReleasePbufferDCARB(pbuffer, hdc));
323 GL_EXTCALL(wglDestroyPbufferARB(pbuffer));
325 goto out;
327 ret->surface = (IWineD3DSurface *) target;
328 ret->isPBuffer = create_pbuffer;
329 ret->tid = GetCurrentThreadId();
330 if(This->shader_backend->shader_dirtifyable_constants((IWineD3DDevice *) This)) {
331 /* Create the dirty constants array and initialize them to dirty */
332 ret->vshader_const_dirty = HeapAlloc(GetProcessHeap(), 0,
333 sizeof(*ret->vshader_const_dirty) * GL_LIMITS(vshader_constantsF));
334 ret->pshader_const_dirty = HeapAlloc(GetProcessHeap(), 0,
335 sizeof(*ret->pshader_const_dirty) * GL_LIMITS(pshader_constantsF));
336 memset(ret->vshader_const_dirty, 1,
337 sizeof(*ret->vshader_const_dirty) * GL_LIMITS(vshader_constantsF));
338 memset(ret->pshader_const_dirty, 1,
339 sizeof(*ret->pshader_const_dirty) * GL_LIMITS(pshader_constantsF));
342 TRACE("Successfully created new context %p\n", ret);
344 /* Set up the context defaults */
345 oldCtx = pwglGetCurrentContext();
346 oldDrawable = pwglGetCurrentDC();
347 if(pwglMakeCurrent(hdc, ctx) == FALSE) {
348 ERR("Cannot activate context to set up defaults\n");
349 goto out;
352 ENTER_GL();
353 TRACE("Setting up the screen\n");
354 /* Clear the screen */
355 glClearColor(1.0, 0.0, 0.0, 0.0);
356 checkGLcall("glClearColor");
357 glClearIndex(0);
358 glClearDepth(1);
359 glClearStencil(0xffff);
361 checkGLcall("glClear");
363 glColor3f(1.0, 1.0, 1.0);
364 checkGLcall("glColor3f");
366 glEnable(GL_LIGHTING);
367 checkGLcall("glEnable");
369 glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, GL_TRUE);
370 checkGLcall("glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, GL_TRUE);");
372 glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_COMBINE_EXT);
373 checkGLcall("glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_COMBINE_EXT);");
375 glLightModeli(GL_LIGHT_MODEL_COLOR_CONTROL, GL_SEPARATE_SPECULAR_COLOR);
376 checkGLcall("glLightModeli(GL_LIGHT_MODEL_COLOR_CONTROL, GL_SEPARATE_SPECULAR_COLOR);");
378 glPixelStorei(GL_PACK_ALIGNMENT, This->surface_alignment);
379 checkGLcall("glPixelStorei(GL_PACK_ALIGNMENT, This->surface_alignment);");
380 glPixelStorei(GL_UNPACK_ALIGNMENT, This->surface_alignment);
381 checkGLcall("glPixelStorei(GL_UNPACK_ALIGNMENT, This->surface_alignment);");
383 if(GL_SUPPORT(APPLE_CLIENT_STORAGE)) {
384 /* Most textures will use client storage if supported. Exceptions are non-native power of 2 textures
385 * and textures in DIB sections(due to the memory protection).
387 glPixelStorei(GL_UNPACK_CLIENT_STORAGE_APPLE, GL_TRUE);
388 checkGLcall("glPixelStorei(GL_UNPACK_CLIENT_STORAGE_APPLE, GL_TRUE)");
390 if(GL_SUPPORT(ARB_VERTEX_BLEND)) {
391 /* Direct3D always uses n-1 weights for n world matrices and uses 1 - sum for the last one
392 * this is equal to GL_WEIGHT_SUM_UNITY_ARB. Enabling it doesn't do anything unless
393 * GL_VERTEX_BLEND_ARB isn't enabled too
395 glEnable(GL_WEIGHT_SUM_UNITY_ARB);
396 checkGLcall("glEnable(GL_WEIGHT_SUM_UNITY_ARB)");
398 if(GL_SUPPORT(NV_TEXTURE_SHADER2)) {
399 glEnable(GL_TEXTURE_SHADER_NV);
400 checkGLcall("glEnable(GL_TEXTURE_SHADER_NV)");
402 /* Set up the previous texture input for all shader units. This applies to bump mapping, and in d3d
403 * the previous texture where to source the offset from is always unit - 1.
405 for(s = 1; s < GL_LIMITS(textures); s++) {
406 GL_EXTCALL(glActiveTextureARB(GL_TEXTURE0_ARB + s));
407 glTexEnvi(GL_TEXTURE_SHADER_NV, GL_PREVIOUS_TEXTURE_INPUT_NV, GL_TEXTURE0_ARB + s - 1);
408 checkGLcall("glTexEnvi(GL_TEXTURE_SHADER_NV, GL_PREVIOUS_TEXTURE_INPUT_NV, ...\n");
410 } else if(GL_SUPPORT(ATI_FRAGMENT_SHADER)) {
411 glEnable(GL_FRAGMENT_SHADER_ATI);
412 checkGLcall("glEnable(GL_FRAGMENT_SHADER_ATI)");
415 if(GL_SUPPORT(ARB_POINT_SPRITE)) {
416 for(s = 0; s < GL_LIMITS(textures); s++) {
417 GL_EXTCALL(glActiveTextureARB(GL_TEXTURE0_ARB + s));
418 glTexEnvi(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, GL_TRUE);
419 checkGLcall("glTexEnvi(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, GL_TRUE)\n");
422 LEAVE_GL();
424 if(oldDrawable && oldCtx) {
425 pwglMakeCurrent(oldDrawable, oldCtx);
428 out:
429 return ret;
432 /*****************************************************************************
433 * RemoveContextFromArray
435 * Removes a context from the context manager. The opengl context is not
436 * destroyed or unset. context is not a valid pointer after that call.
438 * Similar to the former call this isn't a performance critical function. A
439 * helper function for DestroyContext.
441 * Params:
442 * This: Device to activate the context for
443 * context: Context to remove
445 *****************************************************************************/
446 static void RemoveContextFromArray(IWineD3DDeviceImpl *This, WineD3DContext *context) {
447 UINT t, s;
448 WineD3DContext **oldArray = This->contexts;
450 TRACE("Removing ctx %p\n", context);
452 This->numContexts--;
454 if(This->numContexts) {
455 This->contexts = HeapAlloc(GetProcessHeap(), 0, sizeof(*This->contexts) * This->numContexts);
456 if(!This->contexts) {
457 ERR("Cannot allocate a new context array, PANIC!!!\n");
459 t = 0;
460 for(s = 0; s < This->numContexts; s++) {
461 if(oldArray[s] == context) continue;
462 This->contexts[t] = oldArray[s];
463 t++;
465 } else {
466 This->contexts = NULL;
469 HeapFree(GetProcessHeap(), 0, context);
470 HeapFree(GetProcessHeap(), 0, oldArray);
473 /*****************************************************************************
474 * DestroyContext
476 * Destroys a wineD3DContext
478 * Params:
479 * This: Device to activate the context for
480 * context: Context to destroy
482 *****************************************************************************/
483 void DestroyContext(IWineD3DDeviceImpl *This, WineD3DContext *context) {
485 /* check that we are the current context first */
486 TRACE("Destroying ctx %p\n", context);
487 if(pwglGetCurrentContext() == context->glCtx){
488 pwglMakeCurrent(NULL, NULL);
491 if(context->isPBuffer) {
492 GL_EXTCALL(wglReleasePbufferDCARB(context->pbuffer, context->hdc));
493 GL_EXTCALL(wglDestroyPbufferARB(context->pbuffer));
494 } else ReleaseDC(context->win_handle, context->hdc);
495 pwglDeleteContext(context->glCtx);
497 HeapFree(GetProcessHeap(), 0, context->vshader_const_dirty);
498 HeapFree(GetProcessHeap(), 0, context->pshader_const_dirty);
499 RemoveContextFromArray(This, context);
502 /*****************************************************************************
503 * SetupForBlit
505 * Sets up a context for DirectDraw blitting.
506 * All texture units are disabled, texture unit 0 is set as current unit
507 * fog, lighting, blending, alpha test, z test, scissor test, culling disabled
508 * color writing enabled for all channels
509 * register combiners disabled, shaders disabled
510 * world matrix is set to identity, texture matrix 0 too
511 * projection matrix is setup for drawing screen coordinates
513 * Params:
514 * This: Device to activate the context for
515 * context: Context to setup
516 * width: render target width
517 * height: render target height
519 *****************************************************************************/
520 static inline void SetupForBlit(IWineD3DDeviceImpl *This, WineD3DContext *context, UINT width, UINT height) {
521 int i;
522 const struct StateEntry *StateTable = This->shader_backend->StateTable;
524 TRACE("Setting up context %p for blitting\n", context);
525 if(context->last_was_blit) {
526 TRACE("Context is already set up for blitting, nothing to do\n");
527 return;
529 context->last_was_blit = TRUE;
531 /* TODO: Use a display list */
533 /* Disable shaders */
534 This->shader_backend->shader_cleanup((IWineD3DDevice *) This);
535 Context_MarkStateDirty(context, STATE_VSHADER, StateTable);
536 Context_MarkStateDirty(context, STATE_PIXELSHADER, StateTable);
538 /* Disable all textures. The caller can then bind a texture it wants to blit
539 * from
541 if(GL_SUPPORT(NV_REGISTER_COMBINERS)) {
542 glDisable(GL_REGISTER_COMBINERS_NV);
543 checkGLcall("glDisable(GL_REGISTER_COMBINERS_NV)");
545 if (GL_SUPPORT(ARB_MULTITEXTURE)) {
546 /* The blitting code uses (for now) the fixed function pipeline, so make sure to reset all fixed
547 * function texture unit. No need to care for higher samplers
549 for(i = GL_LIMITS(textures) - 1; i > 0 ; i--) {
550 GL_EXTCALL(glActiveTextureARB(GL_TEXTURE0_ARB + i));
551 checkGLcall("glActiveTextureARB");
553 if(GL_SUPPORT(ARB_TEXTURE_CUBE_MAP)) {
554 glDisable(GL_TEXTURE_CUBE_MAP_ARB);
555 checkGLcall("glDisable GL_TEXTURE_CUBE_MAP_ARB");
557 glDisable(GL_TEXTURE_3D);
558 checkGLcall("glDisable GL_TEXTURE_3D");
559 glDisable(GL_TEXTURE_2D);
560 checkGLcall("glDisable GL_TEXTURE_2D");
562 glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
563 checkGLcall("glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);");
565 Context_MarkStateDirty(context, STATE_TEXTURESTAGE(i, WINED3DTSS_COLOROP), StateTable);
566 Context_MarkStateDirty(context, STATE_SAMPLER(i), StateTable);
568 GL_EXTCALL(glActiveTextureARB(GL_TEXTURE0_ARB));
569 checkGLcall("glActiveTextureARB");
571 if(GL_SUPPORT(ARB_TEXTURE_CUBE_MAP)) {
572 glDisable(GL_TEXTURE_CUBE_MAP_ARB);
573 checkGLcall("glDisable GL_TEXTURE_CUBE_MAP_ARB");
575 glDisable(GL_TEXTURE_3D);
576 checkGLcall("glDisable GL_TEXTURE_3D");
577 glDisable(GL_TEXTURE_2D);
578 checkGLcall("glDisable GL_TEXTURE_2D");
580 glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
582 glMatrixMode(GL_TEXTURE);
583 checkGLcall("glMatrixMode(GL_TEXTURE)");
584 glLoadIdentity();
585 checkGLcall("glLoadIdentity()");
586 Context_MarkStateDirty(context, STATE_TRANSFORM(WINED3DTS_TEXTURE0), StateTable);
588 if (GL_SUPPORT(EXT_TEXTURE_LOD_BIAS)) {
589 glTexEnvf(GL_TEXTURE_FILTER_CONTROL_EXT,
590 GL_TEXTURE_LOD_BIAS_EXT,
591 0.0);
592 checkGLcall("glTexEnvi GL_TEXTURE_LOD_BIAS_EXT ...");
594 Context_MarkStateDirty(context, STATE_SAMPLER(0), StateTable);
595 Context_MarkStateDirty(context, STATE_TEXTURESTAGE(0, WINED3DTSS_COLOROP), StateTable);
597 /* Other misc states */
598 glDisable(GL_ALPHA_TEST);
599 checkGLcall("glDisable(GL_ALPHA_TEST)");
600 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_ALPHATESTENABLE), StateTable);
601 glDisable(GL_LIGHTING);
602 checkGLcall("glDisable GL_LIGHTING");
603 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_LIGHTING), StateTable);
604 glDisable(GL_DEPTH_TEST);
605 checkGLcall("glDisable GL_DEPTH_TEST");
606 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_ZENABLE), StateTable);
607 glDisable(GL_FOG);
608 checkGLcall("glDisable GL_FOG");
609 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_FOGENABLE), StateTable);
610 glDisable(GL_BLEND);
611 checkGLcall("glDisable GL_BLEND");
612 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_ALPHABLENDENABLE), StateTable);
613 glDisable(GL_CULL_FACE);
614 checkGLcall("glDisable GL_CULL_FACE");
615 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_CULLMODE), StateTable);
616 glDisable(GL_STENCIL_TEST);
617 checkGLcall("glDisable GL_STENCIL_TEST");
618 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_STENCILENABLE), StateTable);
619 glDisable(GL_SCISSOR_TEST);
620 checkGLcall("glDisable GL_SCISSOR_TEST");
621 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_SCISSORTESTENABLE), StateTable);
622 if(GL_SUPPORT(ARB_POINT_SPRITE)) {
623 glDisable(GL_POINT_SPRITE_ARB);
624 checkGLcall("glDisable GL_POINT_SPRITE_ARB");
625 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_POINTSPRITEENABLE), StateTable);
627 glColorMask(GL_TRUE, GL_TRUE,GL_TRUE,GL_TRUE);
628 checkGLcall("glColorMask");
629 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_CLIPPING), StateTable);
630 if (GL_SUPPORT(EXT_SECONDARY_COLOR)) {
631 glDisable(GL_COLOR_SUM_EXT);
632 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_SPECULARENABLE), StateTable);
633 checkGLcall("glDisable(GL_COLOR_SUM_EXT)");
635 if (GL_SUPPORT(NV_REGISTER_COMBINERS)) {
636 GL_EXTCALL(glFinalCombinerInputNV(GL_VARIABLE_B_NV, GL_SPARE0_NV, GL_UNSIGNED_IDENTITY_NV, GL_RGB));
637 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_SPECULARENABLE), StateTable);
638 checkGLcall("glFinalCombinerInputNV");
641 /* Setup transforms */
642 glMatrixMode(GL_MODELVIEW);
643 checkGLcall("glMatrixMode(GL_MODELVIEW)");
644 glLoadIdentity();
645 checkGLcall("glLoadIdentity()");
646 Context_MarkStateDirty(context, STATE_TRANSFORM(WINED3DTS_WORLDMATRIX(0)), StateTable);
648 glMatrixMode(GL_PROJECTION);
649 checkGLcall("glMatrixMode(GL_PROJECTION)");
650 glLoadIdentity();
651 checkGLcall("glLoadIdentity()");
652 glOrtho(0, width, height, 0, 0.0, -1.0);
653 checkGLcall("glOrtho");
654 Context_MarkStateDirty(context, STATE_TRANSFORM(WINED3DTS_PROJECTION), StateTable);
656 context->last_was_rhw = TRUE;
657 Context_MarkStateDirty(context, STATE_VDECL, StateTable); /* because of last_was_rhw = TRUE */
659 glDisable(GL_CLIP_PLANE0); checkGLcall("glDisable(clip plane 0)");
660 glDisable(GL_CLIP_PLANE1); checkGLcall("glDisable(clip plane 1)");
661 glDisable(GL_CLIP_PLANE2); checkGLcall("glDisable(clip plane 2)");
662 glDisable(GL_CLIP_PLANE3); checkGLcall("glDisable(clip plane 3)");
663 glDisable(GL_CLIP_PLANE4); checkGLcall("glDisable(clip plane 4)");
664 glDisable(GL_CLIP_PLANE5); checkGLcall("glDisable(clip plane 5)");
665 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_CLIPPING), StateTable);
667 glViewport(0, 0, width, height);
668 checkGLcall("glViewport");
669 Context_MarkStateDirty(context, STATE_VIEWPORT, StateTable);
671 if(GL_SUPPORT(NV_TEXTURE_SHADER2)) {
672 glDisable(GL_TEXTURE_SHADER_NV);
673 checkGLcall("glDisable(GL_TEXTURE_SHADER_NV)");
674 } else if(GL_SUPPORT(ATI_FRAGMENT_SHADER)) {
675 glDisable(GL_FRAGMENT_SHADER_ATI);
676 checkGLcall("glDisable(GL_FRAGMENT_SHADER_ATI)");
680 /*****************************************************************************
681 * findThreadContextForSwapChain
683 * Searches a swapchain for all contexts and picks one for the thread tid.
684 * If none can be found the swapchain is requested to create a new context
686 *****************************************************************************/
687 static WineD3DContext *findThreadContextForSwapChain(IWineD3DSwapChain *swapchain, DWORD tid) {
688 int i;
690 for(i = 0; i < ((IWineD3DSwapChainImpl *) swapchain)->num_contexts; i++) {
691 if(((IWineD3DSwapChainImpl *) swapchain)->context[i]->tid == tid) {
692 return ((IWineD3DSwapChainImpl *) swapchain)->context[i];
697 /* Create a new context for the thread */
698 return IWineD3DSwapChainImpl_CreateContextForThread(swapchain);
701 /*****************************************************************************
702 * FindContext
704 * Finds a context for the current render target and thread
706 * Parameters:
707 * target: Render target to find the context for
708 * tid: Thread to activate the context for
710 * Returns: The needed context
712 *****************************************************************************/
713 static inline WineD3DContext *FindContext(IWineD3DDeviceImpl *This, IWineD3DSurface *target, DWORD tid, GLint *buffer) {
714 IWineD3DSwapChain *swapchain = NULL;
715 HRESULT hr;
716 BOOL readTexture = wined3d_settings.offscreen_rendering_mode != ORM_FBO && This->render_offscreen;
717 WineD3DContext *context = This->activeContext;
718 BOOL oldRenderOffscreen = This->render_offscreen;
719 const WINED3DFORMAT oldFmt = ((IWineD3DSurfaceImpl *) This->lastActiveRenderTarget)->resource.format;
720 const WINED3DFORMAT newFmt = ((IWineD3DSurfaceImpl *) target)->resource.format;
721 const struct StateEntry *StateTable = This->shader_backend->StateTable;
723 /* To compensate the lack of format switching with some offscreen rendering methods and on onscreen buffers
724 * the alpha blend state changes with different render target formats
726 if(oldFmt != newFmt) {
727 const GlPixelFormatDesc *glDesc;
728 const StaticPixelFormatDesc *old = getFormatDescEntry(oldFmt, NULL, NULL);
729 const StaticPixelFormatDesc *new = getFormatDescEntry(newFmt, &GLINFO_LOCATION, &glDesc);
731 /* Disable blending when the alphaMask has changed and when a format doesn't support blending */
732 if((old->alphaMask && !new->alphaMask) || (!old->alphaMask && new->alphaMask) || !(glDesc->Flags & WINED3DFMT_FLAG_POSTPIXELSHADER_BLENDING)) {
733 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_ALPHABLENDENABLE), StateTable);
737 hr = IWineD3DSurface_GetContainer(target, &IID_IWineD3DSwapChain, (void **) &swapchain);
738 if(hr == WINED3D_OK && swapchain) {
739 TRACE("Rendering onscreen\n");
741 context = findThreadContextForSwapChain(swapchain, tid);
743 This->render_offscreen = FALSE;
744 /* The context != This->activeContext will catch a NOP context change. This can occur
745 * if we are switching back to swapchain rendering in case of FBO or Back Buffer offscreen
746 * rendering. No context change is needed in that case
749 if(((IWineD3DSwapChainImpl *) swapchain)->frontBuffer == target) {
750 *buffer = GL_FRONT;
751 } else {
752 *buffer = GL_BACK;
754 if(wined3d_settings.offscreen_rendering_mode == ORM_PBUFFER) {
755 if(This->pbufferContext && tid == This->pbufferContext->tid) {
756 This->pbufferContext->tid = 0;
759 IWineD3DSwapChain_Release(swapchain);
761 if(oldRenderOffscreen) {
762 Context_MarkStateDirty(context, WINED3DTS_PROJECTION, StateTable);
763 Context_MarkStateDirty(context, STATE_VDECL, StateTable);
764 Context_MarkStateDirty(context, STATE_VIEWPORT, StateTable);
765 Context_MarkStateDirty(context, STATE_SCISSORRECT, StateTable);
766 Context_MarkStateDirty(context, STATE_FRONTFACE, StateTable);
769 } else {
770 TRACE("Rendering offscreen\n");
771 This->render_offscreen = TRUE;
772 *buffer = This->offscreenBuffer;
774 switch(wined3d_settings.offscreen_rendering_mode) {
775 case ORM_FBO:
776 /* FBOs do not need a different context. Stay with whatever context is active at the moment */
777 if(This->activeContext && tid == This->lastThread) {
778 context = This->activeContext;
779 } else {
780 /* This may happen if the app jumps straight into offscreen rendering
781 * Start using the context of the primary swapchain. tid == 0 is no problem
782 * for findThreadContextForSwapChain.
784 * Can also happen on thread switches - in that case findThreadContextForSwapChain
785 * is perfect to call.
787 context = findThreadContextForSwapChain(This->swapchains[0], tid);
789 break;
791 case ORM_PBUFFER:
793 IWineD3DSurfaceImpl *targetimpl = (IWineD3DSurfaceImpl *) target;
794 if(This->pbufferContext == NULL ||
795 This->pbufferWidth < targetimpl->currentDesc.Width ||
796 This->pbufferHeight < targetimpl->currentDesc.Height) {
797 if(This->pbufferContext) {
798 DestroyContext(This, This->pbufferContext);
801 /* The display is irrelevant here, the window is 0. But CreateContext needs a valid X connection.
802 * Create the context on the same server as the primary swapchain. The primary swapchain is exists at this point.
804 This->pbufferContext = CreateContext(This, targetimpl,
805 ((IWineD3DSwapChainImpl *) This->swapchains[0])->context[0]->win_handle,
806 TRUE /* pbuffer */, &((IWineD3DSwapChainImpl *)This->swapchains[0])->presentParms);
807 This->pbufferWidth = targetimpl->currentDesc.Width;
808 This->pbufferHeight = targetimpl->currentDesc.Height;
811 if(This->pbufferContext) {
812 if(This->pbufferContext->tid != 0 && This->pbufferContext->tid != tid) {
813 FIXME("The PBuffr context is only supported for one thread for now!\n");
815 This->pbufferContext->tid = tid;
816 context = This->pbufferContext;
817 break;
818 } else {
819 ERR("Failed to create a buffer context and drawable, falling back to back buffer offscreen rendering\n");
820 wined3d_settings.offscreen_rendering_mode = ORM_BACKBUFFER;
824 case ORM_BACKBUFFER:
825 /* Stay with the currently active context for back buffer rendering */
826 if(This->activeContext && tid == This->lastThread) {
827 context = This->activeContext;
828 } else {
829 /* This may happen if the app jumps straight into offscreen rendering
830 * Start using the context of the primary swapchain. tid == 0 is no problem
831 * for findThreadContextForSwapChain.
833 * Can also happen on thread switches - in that case findThreadContextForSwapChain
834 * is perfect to call.
836 context = findThreadContextForSwapChain(This->swapchains[0], tid);
838 break;
841 if (wined3d_settings.offscreen_rendering_mode != ORM_FBO) {
842 /* Make sure we have a OpenGL texture name so the PreLoad() used to read the buffer
843 * back when we are done won't mark us dirty.
845 IWineD3DSurface_PreLoad(target);
848 if(!oldRenderOffscreen) {
849 Context_MarkStateDirty(context, WINED3DTS_PROJECTION, StateTable);
850 Context_MarkStateDirty(context, STATE_VDECL, StateTable);
851 Context_MarkStateDirty(context, STATE_VIEWPORT, StateTable);
852 Context_MarkStateDirty(context, STATE_SCISSORRECT, StateTable);
853 Context_MarkStateDirty(context, STATE_FRONTFACE, StateTable);
856 if (readTexture) {
857 BOOL oldInDraw = This->isInDraw;
859 /* PreLoad requires a context to load the texture, thus it will call ActivateContext.
860 * Set the isInDraw to true to signal PreLoad that it has a context. Will be tricky
861 * when using offscreen rendering with multithreading
863 This->isInDraw = TRUE;
865 /* Do that before switching the context:
866 * Read the back buffer of the old drawable into the destination texture
868 IWineD3DSurface_PreLoad(This->lastActiveRenderTarget);
870 /* Assume that the drawable will be modified by some other things now */
871 IWineD3DSurface_ModifyLocation(This->lastActiveRenderTarget, SFLAG_INDRAWABLE, FALSE);
873 This->isInDraw = oldInDraw;
876 if(oldRenderOffscreen != This->render_offscreen && This->depth_copy_state != WINED3D_DCS_NO_COPY) {
877 This->depth_copy_state = WINED3D_DCS_COPY;
879 return context;
882 /*****************************************************************************
883 * ActivateContext
885 * Finds a rendering context and drawable matching the device and render
886 * target for the current thread, activates them and puts them into the
887 * requested state.
889 * Params:
890 * This: Device to activate the context for
891 * target: Requested render target
892 * usage: Prepares the context for blitting, drawing or other actions
894 *****************************************************************************/
895 void ActivateContext(IWineD3DDeviceImpl *This, IWineD3DSurface *target, ContextUsage usage) {
896 DWORD tid = GetCurrentThreadId();
897 int i;
898 DWORD dirtyState, idx;
899 BYTE shift;
900 WineD3DContext *context;
901 GLint drawBuffer=0;
902 const struct StateEntry *StateTable = This->shader_backend->StateTable;
904 TRACE("(%p): Selecting context for render target %p, thread %d\n", This, target, tid);
905 if(This->lastActiveRenderTarget != target || tid != This->lastThread) {
906 context = FindContext(This, target, tid, &drawBuffer);
907 This->lastActiveRenderTarget = target;
908 This->lastThread = tid;
909 } else {
910 /* Stick to the old context */
911 context = This->activeContext;
914 /* Activate the opengl context */
915 if(context != This->activeContext) {
916 BOOL ret;
918 /* Prevent an unneeded context switch as those are expensive */
919 if(context->glCtx && (context->glCtx == pwglGetCurrentContext())) {
920 TRACE("Already using gl context %p\n", context->glCtx);
922 else {
923 TRACE("Switching gl ctx to %p, hdc=%p ctx=%p\n", context, context->hdc, context->glCtx);
924 ret = pwglMakeCurrent(context->hdc, context->glCtx);
925 if(ret == FALSE) {
926 ERR("Failed to activate the new context\n");
929 if(This->activeContext->vshader_const_dirty) {
930 memset(This->activeContext->vshader_const_dirty, 1,
931 sizeof(*This->activeContext->vshader_const_dirty) * GL_LIMITS(vshader_constantsF));
933 if(This->activeContext->pshader_const_dirty) {
934 memset(This->activeContext->pshader_const_dirty, 1,
935 sizeof(*This->activeContext->pshader_const_dirty) * GL_LIMITS(pshader_constantsF));
937 This->activeContext = context;
940 /* We only need ENTER_GL for the gl calls made below and for the helper functions which make GL calls */
941 ENTER_GL();
942 /* Select the right draw buffer. It is selected in FindContext. */
943 if(drawBuffer && context->last_draw_buffer != drawBuffer) {
944 TRACE("Drawing to buffer: %#x\n", drawBuffer);
945 context->last_draw_buffer = drawBuffer;
947 glDrawBuffer(drawBuffer);
948 checkGLcall("glDrawBuffer");
951 switch(usage) {
952 case CTXUSAGE_RESOURCELOAD:
953 /* This does not require any special states to be set up */
954 break;
956 case CTXUSAGE_CLEAR:
957 if(context->last_was_blit) {
958 if(GL_SUPPORT(NV_TEXTURE_SHADER2)) {
959 glEnable(GL_TEXTURE_SHADER_NV);
960 checkGLcall("glEnable(GL_TEXTURE_SHADER_NV)");
961 } else if(GL_SUPPORT(ATI_FRAGMENT_SHADER)) {
962 glEnable(GL_FRAGMENT_SHADER_ATI);
963 checkGLcall("glEnable(GL_FRAGMENT_SHADER_ATI)");
967 glEnable(GL_SCISSOR_TEST);
968 checkGLcall("glEnable GL_SCISSOR_TEST");
969 context->last_was_blit = FALSE;
970 Context_MarkStateDirty(context, STATE_RENDER(WINED3DRS_SCISSORTESTENABLE), StateTable);
971 Context_MarkStateDirty(context, STATE_SCISSORRECT, StateTable);
972 break;
974 case CTXUSAGE_DRAWPRIM:
975 /* This needs all dirty states applied */
976 if(context->last_was_blit) {
977 if(GL_SUPPORT(NV_TEXTURE_SHADER2)) {
978 glEnable(GL_TEXTURE_SHADER_NV);
979 checkGLcall("glEnable(GL_TEXTURE_SHADER_NV)");
980 } else if(GL_SUPPORT(ATI_FRAGMENT_SHADER)) {
981 glEnable(GL_FRAGMENT_SHADER_ATI);
982 checkGLcall("glEnable(GL_FRAGMENT_SHADER_ATI)");
986 IWineD3DDeviceImpl_FindTexUnitMap(This);
988 for(i=0; i < context->numDirtyEntries; i++) {
989 dirtyState = context->dirtyArray[i];
990 idx = dirtyState >> 5;
991 shift = dirtyState & 0x1f;
992 context->isStateDirty[idx] &= ~(1 << shift);
993 StateTable[dirtyState].apply(dirtyState, This->stateBlock, context);
995 context->numDirtyEntries = 0; /* This makes the whole list clean */
996 context->last_was_blit = FALSE;
997 break;
999 case CTXUSAGE_BLIT:
1000 SetupForBlit(This, context,
1001 ((IWineD3DSurfaceImpl *)target)->currentDesc.Width,
1002 ((IWineD3DSurfaceImpl *)target)->currentDesc.Height);
1003 break;
1005 default:
1006 FIXME("Unexpected context usage requested\n");
1008 LEAVE_GL();