2 * Context and render target management in wined3d
4 * Copyright 2007-2011, 2013 Stefan Dösinger for CodeWeavers
5 * Copyright 2009-2011 Henri Verbeet for CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include "wine/port.h"
30 #include "wined3d_private.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(d3d
);
33 WINE_DECLARE_DEBUG_CHANNEL(d3d_perf
);
34 WINE_DECLARE_DEBUG_CHANNEL(d3d_synchronous
);
36 #define WINED3D_MAX_FBO_ENTRIES 64
38 static DWORD wined3d_context_tls_idx
;
40 /* FBO helper functions */
42 /* Context activation is done by the caller. */
43 static void context_bind_fbo(struct wined3d_context
*context
, GLenum target
, GLuint fbo
)
45 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
49 case GL_READ_FRAMEBUFFER
:
50 if (context
->fbo_read_binding
== fbo
) return;
51 context
->fbo_read_binding
= fbo
;
54 case GL_DRAW_FRAMEBUFFER
:
55 if (context
->fbo_draw_binding
== fbo
) return;
56 context
->fbo_draw_binding
= fbo
;
60 if (context
->fbo_read_binding
== fbo
61 && context
->fbo_draw_binding
== fbo
) return;
62 context
->fbo_read_binding
= fbo
;
63 context
->fbo_draw_binding
= fbo
;
67 FIXME("Unhandled target %#x.\n", target
);
71 gl_info
->fbo_ops
.glBindFramebuffer(target
, fbo
);
72 checkGLcall("glBindFramebuffer()");
75 /* Context activation is done by the caller. */
76 static void context_clean_fbo_attachments(const struct wined3d_gl_info
*gl_info
, GLenum target
)
80 for (i
= 0; i
< gl_info
->limits
.buffers
; ++i
)
82 gl_info
->fbo_ops
.glFramebufferTexture2D(target
, GL_COLOR_ATTACHMENT0
+ i
, GL_TEXTURE_2D
, 0, 0);
83 checkGLcall("glFramebufferTexture2D()");
85 gl_info
->fbo_ops
.glFramebufferTexture2D(target
, GL_DEPTH_ATTACHMENT
, GL_TEXTURE_2D
, 0, 0);
86 checkGLcall("glFramebufferTexture2D()");
88 gl_info
->fbo_ops
.glFramebufferTexture2D(target
, GL_STENCIL_ATTACHMENT
, GL_TEXTURE_2D
, 0, 0);
89 checkGLcall("glFramebufferTexture2D()");
92 /* Context activation is done by the caller. */
93 static void context_destroy_fbo(struct wined3d_context
*context
, GLuint fbo
)
95 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
97 context_bind_fbo(context
, GL_FRAMEBUFFER
, fbo
);
98 context_clean_fbo_attachments(gl_info
, GL_FRAMEBUFFER
);
99 context_bind_fbo(context
, GL_FRAMEBUFFER
, 0);
101 gl_info
->fbo_ops
.glDeleteFramebuffers(1, &fbo
);
102 checkGLcall("glDeleteFramebuffers()");
105 static void context_attach_depth_stencil_rb(const struct wined3d_gl_info
*gl_info
,
106 GLenum fbo_target
, DWORD format_flags
, GLuint rb
)
108 if (format_flags
& WINED3DFMT_FLAG_DEPTH
)
110 gl_info
->fbo_ops
.glFramebufferRenderbuffer(fbo_target
, GL_DEPTH_ATTACHMENT
, GL_RENDERBUFFER
, rb
);
111 checkGLcall("glFramebufferRenderbuffer()");
114 if (format_flags
& WINED3DFMT_FLAG_STENCIL
)
116 gl_info
->fbo_ops
.glFramebufferRenderbuffer(fbo_target
, GL_STENCIL_ATTACHMENT
, GL_RENDERBUFFER
, rb
);
117 checkGLcall("glFramebufferRenderbuffer()");
121 /* Context activation is done by the caller. */
122 static void context_attach_depth_stencil_fbo(struct wined3d_context
*context
,
123 GLenum fbo_target
, struct wined3d_surface
*depth_stencil
, DWORD location
)
125 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
127 TRACE("Attach depth stencil %p\n", depth_stencil
);
131 DWORD format_flags
= depth_stencil
->resource
.format
->flags
;
133 if (depth_stencil
->current_renderbuffer
)
135 context_attach_depth_stencil_rb(gl_info
, fbo_target
,
136 format_flags
, depth_stencil
->current_renderbuffer
->id
);
142 case WINED3D_LOCATION_TEXTURE_RGB
:
143 case WINED3D_LOCATION_TEXTURE_SRGB
:
144 surface_prepare_texture(depth_stencil
, context
, FALSE
);
146 if (format_flags
& WINED3DFMT_FLAG_DEPTH
)
148 gl_info
->fbo_ops
.glFramebufferTexture2D(fbo_target
, GL_DEPTH_ATTACHMENT
,
149 depth_stencil
->texture_target
, depth_stencil
->container
->texture_rgb
.name
,
150 depth_stencil
->texture_level
);
151 checkGLcall("glFramebufferTexture2D()");
154 if (format_flags
& WINED3DFMT_FLAG_STENCIL
)
156 gl_info
->fbo_ops
.glFramebufferTexture2D(fbo_target
, GL_STENCIL_ATTACHMENT
,
157 depth_stencil
->texture_target
, depth_stencil
->container
->texture_rgb
.name
,
158 depth_stencil
->texture_level
);
159 checkGLcall("glFramebufferTexture2D()");
163 case WINED3D_LOCATION_RB_MULTISAMPLE
:
164 surface_prepare_rb(depth_stencil
, gl_info
, TRUE
);
165 context_attach_depth_stencil_rb(gl_info
, fbo_target
,
166 format_flags
, depth_stencil
->rb_multisample
);
169 case WINED3D_LOCATION_RB_RESOLVED
:
170 surface_prepare_rb(depth_stencil
, gl_info
, FALSE
);
171 context_attach_depth_stencil_rb(gl_info
, fbo_target
,
172 format_flags
, depth_stencil
->rb_resolved
);
176 ERR("Unsupported location %s (%#x).\n", wined3d_debug_location(location
), location
);
181 if (!(format_flags
& WINED3DFMT_FLAG_DEPTH
))
183 gl_info
->fbo_ops
.glFramebufferTexture2D(fbo_target
, GL_DEPTH_ATTACHMENT
, GL_TEXTURE_2D
, 0, 0);
184 checkGLcall("glFramebufferTexture2D()");
187 if (!(format_flags
& WINED3DFMT_FLAG_STENCIL
))
189 gl_info
->fbo_ops
.glFramebufferTexture2D(fbo_target
, GL_STENCIL_ATTACHMENT
, GL_TEXTURE_2D
, 0, 0);
190 checkGLcall("glFramebufferTexture2D()");
195 gl_info
->fbo_ops
.glFramebufferTexture2D(fbo_target
, GL_DEPTH_ATTACHMENT
, GL_TEXTURE_2D
, 0, 0);
196 checkGLcall("glFramebufferTexture2D()");
198 gl_info
->fbo_ops
.glFramebufferTexture2D(fbo_target
, GL_STENCIL_ATTACHMENT
, GL_TEXTURE_2D
, 0, 0);
199 checkGLcall("glFramebufferTexture2D()");
203 /* Context activation is done by the caller. */
204 static void context_attach_surface_fbo(struct wined3d_context
*context
,
205 GLenum fbo_target
, DWORD idx
, struct wined3d_surface
*surface
, DWORD location
)
207 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
209 TRACE("Attach surface %p to %u\n", surface
, idx
);
211 if (surface
&& surface
->resource
.format
->id
!= WINED3DFMT_NULL
)
217 case WINED3D_LOCATION_TEXTURE_RGB
:
218 case WINED3D_LOCATION_TEXTURE_SRGB
:
219 srgb
= location
== WINED3D_LOCATION_TEXTURE_SRGB
;
220 surface_prepare_texture(surface
, context
, srgb
);
221 gl_info
->fbo_ops
.glFramebufferTexture2D(fbo_target
, GL_COLOR_ATTACHMENT0
+ idx
,
222 surface
->texture_target
, surface_get_texture_name(surface
, gl_info
, srgb
),
223 surface
->texture_level
);
224 checkGLcall("glFramebufferTexture2D()");
227 case WINED3D_LOCATION_RB_MULTISAMPLE
:
228 surface_prepare_rb(surface
, gl_info
, TRUE
);
229 gl_info
->fbo_ops
.glFramebufferRenderbuffer(fbo_target
, GL_COLOR_ATTACHMENT0
+ idx
,
230 GL_RENDERBUFFER
, surface
->rb_multisample
);
231 checkGLcall("glFramebufferRenderbuffer()");
234 case WINED3D_LOCATION_RB_RESOLVED
:
235 surface_prepare_rb(surface
, gl_info
, FALSE
);
236 gl_info
->fbo_ops
.glFramebufferRenderbuffer(fbo_target
, GL_COLOR_ATTACHMENT0
+ idx
,
237 GL_RENDERBUFFER
, surface
->rb_resolved
);
238 checkGLcall("glFramebufferRenderbuffer()");
242 ERR("Unsupported location %s (%#x).\n", wined3d_debug_location(location
), location
);
248 gl_info
->fbo_ops
.glFramebufferTexture2D(fbo_target
, GL_COLOR_ATTACHMENT0
+ idx
, GL_TEXTURE_2D
, 0, 0);
249 checkGLcall("glFramebufferTexture2D()");
253 /* Context activation is done by the caller. */
254 void context_check_fbo_status(const struct wined3d_context
*context
, GLenum target
)
256 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
259 if (!FIXME_ON(d3d
)) return;
261 status
= gl_info
->fbo_ops
.glCheckFramebufferStatus(target
);
262 if (status
== GL_FRAMEBUFFER_COMPLETE
)
264 TRACE("FBO complete\n");
268 const struct wined3d_surface
*attachment
;
271 FIXME("FBO status %s (%#x)\n", debug_fbostatus(status
), status
);
273 if (!context
->current_fbo
)
275 ERR("FBO 0 is incomplete, driver bug?\n");
279 FIXME("\tLocation %s (%#x).\n", wined3d_debug_location(context
->current_fbo
->location
),
280 context
->current_fbo
->location
);
282 /* Dump the FBO attachments */
283 for (i
= 0; i
< gl_info
->limits
.buffers
; ++i
)
285 attachment
= context
->current_fbo
->render_targets
[i
];
288 FIXME("\tColor attachment %d: (%p) %s %ux%u %u samples.\n",
289 i
, attachment
, debug_d3dformat(attachment
->resource
.format
->id
),
290 attachment
->pow2Width
, attachment
->pow2Height
, attachment
->resource
.multisample_type
);
293 attachment
= context
->current_fbo
->depth_stencil
;
296 FIXME("\tDepth attachment: (%p) %s %ux%u %u samples.\n",
297 attachment
, debug_d3dformat(attachment
->resource
.format
->id
),
298 attachment
->pow2Width
, attachment
->pow2Height
, attachment
->resource
.multisample_type
);
303 static inline DWORD
context_generate_rt_mask(GLenum buffer
)
305 /* Should take care of all the GL_FRONT/GL_BACK/GL_AUXi/GL_NONE... cases */
306 return buffer
? (1 << 31) | buffer
: 0;
309 static inline DWORD
context_generate_rt_mask_from_surface(const struct wined3d_surface
*target
)
311 return (1 << 31) | surface_get_gl_buffer(target
);
314 static struct fbo_entry
*context_create_fbo_entry(const struct wined3d_context
*context
,
315 struct wined3d_surface
**render_targets
, struct wined3d_surface
*depth_stencil
, DWORD location
)
317 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
318 struct fbo_entry
*entry
;
320 entry
= HeapAlloc(GetProcessHeap(), 0, sizeof(*entry
));
321 entry
->render_targets
= HeapAlloc(GetProcessHeap(), 0, gl_info
->limits
.buffers
* sizeof(*entry
->render_targets
));
322 memcpy(entry
->render_targets
, render_targets
, gl_info
->limits
.buffers
* sizeof(*entry
->render_targets
));
323 entry
->depth_stencil
= depth_stencil
;
324 entry
->location
= location
;
325 entry
->rt_mask
= context_generate_rt_mask(GL_COLOR_ATTACHMENT0
);
326 entry
->attached
= FALSE
;
327 gl_info
->fbo_ops
.glGenFramebuffers(1, &entry
->id
);
328 checkGLcall("glGenFramebuffers()");
329 TRACE("Created FBO %u.\n", entry
->id
);
334 /* Context activation is done by the caller. */
335 static void context_reuse_fbo_entry(struct wined3d_context
*context
, GLenum target
,
336 struct wined3d_surface
**render_targets
, struct wined3d_surface
*depth_stencil
,
337 DWORD location
, struct fbo_entry
*entry
)
339 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
341 context_bind_fbo(context
, target
, entry
->id
);
342 context_clean_fbo_attachments(gl_info
, target
);
344 memcpy(entry
->render_targets
, render_targets
, gl_info
->limits
.buffers
* sizeof(*entry
->render_targets
));
345 entry
->depth_stencil
= depth_stencil
;
346 entry
->location
= location
;
347 entry
->attached
= FALSE
;
350 /* Context activation is done by the caller. */
351 static void context_destroy_fbo_entry(struct wined3d_context
*context
, struct fbo_entry
*entry
)
355 TRACE("Destroy FBO %u.\n", entry
->id
);
356 context_destroy_fbo(context
, entry
->id
);
358 --context
->fbo_entry_count
;
359 list_remove(&entry
->entry
);
360 HeapFree(GetProcessHeap(), 0, entry
->render_targets
);
361 HeapFree(GetProcessHeap(), 0, entry
);
364 /* Context activation is done by the caller. */
365 static struct fbo_entry
*context_find_fbo_entry(struct wined3d_context
*context
, GLenum target
,
366 struct wined3d_surface
**render_targets
, struct wined3d_surface
*depth_stencil
, DWORD location
)
368 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
369 struct fbo_entry
*entry
;
371 if (depth_stencil
&& render_targets
&& render_targets
[0])
373 if (depth_stencil
->resource
.width
< render_targets
[0]->resource
.width
||
374 depth_stencil
->resource
.height
< render_targets
[0]->resource
.height
)
376 WARN("Depth stencil is smaller than the primary color buffer, disabling\n");
377 depth_stencil
= NULL
;
381 LIST_FOR_EACH_ENTRY(entry
, &context
->fbo_list
, struct fbo_entry
, entry
)
383 if (!memcmp(entry
->render_targets
,
384 render_targets
, gl_info
->limits
.buffers
* sizeof(*entry
->render_targets
))
385 && entry
->depth_stencil
== depth_stencil
&& entry
->location
== location
)
387 list_remove(&entry
->entry
);
388 list_add_head(&context
->fbo_list
, &entry
->entry
);
393 if (context
->fbo_entry_count
< WINED3D_MAX_FBO_ENTRIES
)
395 entry
= context_create_fbo_entry(context
, render_targets
, depth_stencil
, location
);
396 list_add_head(&context
->fbo_list
, &entry
->entry
);
397 ++context
->fbo_entry_count
;
401 entry
= LIST_ENTRY(list_tail(&context
->fbo_list
), struct fbo_entry
, entry
);
402 context_reuse_fbo_entry(context
, target
, render_targets
, depth_stencil
, location
, entry
);
403 list_remove(&entry
->entry
);
404 list_add_head(&context
->fbo_list
, &entry
->entry
);
410 /* Context activation is done by the caller. */
411 static void context_apply_fbo_entry(struct wined3d_context
*context
, GLenum target
, struct fbo_entry
*entry
)
413 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
415 GLuint read_binding
, draw_binding
;
419 context_bind_fbo(context
, target
, entry
->id
);
423 read_binding
= context
->fbo_read_binding
;
424 draw_binding
= context
->fbo_draw_binding
;
425 context_bind_fbo(context
, GL_FRAMEBUFFER
, entry
->id
);
427 /* Apply render targets */
428 for (i
= 0; i
< gl_info
->limits
.buffers
; ++i
)
430 context_attach_surface_fbo(context
, target
, i
, entry
->render_targets
[i
], entry
->location
);
433 /* Apply depth targets */
434 if (entry
->depth_stencil
)
435 surface_set_compatible_renderbuffer(entry
->depth_stencil
, entry
->render_targets
[0]);
436 context_attach_depth_stencil_fbo(context
, target
, entry
->depth_stencil
, entry
->location
);
438 /* Set valid read and draw buffer bindings to satisfy pedantic pre-ES2_compatibility
439 * GL contexts requirements. */
440 glReadBuffer(GL_NONE
);
441 context_set_draw_buffer(context
, GL_NONE
);
442 if (target
!= GL_FRAMEBUFFER
)
444 if (target
== GL_READ_FRAMEBUFFER
)
445 context_bind_fbo(context
, GL_DRAW_FRAMEBUFFER
, draw_binding
);
447 context_bind_fbo(context
, GL_READ_FRAMEBUFFER
, read_binding
);
450 entry
->attached
= TRUE
;
453 /* Context activation is done by the caller. */
454 static void context_apply_fbo_state(struct wined3d_context
*context
, GLenum target
,
455 struct wined3d_surface
**render_targets
, struct wined3d_surface
*depth_stencil
, DWORD location
)
457 struct fbo_entry
*entry
, *entry2
;
459 LIST_FOR_EACH_ENTRY_SAFE(entry
, entry2
, &context
->fbo_destroy_list
, struct fbo_entry
, entry
)
461 context_destroy_fbo_entry(context
, entry
);
464 if (context
->rebind_fbo
)
466 context_bind_fbo(context
, GL_FRAMEBUFFER
, 0);
467 context
->rebind_fbo
= FALSE
;
470 if (location
== WINED3D_LOCATION_DRAWABLE
)
472 context
->current_fbo
= NULL
;
473 context_bind_fbo(context
, target
, 0);
477 context
->current_fbo
= context_find_fbo_entry(context
, target
, render_targets
, depth_stencil
, location
);
478 context_apply_fbo_entry(context
, target
, context
->current_fbo
);
482 /* Context activation is done by the caller. */
483 void context_apply_fbo_state_blit(struct wined3d_context
*context
, GLenum target
,
484 struct wined3d_surface
*render_target
, struct wined3d_surface
*depth_stencil
, DWORD location
)
486 UINT clear_size
= (context
->gl_info
->limits
.buffers
- 1) * sizeof(*context
->blit_targets
);
488 context
->blit_targets
[0] = render_target
;
490 memset(&context
->blit_targets
[1], 0, clear_size
);
491 context_apply_fbo_state(context
, target
, context
->blit_targets
, depth_stencil
, location
);
494 /* Context activation is done by the caller. */
495 void context_alloc_occlusion_query(struct wined3d_context
*context
, struct wined3d_occlusion_query
*query
)
497 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
499 if (context
->free_occlusion_query_count
)
501 query
->id
= context
->free_occlusion_queries
[--context
->free_occlusion_query_count
];
505 if (gl_info
->supported
[ARB_OCCLUSION_QUERY
])
507 GL_EXTCALL(glGenQueriesARB(1, &query
->id
));
508 checkGLcall("glGenQueriesARB");
510 TRACE("Allocated occlusion query %u in context %p.\n", query
->id
, context
);
514 WARN("Occlusion queries not supported, not allocating query id.\n");
519 query
->context
= context
;
520 list_add_head(&context
->occlusion_queries
, &query
->entry
);
523 void context_free_occlusion_query(struct wined3d_occlusion_query
*query
)
525 struct wined3d_context
*context
= query
->context
;
527 list_remove(&query
->entry
);
528 query
->context
= NULL
;
530 if (context
->free_occlusion_query_count
>= context
->free_occlusion_query_size
- 1)
532 UINT new_size
= context
->free_occlusion_query_size
<< 1;
533 GLuint
*new_data
= HeapReAlloc(GetProcessHeap(), 0, context
->free_occlusion_queries
,
534 new_size
* sizeof(*context
->free_occlusion_queries
));
538 ERR("Failed to grow free list, leaking query %u in context %p.\n", query
->id
, context
);
542 context
->free_occlusion_query_size
= new_size
;
543 context
->free_occlusion_queries
= new_data
;
546 context
->free_occlusion_queries
[context
->free_occlusion_query_count
++] = query
->id
;
549 /* Context activation is done by the caller. */
550 void context_alloc_event_query(struct wined3d_context
*context
, struct wined3d_event_query
*query
)
552 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
554 if (context
->free_event_query_count
)
556 query
->object
= context
->free_event_queries
[--context
->free_event_query_count
];
560 if (gl_info
->supported
[ARB_SYNC
])
562 /* Using ARB_sync, not much to do here. */
563 query
->object
.sync
= NULL
;
564 TRACE("Allocated event query %p in context %p.\n", query
->object
.sync
, context
);
566 else if (gl_info
->supported
[APPLE_FENCE
])
568 GL_EXTCALL(glGenFencesAPPLE(1, &query
->object
.id
));
569 checkGLcall("glGenFencesAPPLE");
571 TRACE("Allocated event query %u in context %p.\n", query
->object
.id
, context
);
573 else if(gl_info
->supported
[NV_FENCE
])
575 GL_EXTCALL(glGenFencesNV(1, &query
->object
.id
));
576 checkGLcall("glGenFencesNV");
578 TRACE("Allocated event query %u in context %p.\n", query
->object
.id
, context
);
582 WARN("Event queries not supported, not allocating query id.\n");
583 query
->object
.id
= 0;
587 query
->context
= context
;
588 list_add_head(&context
->event_queries
, &query
->entry
);
591 void context_free_event_query(struct wined3d_event_query
*query
)
593 struct wined3d_context
*context
= query
->context
;
595 list_remove(&query
->entry
);
596 query
->context
= NULL
;
598 if (context
->free_event_query_count
>= context
->free_event_query_size
- 1)
600 UINT new_size
= context
->free_event_query_size
<< 1;
601 union wined3d_gl_query_object
*new_data
= HeapReAlloc(GetProcessHeap(), 0, context
->free_event_queries
,
602 new_size
* sizeof(*context
->free_event_queries
));
606 ERR("Failed to grow free list, leaking query %u in context %p.\n", query
->object
.id
, context
);
610 context
->free_event_query_size
= new_size
;
611 context
->free_event_queries
= new_data
;
614 context
->free_event_queries
[context
->free_event_query_count
++] = query
->object
;
617 /* Context activation is done by the caller. */
618 void context_alloc_timestamp_query(struct wined3d_context
*context
, struct wined3d_timestamp_query
*query
)
620 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
622 if (context
->free_timestamp_query_count
)
624 query
->id
= context
->free_timestamp_queries
[--context
->free_timestamp_query_count
];
628 GL_EXTCALL(glGenQueriesARB(1, &query
->id
));
629 checkGLcall("glGenQueriesARB");
631 TRACE("Allocated timestamp query %u in context %p.\n", query
->id
, context
);
634 query
->context
= context
;
635 list_add_head(&context
->timestamp_queries
, &query
->entry
);
638 void context_free_timestamp_query(struct wined3d_timestamp_query
*query
)
640 struct wined3d_context
*context
= query
->context
;
642 list_remove(&query
->entry
);
643 query
->context
= NULL
;
645 if (context
->free_timestamp_query_count
>= context
->free_timestamp_query_size
- 1)
647 UINT new_size
= context
->free_timestamp_query_size
<< 1;
648 GLuint
*new_data
= HeapReAlloc(GetProcessHeap(), 0, context
->free_timestamp_queries
,
649 new_size
* sizeof(*context
->free_timestamp_queries
));
653 ERR("Failed to grow free list, leaking query %u in context %p.\n", query
->id
, context
);
657 context
->free_timestamp_query_size
= new_size
;
658 context
->free_timestamp_queries
= new_data
;
661 context
->free_timestamp_queries
[context
->free_timestamp_query_count
++] = query
->id
;
664 typedef void (context_fbo_entry_func_t
)(struct wined3d_context
*context
, struct fbo_entry
*entry
);
666 static void context_enum_surface_fbo_entries(const struct wined3d_device
*device
,
667 const struct wined3d_surface
*surface
, context_fbo_entry_func_t
*callback
)
671 for (i
= 0; i
< device
->context_count
; ++i
)
673 struct wined3d_context
*context
= device
->contexts
[i
];
674 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
675 struct fbo_entry
*entry
, *entry2
;
677 if (context
->current_rt
== surface
) context
->current_rt
= NULL
;
679 LIST_FOR_EACH_ENTRY_SAFE(entry
, entry2
, &context
->fbo_list
, struct fbo_entry
, entry
)
683 if (entry
->depth_stencil
== surface
)
685 callback(context
, entry
);
689 for (j
= 0; j
< gl_info
->limits
.buffers
; ++j
)
691 if (entry
->render_targets
[j
] == surface
)
693 callback(context
, entry
);
701 static void context_queue_fbo_entry_destruction(struct wined3d_context
*context
, struct fbo_entry
*entry
)
703 list_remove(&entry
->entry
);
704 list_add_head(&context
->fbo_destroy_list
, &entry
->entry
);
707 void context_resource_released(const struct wined3d_device
*device
,
708 struct wined3d_resource
*resource
, enum wined3d_resource_type type
)
710 if (!device
->d3d_initialized
) return;
714 case WINED3D_RTYPE_SURFACE
:
715 context_enum_surface_fbo_entries(device
, surface_from_resource(resource
),
716 context_queue_fbo_entry_destruction
);
724 static void context_detach_fbo_entry(struct wined3d_context
*context
, struct fbo_entry
*entry
)
726 entry
->attached
= FALSE
;
729 void context_resource_unloaded(const struct wined3d_device
*device
,
730 struct wined3d_resource
*resource
, enum wined3d_resource_type type
)
734 case WINED3D_RTYPE_SURFACE
:
735 context_enum_surface_fbo_entries(device
, surface_from_resource(resource
),
736 context_detach_fbo_entry
);
744 void context_surface_update(struct wined3d_context
*context
, const struct wined3d_surface
*surface
)
746 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
747 struct fbo_entry
*entry
= context
->current_fbo
;
750 if (!entry
|| context
->rebind_fbo
) return;
752 for (i
= 0; i
< gl_info
->limits
.buffers
; ++i
)
754 if (surface
== entry
->render_targets
[i
])
756 TRACE("Updated surface %p is bound as color attachment %u to the current FBO.\n", surface
, i
);
757 context
->rebind_fbo
= TRUE
;
762 if (surface
== entry
->depth_stencil
)
764 TRACE("Updated surface %p is bound as depth attachment to the current FBO.\n", surface
);
765 context
->rebind_fbo
= TRUE
;
769 static BOOL
context_restore_pixel_format(struct wined3d_context
*ctx
)
771 const struct wined3d_gl_info
*gl_info
= ctx
->gl_info
;
774 if (ctx
->restore_pf
&& IsWindow(ctx
->restore_pf_win
))
776 if (ctx
->gl_info
->supported
[WGL_WINE_PIXEL_FORMAT_PASSTHROUGH
])
778 HDC dc
= GetDC(ctx
->restore_pf_win
);
781 if (!(ret
= GL_EXTCALL(wglSetPixelFormatWINE(dc
, ctx
->restore_pf
))))
783 ERR("wglSetPixelFormatWINE failed to restore pixel format %d on window %p.\n",
784 ctx
->restore_pf
, ctx
->restore_pf_win
);
786 ReleaseDC(ctx
->restore_pf_win
, dc
);
791 ERR("can't restore pixel format %d on window %p\n", ctx
->restore_pf
, ctx
->restore_pf_win
);
796 ctx
->restore_pf_win
= NULL
;
800 static BOOL
context_set_pixel_format(struct wined3d_context
*context
, HDC dc
, BOOL
private, int format
)
802 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
805 if (dc
== context
->hdc
&& context
->hdc_is_private
&& context
->hdc_has_format
)
808 current
= GetPixelFormat(dc
);
809 if (current
== format
) goto success
;
813 if (!SetPixelFormat(dc
, format
, NULL
))
815 /* This may also happen if the dc belongs to a destroyed window. */
816 WARN("Failed to set pixel format %d on device context %p, last error %#x.\n",
817 format
, dc
, GetLastError());
821 context
->restore_pf
= 0;
822 context
->restore_pf_win
= private ? NULL
: WindowFromDC(dc
);
826 /* By default WGL doesn't allow pixel format adjustments but we need it
827 * here. For this reason there's a Wine specific wglSetPixelFormat()
828 * which allows us to set the pixel format multiple times. Only use it
829 * when really needed. */
830 if (gl_info
->supported
[WGL_WINE_PIXEL_FORMAT_PASSTHROUGH
])
834 if (!GL_EXTCALL(wglSetPixelFormatWINE(dc
, format
)))
836 ERR("wglSetPixelFormatWINE failed to set pixel format %d on device context %p.\n",
841 win
= private ? NULL
: WindowFromDC(dc
);
842 if (win
!= context
->restore_pf_win
)
844 context_restore_pixel_format(context
);
846 context
->restore_pf
= private ? 0 : current
;
847 context
->restore_pf_win
= win
;
853 /* OpenGL doesn't allow pixel format adjustments. Print an error and
854 * continue using the old format. There's a big chance that the old
855 * format works although with a performance hit and perhaps rendering
857 ERR("Unable to set pixel format %d on device context %p. Already using format %d.\n",
858 format
, dc
, current
);
862 if (dc
== context
->hdc
&& context
->hdc_is_private
)
863 context
->hdc_has_format
= TRUE
;
867 static BOOL
context_set_gl_context(struct wined3d_context
*ctx
)
869 struct wined3d_swapchain
*swapchain
= ctx
->swapchain
;
872 if (!context_set_pixel_format(ctx
, ctx
->hdc
, ctx
->hdc_is_private
, ctx
->pixel_format
))
874 WARN("Failed to set pixel format %d on device context %p.\n",
875 ctx
->pixel_format
, ctx
->hdc
);
879 if (backup
|| !wglMakeCurrent(ctx
->hdc
, ctx
->glCtx
))
883 WARN("Failed to make GL context %p current on device context %p, last error %#x.\n",
884 ctx
->glCtx
, ctx
->hdc
, GetLastError());
886 WARN("Trying fallback to the backup window.\n");
888 /* FIXME: If the context is destroyed it's no longer associated with
889 * a swapchain, so we can't use the swapchain to get a backup dc. To
890 * make this work windowless contexts would need to be handled by the
894 FIXME("Unable to get backup dc for destroyed context %p.\n", ctx
);
895 context_set_current(NULL
);
899 if (!(dc
= swapchain_get_backup_dc(swapchain
)))
901 context_set_current(NULL
);
905 if (!context_set_pixel_format(ctx
, dc
, TRUE
, ctx
->pixel_format
))
907 ERR("Failed to set pixel format %d on device context %p.\n",
908 ctx
->pixel_format
, dc
);
909 context_set_current(NULL
);
913 if (!wglMakeCurrent(dc
, ctx
->glCtx
))
915 ERR("Fallback to backup window (dc %p) failed too, last error %#x.\n",
917 context_set_current(NULL
);
927 static void context_restore_gl_context(const struct wined3d_gl_info
*gl_info
, HDC dc
, HGLRC gl_ctx
)
929 if (!wglMakeCurrent(dc
, gl_ctx
))
931 ERR("Failed to restore GL context %p on device context %p, last error %#x.\n",
932 gl_ctx
, dc
, GetLastError());
933 context_set_current(NULL
);
937 static void context_update_window(struct wined3d_context
*context
)
939 if (context
->win_handle
== context
->swapchain
->win_handle
)
942 TRACE("Updating context %p window from %p to %p.\n",
943 context
, context
->win_handle
, context
->swapchain
->win_handle
);
946 wined3d_release_dc(context
->win_handle
, context
->hdc
);
948 context
->win_handle
= context
->swapchain
->win_handle
;
949 context
->hdc_is_private
= FALSE
;
950 context
->hdc_has_format
= FALSE
;
951 context
->needs_set
= 1;
954 if (!(context
->hdc
= GetDC(context
->win_handle
)))
956 ERR("Failed to get a device context for window %p.\n", context
->win_handle
);
961 static void context_destroy_gl_resources(struct wined3d_context
*context
)
963 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
964 struct wined3d_timestamp_query
*timestamp_query
;
965 struct wined3d_occlusion_query
*occlusion_query
;
966 struct wined3d_event_query
*event_query
;
967 struct fbo_entry
*entry
, *entry2
;
972 restore_ctx
= wglGetCurrentContext();
973 restore_dc
= wglGetCurrentDC();
975 if (restore_ctx
== context
->glCtx
)
977 else if (context
->valid
)
978 context_set_gl_context(context
);
980 LIST_FOR_EACH_ENTRY(timestamp_query
, &context
->timestamp_queries
, struct wined3d_timestamp_query
, entry
)
983 GL_EXTCALL(glDeleteQueriesARB(1, ×tamp_query
->id
));
984 timestamp_query
->context
= NULL
;
987 LIST_FOR_EACH_ENTRY(occlusion_query
, &context
->occlusion_queries
, struct wined3d_occlusion_query
, entry
)
989 if (context
->valid
&& gl_info
->supported
[ARB_OCCLUSION_QUERY
])
990 GL_EXTCALL(glDeleteQueriesARB(1, &occlusion_query
->id
));
991 occlusion_query
->context
= NULL
;
994 LIST_FOR_EACH_ENTRY(event_query
, &context
->event_queries
, struct wined3d_event_query
, entry
)
998 if (gl_info
->supported
[ARB_SYNC
])
1000 if (event_query
->object
.sync
) GL_EXTCALL(glDeleteSync(event_query
->object
.sync
));
1002 else if (gl_info
->supported
[APPLE_FENCE
]) GL_EXTCALL(glDeleteFencesAPPLE(1, &event_query
->object
.id
));
1003 else if (gl_info
->supported
[NV_FENCE
]) GL_EXTCALL(glDeleteFencesNV(1, &event_query
->object
.id
));
1005 event_query
->context
= NULL
;
1008 LIST_FOR_EACH_ENTRY_SAFE(entry
, entry2
, &context
->fbo_destroy_list
, struct fbo_entry
, entry
)
1010 if (!context
->valid
) entry
->id
= 0;
1011 context_destroy_fbo_entry(context
, entry
);
1014 LIST_FOR_EACH_ENTRY_SAFE(entry
, entry2
, &context
->fbo_list
, struct fbo_entry
, entry
)
1016 if (!context
->valid
) entry
->id
= 0;
1017 context_destroy_fbo_entry(context
, entry
);
1022 if (context
->dummy_arbfp_prog
)
1024 GL_EXTCALL(glDeleteProgramsARB(1, &context
->dummy_arbfp_prog
));
1027 if (gl_info
->supported
[ARB_TIMER_QUERY
])
1028 GL_EXTCALL(glDeleteQueriesARB(context
->free_timestamp_query_count
, context
->free_timestamp_queries
));
1030 if (gl_info
->supported
[ARB_OCCLUSION_QUERY
])
1031 GL_EXTCALL(glDeleteQueriesARB(context
->free_occlusion_query_count
, context
->free_occlusion_queries
));
1033 if (gl_info
->supported
[ARB_SYNC
])
1035 for (i
= 0; i
< context
->free_event_query_count
; ++i
)
1037 GL_EXTCALL(glDeleteSync(context
->free_event_queries
[i
].sync
));
1040 else if (gl_info
->supported
[APPLE_FENCE
])
1042 for (i
= 0; i
< context
->free_event_query_count
; ++i
)
1044 GL_EXTCALL(glDeleteFencesAPPLE(1, &context
->free_event_queries
[i
].id
));
1047 else if (gl_info
->supported
[NV_FENCE
])
1049 for (i
= 0; i
< context
->free_event_query_count
; ++i
)
1051 GL_EXTCALL(glDeleteFencesNV(1, &context
->free_event_queries
[i
].id
));
1055 checkGLcall("context cleanup");
1058 HeapFree(GetProcessHeap(), 0, context
->free_timestamp_queries
);
1059 HeapFree(GetProcessHeap(), 0, context
->free_occlusion_queries
);
1060 HeapFree(GetProcessHeap(), 0, context
->free_event_queries
);
1062 context_restore_pixel_format(context
);
1065 context_restore_gl_context(gl_info
, restore_dc
, restore_ctx
);
1067 else if (wglGetCurrentContext() && !wglMakeCurrent(NULL
, NULL
))
1069 ERR("Failed to disable GL context.\n");
1072 wined3d_release_dc(context
->win_handle
, context
->hdc
);
1074 if (!wglDeleteContext(context
->glCtx
))
1076 DWORD err
= GetLastError();
1077 ERR("wglDeleteContext(%p) failed, last error %#x.\n", context
->glCtx
, err
);
1081 DWORD
context_get_tls_idx(void)
1083 return wined3d_context_tls_idx
;
1086 void context_set_tls_idx(DWORD idx
)
1088 wined3d_context_tls_idx
= idx
;
1091 struct wined3d_context
*context_get_current(void)
1093 return TlsGetValue(wined3d_context_tls_idx
);
1096 BOOL
context_set_current(struct wined3d_context
*ctx
)
1098 struct wined3d_context
*old
= context_get_current();
1102 TRACE("Already using D3D context %p.\n", ctx
);
1110 TRACE("Switching away from destroyed context %p.\n", old
);
1111 context_destroy_gl_resources(old
);
1112 HeapFree(GetProcessHeap(), 0, (void *)old
->gl_info
);
1113 HeapFree(GetProcessHeap(), 0, old
);
1125 ERR("Trying to make invalid context %p current\n", ctx
);
1129 TRACE("Switching to D3D context %p, GL context %p, device context %p.\n", ctx
, ctx
->glCtx
, ctx
->hdc
);
1130 if (!context_set_gl_context(ctx
))
1134 else if(wglGetCurrentContext())
1136 TRACE("Clearing current D3D context.\n");
1137 if (!wglMakeCurrent(NULL
, NULL
))
1139 DWORD err
= GetLastError();
1140 ERR("Failed to clear current GL context, last error %#x.\n", err
);
1141 TlsSetValue(wined3d_context_tls_idx
, NULL
);
1146 return TlsSetValue(wined3d_context_tls_idx
, ctx
);
1149 void context_release(struct wined3d_context
*context
)
1151 TRACE("Releasing context %p, level %u.\n", context
, context
->level
);
1155 if (!context
->level
)
1156 WARN("Context %p is not active.\n", context
);
1157 else if (context
!= context_get_current())
1158 WARN("Context %p is not the current context.\n", context
);
1161 if (!--context
->level
)
1163 if (context_restore_pixel_format(context
))
1164 context
->needs_set
= 1;
1165 if (context
->restore_ctx
)
1167 TRACE("Restoring GL context %p on device context %p.\n", context
->restore_ctx
, context
->restore_dc
);
1168 context_restore_gl_context(context
->gl_info
, context
->restore_dc
, context
->restore_ctx
);
1169 context
->restore_ctx
= NULL
;
1170 context
->restore_dc
= NULL
;
1175 static void context_enter(struct wined3d_context
*context
)
1177 TRACE("Entering context %p, level %u.\n", context
, context
->level
+ 1);
1179 if (!context
->level
++)
1181 const struct wined3d_context
*current_context
= context_get_current();
1182 HGLRC current_gl
= wglGetCurrentContext();
1184 if (current_gl
&& (!current_context
|| current_context
->glCtx
!= current_gl
))
1186 TRACE("Another GL context (%p on device context %p) is already current.\n",
1187 current_gl
, wglGetCurrentDC());
1188 context
->restore_ctx
= current_gl
;
1189 context
->restore_dc
= wglGetCurrentDC();
1190 context
->needs_set
= 1;
1192 else if (!context
->needs_set
&& !(context
->hdc_is_private
&& context
->hdc_has_format
)
1193 && context
->pixel_format
!= GetPixelFormat(context
->hdc
))
1194 context
->needs_set
= 1;
1198 void context_invalidate_state(struct wined3d_context
*context
, DWORD state
)
1200 DWORD rep
= context
->state_table
[state
].representative
;
1204 if (isStateDirty(context
, rep
)) return;
1206 context
->dirtyArray
[context
->numDirtyEntries
++] = rep
;
1207 idx
= rep
/ (sizeof(*context
->isStateDirty
) * CHAR_BIT
);
1208 shift
= rep
& ((sizeof(*context
->isStateDirty
) * CHAR_BIT
) - 1);
1209 context
->isStateDirty
[idx
] |= (1 << shift
);
1212 /* This function takes care of wined3d pixel format selection. */
1213 static int context_choose_pixel_format(const struct wined3d_device
*device
, HDC hdc
,
1214 const struct wined3d_format
*color_format
, const struct wined3d_format
*ds_format
,
1215 BOOL auxBuffers
, BOOL findCompatible
)
1218 BYTE redBits
, greenBits
, blueBits
, alphaBits
, colorBits
;
1219 BYTE depthBits
=0, stencilBits
=0;
1220 unsigned int current_value
;
1221 unsigned int cfg_count
= device
->adapter
->cfg_count
;
1224 TRACE("device %p, dc %p, color_format %s, ds_format %s, aux_buffers %#x, find_compatible %#x.\n",
1225 device
, hdc
, debug_d3dformat(color_format
->id
), debug_d3dformat(ds_format
->id
),
1226 auxBuffers
, findCompatible
);
1228 if (!getColorBits(color_format
, &redBits
, &greenBits
, &blueBits
, &alphaBits
, &colorBits
))
1230 ERR("Unable to get color bits for format %s (%#x)!\n",
1231 debug_d3dformat(color_format
->id
), color_format
->id
);
1235 getDepthStencilBits(ds_format
, &depthBits
, &stencilBits
);
1238 for (i
= 0; i
< cfg_count
; ++i
)
1240 const struct wined3d_pixel_format
*cfg
= &device
->adapter
->cfgs
[i
];
1243 /* For now only accept RGBA formats. Perhaps some day we will
1244 * allow floating point formats for pbuffers. */
1245 if (cfg
->iPixelType
!= WGL_TYPE_RGBA_ARB
)
1247 /* In window mode we need a window drawable format and double buffering. */
1248 if (!(cfg
->windowDrawable
&& cfg
->doubleBuffer
))
1250 if (cfg
->redSize
< redBits
)
1252 if (cfg
->greenSize
< greenBits
)
1254 if (cfg
->blueSize
< blueBits
)
1256 if (cfg
->alphaSize
< alphaBits
)
1258 if (cfg
->depthSize
< depthBits
)
1260 if (stencilBits
&& cfg
->stencilSize
!= stencilBits
)
1262 /* Check multisampling support. */
1263 if (cfg
->numSamples
)
1267 /* We try to locate a format which matches our requirements exactly. In case of
1268 * depth it is no problem to emulate 16-bit using e.g. 24-bit, so accept that. */
1269 if (cfg
->depthSize
== depthBits
)
1271 if (cfg
->stencilSize
== stencilBits
)
1273 if (cfg
->alphaSize
== alphaBits
)
1275 /* We like to have aux buffers in backbuffer mode */
1276 if (auxBuffers
&& cfg
->auxBuffers
)
1278 if (cfg
->redSize
== redBits
1279 && cfg
->greenSize
== greenBits
1280 && cfg
->blueSize
== blueBits
)
1283 if (value
> current_value
)
1285 iPixelFormat
= cfg
->iPixelFormat
;
1286 current_value
= value
;
1290 /* When findCompatible is set and no suitable format was found, let ChoosePixelFormat choose a pixel format in order not to crash. */
1291 if(!iPixelFormat
&& !findCompatible
) {
1292 ERR("Can't find a suitable iPixelFormat\n");
1294 } else if(!iPixelFormat
) {
1295 PIXELFORMATDESCRIPTOR pfd
;
1297 TRACE("Falling back to ChoosePixelFormat as we weren't able to find an exactly matching pixel format\n");
1298 /* PixelFormat selection */
1299 ZeroMemory(&pfd
, sizeof(pfd
));
1300 pfd
.nSize
= sizeof(pfd
);
1302 pfd
.dwFlags
= PFD_SUPPORT_OPENGL
| PFD_DOUBLEBUFFER
| PFD_DRAW_TO_WINDOW
;/*PFD_GENERIC_ACCELERATED*/
1303 pfd
.iPixelType
= PFD_TYPE_RGBA
;
1304 pfd
.cAlphaBits
= alphaBits
;
1305 pfd
.cColorBits
= colorBits
;
1306 pfd
.cDepthBits
= depthBits
;
1307 pfd
.cStencilBits
= stencilBits
;
1308 pfd
.iLayerType
= PFD_MAIN_PLANE
;
1310 iPixelFormat
= ChoosePixelFormat(hdc
, &pfd
);
1312 /* If this happens something is very wrong as ChoosePixelFormat barely fails */
1313 ERR("Can't find a suitable iPixelFormat\n");
1318 TRACE("Found iPixelFormat=%d for ColorFormat=%s, DepthStencilFormat=%s\n",
1319 iPixelFormat
, debug_d3dformat(color_format
->id
), debug_d3dformat(ds_format
->id
));
1320 return iPixelFormat
;
1323 /* Context activation is done by the caller. */
1324 static void bind_dummy_textures(const struct wined3d_device
*device
, const struct wined3d_context
*context
)
1326 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
1327 unsigned int i
, count
= min(MAX_COMBINED_SAMPLERS
, gl_info
->limits
.combined_samplers
);
1329 for (i
= 0; i
< count
; ++i
)
1331 GL_EXTCALL(glActiveTextureARB(GL_TEXTURE0_ARB
+ i
));
1332 checkGLcall("glActiveTextureARB");
1334 gl_info
->gl_ops
.gl
.p_glBindTexture(GL_TEXTURE_2D
, device
->dummy_texture_2d
[i
]);
1335 checkGLcall("glBindTexture");
1337 if (gl_info
->supported
[ARB_TEXTURE_RECTANGLE
])
1339 gl_info
->gl_ops
.gl
.p_glBindTexture(GL_TEXTURE_RECTANGLE_ARB
, device
->dummy_texture_rect
[i
]);
1340 checkGLcall("glBindTexture");
1343 if (gl_info
->supported
[EXT_TEXTURE3D
])
1345 gl_info
->gl_ops
.gl
.p_glBindTexture(GL_TEXTURE_3D
, device
->dummy_texture_3d
[i
]);
1346 checkGLcall("glBindTexture");
1349 if (gl_info
->supported
[ARB_TEXTURE_CUBE_MAP
])
1351 gl_info
->gl_ops
.gl
.p_glBindTexture(GL_TEXTURE_CUBE_MAP
, device
->dummy_texture_cube
[i
]);
1352 checkGLcall("glBindTexture");
1357 BOOL
context_debug_output_enabled(const struct wined3d_gl_info
*gl_info
)
1359 return gl_info
->supported
[ARB_DEBUG_OUTPUT
]
1360 && (ERR_ON(d3d
) || FIXME_ON(d3d
) || WARN_ON(d3d_perf
));
1363 static void WINE_GLAPI
wined3d_debug_callback(GLenum source
, GLenum type
, GLuint id
,
1364 GLenum severity
, GLsizei length
, const char *message
, void *ctx
)
1368 case GL_DEBUG_TYPE_ERROR_ARB
:
1369 ERR("%p: %s.\n", ctx
, debugstr_an(message
, length
));
1372 case GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB
:
1373 case GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB
:
1374 case GL_DEBUG_TYPE_PORTABILITY_ARB
:
1375 FIXME("%p: %s.\n", ctx
, debugstr_an(message
, length
));
1378 case GL_DEBUG_TYPE_PERFORMANCE_ARB
:
1379 WARN_(d3d_perf
)("%p: %s.\n", ctx
, debugstr_an(message
, length
));
1383 FIXME("ctx %p, type %#x: %s.\n", ctx
, type
, debugstr_an(message
, length
));
1388 struct wined3d_context
*context_create(struct wined3d_swapchain
*swapchain
,
1389 struct wined3d_surface
*target
, const struct wined3d_format
*ds_format
)
1391 struct wined3d_device
*device
= swapchain
->device
;
1392 const struct wined3d_gl_info
*gl_info
= &device
->adapter
->gl_info
;
1393 const struct wined3d_format
*color_format
;
1394 struct wined3d_context
*ret
;
1395 BOOL auxBuffers
= FALSE
;
1396 HGLRC ctx
, share_ctx
;
1402 BOOL hdc_is_private
= FALSE
;
1404 TRACE("swapchain %p, target %p, window %p.\n", swapchain
, target
, swapchain
->win_handle
);
1406 ret
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*ret
));
1410 ret
->blit_targets
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
1411 gl_info
->limits
.buffers
* sizeof(*ret
->blit_targets
));
1412 if (!ret
->blit_targets
)
1415 ret
->draw_buffers
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
1416 gl_info
->limits
.buffers
* sizeof(*ret
->draw_buffers
));
1417 if (!ret
->draw_buffers
)
1420 ret
->free_timestamp_query_size
= 4;
1421 ret
->free_timestamp_queries
= HeapAlloc(GetProcessHeap(), 0,
1422 ret
->free_timestamp_query_size
* sizeof(*ret
->free_timestamp_queries
));
1423 if (!ret
->free_timestamp_queries
)
1425 list_init(&ret
->timestamp_queries
);
1427 ret
->free_occlusion_query_size
= 4;
1428 ret
->free_occlusion_queries
= HeapAlloc(GetProcessHeap(), 0,
1429 ret
->free_occlusion_query_size
* sizeof(*ret
->free_occlusion_queries
));
1430 if (!ret
->free_occlusion_queries
)
1433 list_init(&ret
->occlusion_queries
);
1435 ret
->free_event_query_size
= 4;
1436 ret
->free_event_queries
= HeapAlloc(GetProcessHeap(), 0,
1437 ret
->free_event_query_size
* sizeof(*ret
->free_event_queries
));
1438 if (!ret
->free_event_queries
)
1441 list_init(&ret
->event_queries
);
1442 list_init(&ret
->fbo_list
);
1443 list_init(&ret
->fbo_destroy_list
);
1445 if (!device
->shader_backend
->shader_allocate_context_data(ret
))
1447 ERR("Failed to allocate shader backend context data.\n");
1451 /* Initialize the texture unit mapping to a 1:1 mapping */
1452 for (s
= 0; s
< MAX_COMBINED_SAMPLERS
; ++s
)
1454 if (s
< gl_info
->limits
.fragment_samplers
)
1456 ret
->tex_unit_map
[s
] = s
;
1457 ret
->rev_tex_unit_map
[s
] = s
;
1461 ret
->tex_unit_map
[s
] = WINED3D_UNMAPPED_STAGE
;
1462 ret
->rev_tex_unit_map
[s
] = WINED3D_UNMAPPED_STAGE
;
1466 if (!(hdc
= GetDC(swapchain
->win_handle
)))
1468 WARN("Failed to retireve device context, trying swapchain backup.\n");
1470 if ((hdc
= swapchain_get_backup_dc(swapchain
)))
1471 hdc_is_private
= TRUE
;
1474 ERR("Failed to retrieve a device context.\n");
1479 color_format
= target
->resource
.format
;
1481 /* In case of ORM_BACKBUFFER, make sure to request an alpha component for
1482 * X4R4G4B4/X8R8G8B8 as we might need it for the backbuffer. */
1483 if (wined3d_settings
.offscreen_rendering_mode
== ORM_BACKBUFFER
)
1487 if (color_format
->id
== WINED3DFMT_B4G4R4X4_UNORM
)
1488 color_format
= wined3d_get_format(gl_info
, WINED3DFMT_B4G4R4A4_UNORM
);
1489 else if (color_format
->id
== WINED3DFMT_B8G8R8X8_UNORM
)
1490 color_format
= wined3d_get_format(gl_info
, WINED3DFMT_B8G8R8A8_UNORM
);
1493 /* DirectDraw supports 8bit paletted render targets and these are used by
1494 * old games like StarCraft and C&C. Most modern hardware doesn't support
1495 * 8bit natively so we perform some form of 8bit -> 32bit conversion. The
1496 * conversion (ab)uses the alpha component for storing the palette index.
1497 * For this reason we require a format with 8bit alpha, so request
1499 if (color_format
->id
== WINED3DFMT_P8_UINT
)
1500 color_format
= wined3d_get_format(gl_info
, WINED3DFMT_B8G8R8A8_UNORM
);
1502 /* Try to find a pixel format which matches our requirements. */
1503 pixel_format
= context_choose_pixel_format(device
, hdc
, color_format
, ds_format
, auxBuffers
, FALSE
);
1505 /* Try to locate a compatible format if we weren't able to find anything. */
1508 TRACE("Trying to locate a compatible pixel format because an exact match failed.\n");
1509 pixel_format
= context_choose_pixel_format(device
, hdc
, color_format
, ds_format
, auxBuffers
, TRUE
);
1512 /* If we still don't have a pixel format, something is very wrong as ChoosePixelFormat barely fails */
1515 ERR("Can't find a suitable pixel format.\n");
1521 ret
->gl_info
= gl_info
;
1523 if (!context_set_pixel_format(ret
, hdc
, hdc_is_private
, pixel_format
))
1525 ERR("Failed to set pixel format %d on device context %p.\n", pixel_format
, hdc
);
1526 context_release(ret
);
1530 share_ctx
= device
->context_count
? device
->contexts
[0]->glCtx
: NULL
;
1531 if (gl_info
->p_wglCreateContextAttribsARB
)
1533 unsigned int ctx_attrib_idx
= 0;
1534 GLint ctx_attribs
[3];
1536 if (context_debug_output_enabled(gl_info
))
1538 ctx_attribs
[ctx_attrib_idx
++] = WGL_CONTEXT_FLAGS_ARB
;
1539 ctx_attribs
[ctx_attrib_idx
++] = WGL_CONTEXT_DEBUG_BIT_ARB
;
1541 ctx_attribs
[ctx_attrib_idx
] = 0;
1543 if (!(ctx
= gl_info
->p_wglCreateContextAttribsARB(hdc
, share_ctx
, ctx_attribs
)))
1545 ERR("Failed to create a WGL context.\n");
1546 context_release(ret
);
1552 if (!(ctx
= wglCreateContext(hdc
)))
1554 ERR("Failed to create a WGL context.\n");
1555 context_release(ret
);
1559 if (share_ctx
&& !wglShareLists(share_ctx
, ctx
))
1561 ERR("wglShareLists(%p, %p) failed, last error %#x.\n", share_ctx
, ctx
, GetLastError());
1562 context_release(ret
);
1563 if (!wglDeleteContext(ctx
))
1564 ERR("wglDeleteContext(%p) failed, last error %#x.\n", ctx
, GetLastError());
1569 if (!device_context_add(device
, ret
))
1571 ERR("Failed to add the newly created context to the context list\n");
1572 context_release(ret
);
1573 if (!wglDeleteContext(ctx
))
1574 ERR("wglDeleteContext(%p) failed, last error %#x.\n", ctx
, GetLastError());
1578 ret
->d3d_info
= &device
->adapter
->d3d_info
;
1579 ret
->state_table
= device
->StateTable
;
1581 /* Mark all states dirty to force a proper initialization of the states
1582 * on the first use of the context. */
1583 for (state
= 0; state
<= STATE_HIGHEST
; ++state
)
1585 if (ret
->state_table
[state
].representative
)
1586 context_invalidate_state(ret
, state
);
1589 ret
->swapchain
= swapchain
;
1590 ret
->current_rt
= target
;
1591 ret
->tid
= GetCurrentThreadId();
1593 ret
->render_offscreen
= surface_is_offscreen(target
);
1594 ret
->draw_buffers_mask
= context_generate_rt_mask(GL_BACK
);
1598 ret
->win_handle
= swapchain
->win_handle
;
1600 ret
->hdc_is_private
= hdc_is_private
;
1601 ret
->hdc_has_format
= TRUE
;
1602 ret
->pixel_format
= pixel_format
;
1605 /* Set up the context defaults */
1606 if (!context_set_current(ret
))
1608 ERR("Cannot activate context to set up defaults.\n");
1609 device_context_remove(device
, ret
);
1610 context_release(ret
);
1611 if (!wglDeleteContext(ctx
))
1612 ERR("wglDeleteContext(%p) failed, last error %#x.\n", ctx
, GetLastError());
1616 if (context_debug_output_enabled(gl_info
))
1618 GL_EXTCALL(glDebugMessageCallbackARB(wined3d_debug_callback
, ret
));
1619 if (TRACE_ON(d3d_synchronous
))
1620 gl_info
->gl_ops
.gl
.p_glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB
);
1621 GL_EXTCALL(glDebugMessageControlARB(GL_DONT_CARE
, GL_DONT_CARE
, GL_DONT_CARE
, 0, NULL
, GL_FALSE
));
1624 GL_EXTCALL(glDebugMessageControlARB(GL_DONT_CARE
, GL_DEBUG_TYPE_ERROR_ARB
,
1625 GL_DONT_CARE
, 0, NULL
, GL_TRUE
));
1629 GL_EXTCALL(glDebugMessageControlARB(GL_DONT_CARE
, GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB
,
1630 GL_DONT_CARE
, 0, NULL
, GL_TRUE
));
1631 GL_EXTCALL(glDebugMessageControlARB(GL_DONT_CARE
, GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB
,
1632 GL_DONT_CARE
, 0, NULL
, GL_TRUE
));
1633 GL_EXTCALL(glDebugMessageControlARB(GL_DONT_CARE
, GL_DEBUG_TYPE_PORTABILITY_ARB
,
1634 GL_DONT_CARE
, 0, NULL
, GL_TRUE
));
1636 if (WARN_ON(d3d_perf
))
1638 GL_EXTCALL(glDebugMessageControlARB(GL_DONT_CARE
, GL_DEBUG_TYPE_PERFORMANCE_ARB
,
1639 GL_DONT_CARE
, 0, NULL
, GL_TRUE
));
1643 switch (swapchain
->desc
.swap_interval
)
1645 case WINED3DPRESENT_INTERVAL_IMMEDIATE
:
1648 case WINED3DPRESENT_INTERVAL_DEFAULT
:
1649 case WINED3DPRESENT_INTERVAL_ONE
:
1652 case WINED3DPRESENT_INTERVAL_TWO
:
1655 case WINED3DPRESENT_INTERVAL_THREE
:
1658 case WINED3DPRESENT_INTERVAL_FOUR
:
1662 FIXME("Unknown swap interval %#x.\n", swapchain
->desc
.swap_interval
);
1666 if (gl_info
->supported
[WGL_EXT_SWAP_CONTROL
])
1668 if (!GL_EXTCALL(wglSwapIntervalEXT(swap_interval
)))
1669 ERR("wglSwapIntervalEXT failed to set swap interval %d for context %p, last error %#x\n",
1670 swap_interval
, ret
, GetLastError());
1673 gl_info
->gl_ops
.gl
.p_glGetIntegerv(GL_AUX_BUFFERS
, &ret
->aux_buffers
);
1675 TRACE("Setting up the screen\n");
1677 gl_info
->gl_ops
.gl
.p_glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER
, GL_TRUE
);
1678 checkGLcall("glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, GL_TRUE);");
1680 gl_info
->gl_ops
.gl
.p_glTexEnvf(GL_TEXTURE_ENV
, GL_TEXTURE_ENV_MODE
, GL_COMBINE_EXT
);
1681 checkGLcall("glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_COMBINE_EXT);");
1683 gl_info
->gl_ops
.gl
.p_glLightModeli(GL_LIGHT_MODEL_COLOR_CONTROL
, GL_SEPARATE_SPECULAR_COLOR
);
1684 checkGLcall("glLightModeli(GL_LIGHT_MODEL_COLOR_CONTROL, GL_SEPARATE_SPECULAR_COLOR);");
1686 gl_info
->gl_ops
.gl
.p_glPixelStorei(GL_PACK_ALIGNMENT
, device
->surface_alignment
);
1687 checkGLcall("glPixelStorei(GL_PACK_ALIGNMENT, device->surface_alignment);");
1688 gl_info
->gl_ops
.gl
.p_glPixelStorei(GL_UNPACK_ALIGNMENT
, device
->surface_alignment
);
1689 checkGLcall("glPixelStorei(GL_UNPACK_ALIGNMENT, device->surface_alignment);");
1691 if (gl_info
->supported
[ARB_VERTEX_BLEND
])
1693 /* Direct3D always uses n-1 weights for n world matrices and uses
1694 * 1 - sum for the last one this is equal to GL_WEIGHT_SUM_UNITY_ARB.
1695 * Enabling it doesn't do anything unless GL_VERTEX_BLEND_ARB isn't
1696 * enabled as well. */
1697 gl_info
->gl_ops
.gl
.p_glEnable(GL_WEIGHT_SUM_UNITY_ARB
);
1698 checkGLcall("glEnable(GL_WEIGHT_SUM_UNITY_ARB)");
1700 if (gl_info
->supported
[NV_TEXTURE_SHADER2
])
1702 /* Set up the previous texture input for all shader units. This applies to bump mapping, and in d3d
1703 * the previous texture where to source the offset from is always unit - 1.
1705 for (s
= 1; s
< gl_info
->limits
.textures
; ++s
)
1707 context_active_texture(ret
, gl_info
, s
);
1708 gl_info
->gl_ops
.gl
.p_glTexEnvi(GL_TEXTURE_SHADER_NV
,
1709 GL_PREVIOUS_TEXTURE_INPUT_NV
, GL_TEXTURE0_ARB
+ s
- 1);
1710 checkGLcall("glTexEnvi(GL_TEXTURE_SHADER_NV, GL_PREVIOUS_TEXTURE_INPUT_NV, ...");
1713 if (gl_info
->supported
[ARB_FRAGMENT_PROGRAM
])
1715 /* MacOS(radeon X1600 at least, but most likely others too) refuses to draw if GLSL and ARBFP are
1716 * enabled, but the currently bound arbfp program is 0. Enabling ARBFP with prog 0 is invalid, but
1717 * GLSL should bypass this. This causes problems in programs that never use the fixed function pipeline,
1718 * because the ARBFP extension is enabled by the ARBFP pipeline at context creation, but no program
1721 * So make sure a program is assigned to each context. The first real ARBFP use will set a different
1722 * program and the dummy program is destroyed when the context is destroyed.
1724 const char *dummy_program
=
1726 "MOV result.color, fragment.color.primary;\n"
1728 GL_EXTCALL(glGenProgramsARB(1, &ret
->dummy_arbfp_prog
));
1729 GL_EXTCALL(glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB
, ret
->dummy_arbfp_prog
));
1730 GL_EXTCALL(glProgramStringARB(GL_FRAGMENT_PROGRAM_ARB
, GL_PROGRAM_FORMAT_ASCII_ARB
, strlen(dummy_program
), dummy_program
));
1733 if (gl_info
->supported
[ARB_POINT_SPRITE
])
1735 for (s
= 0; s
< gl_info
->limits
.textures
; ++s
)
1737 context_active_texture(ret
, gl_info
, s
);
1738 gl_info
->gl_ops
.gl
.p_glTexEnvi(GL_POINT_SPRITE_ARB
, GL_COORD_REPLACE_ARB
, GL_TRUE
);
1739 checkGLcall("glTexEnvi(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, GL_TRUE)");
1743 if (gl_info
->supported
[ARB_PROVOKING_VERTEX
])
1745 GL_EXTCALL(glProvokingVertex(GL_FIRST_VERTEX_CONVENTION
));
1747 else if (gl_info
->supported
[EXT_PROVOKING_VERTEX
])
1749 GL_EXTCALL(glProvokingVertexEXT(GL_FIRST_VERTEX_CONVENTION_EXT
));
1751 ret
->shader_update_mask
= (1 << WINED3D_SHADER_TYPE_PIXEL
)
1752 | (1 << WINED3D_SHADER_TYPE_VERTEX
)
1753 | (1 << WINED3D_SHADER_TYPE_GEOMETRY
);
1755 /* If this happens to be the first context for the device, dummy textures
1756 * are not created yet. In that case, they will be created (and bound) by
1757 * create_dummy_textures right after this context is initialized. */
1758 if (device
->dummy_texture_2d
[0])
1759 bind_dummy_textures(device
, ret
);
1761 TRACE("Created context %p.\n", ret
);
1766 device
->shader_backend
->shader_free_context_data(ret
);
1767 HeapFree(GetProcessHeap(), 0, ret
->free_event_queries
);
1768 HeapFree(GetProcessHeap(), 0, ret
->free_occlusion_queries
);
1769 HeapFree(GetProcessHeap(), 0, ret
->free_timestamp_queries
);
1770 HeapFree(GetProcessHeap(), 0, ret
->draw_buffers
);
1771 HeapFree(GetProcessHeap(), 0, ret
->blit_targets
);
1772 HeapFree(GetProcessHeap(), 0, ret
);
1776 void context_destroy(struct wined3d_device
*device
, struct wined3d_context
*context
)
1780 TRACE("Destroying ctx %p\n", context
);
1782 if (context
->tid
== GetCurrentThreadId() || !context
->current
)
1784 context_destroy_gl_resources(context
);
1785 TlsSetValue(wined3d_context_tls_idx
, NULL
);
1790 /* Make a copy of gl_info for context_destroy_gl_resources use, the one
1791 in wined3d_adapter may go away in the meantime */
1792 struct wined3d_gl_info
*gl_info
= HeapAlloc(GetProcessHeap(), 0, sizeof(*gl_info
));
1793 *gl_info
= *context
->gl_info
;
1794 context
->gl_info
= gl_info
;
1795 context
->destroyed
= 1;
1799 device
->shader_backend
->shader_free_context_data(context
);
1800 HeapFree(GetProcessHeap(), 0, context
->draw_buffers
);
1801 HeapFree(GetProcessHeap(), 0, context
->blit_targets
);
1802 device_context_remove(device
, context
);
1803 if (destroy
) HeapFree(GetProcessHeap(), 0, context
);
1806 /* Context activation is done by the caller. */
1807 static void set_blit_dimension(const struct wined3d_gl_info
*gl_info
, UINT width
, UINT height
)
1809 const GLdouble projection
[] =
1811 2.0 / width
, 0.0, 0.0, 0.0,
1812 0.0, 2.0 / height
, 0.0, 0.0,
1814 -1.0, -1.0, -1.0, 1.0,
1817 gl_info
->gl_ops
.gl
.p_glMatrixMode(GL_PROJECTION
);
1818 checkGLcall("glMatrixMode(GL_PROJECTION)");
1819 gl_info
->gl_ops
.gl
.p_glLoadMatrixd(projection
);
1820 checkGLcall("glLoadMatrixd");
1821 gl_info
->gl_ops
.gl
.p_glViewport(0, 0, width
, height
);
1822 checkGLcall("glViewport");
1825 static void context_get_rt_size(const struct wined3d_context
*context
, SIZE
*size
)
1827 const struct wined3d_surface
*rt
= context
->current_rt
;
1829 if (rt
->swapchain
&& rt
->swapchain
->front_buffer
== rt
)
1833 GetClientRect(context
->win_handle
, &window_size
);
1834 size
->cx
= window_size
.right
- window_size
.left
;
1835 size
->cy
= window_size
.bottom
- window_size
.top
;
1840 size
->cx
= rt
->resource
.width
;
1841 size
->cy
= rt
->resource
.height
;
1844 /*****************************************************************************
1847 * Sets up a context for DirectDraw blitting.
1848 * All texture units are disabled, texture unit 0 is set as current unit
1849 * fog, lighting, blending, alpha test, z test, scissor test, culling disabled
1850 * color writing enabled for all channels
1851 * register combiners disabled, shaders disabled
1852 * world matrix is set to identity, texture matrix 0 too
1853 * projection matrix is setup for drawing screen coordinates
1856 * This: Device to activate the context for
1857 * context: Context to setup
1859 *****************************************************************************/
1860 /* Context activation is done by the caller. */
1861 static void SetupForBlit(const struct wined3d_device
*device
, struct wined3d_context
*context
)
1864 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
1868 TRACE("Setting up context %p for blitting\n", context
);
1870 context_get_rt_size(context
, &rt_size
);
1872 if (context
->last_was_blit
)
1874 if (context
->blit_w
!= rt_size
.cx
|| context
->blit_h
!= rt_size
.cy
)
1876 set_blit_dimension(gl_info
, rt_size
.cx
, rt_size
.cy
);
1877 context
->blit_w
= rt_size
.cx
;
1878 context
->blit_h
= rt_size
.cy
;
1879 /* No need to dirtify here, the states are still dirtified because
1880 * they weren't applied since the last SetupForBlit() call. */
1882 TRACE("Context is already set up for blitting, nothing to do\n");
1885 context
->last_was_blit
= TRUE
;
1887 /* Disable all textures. The caller can then bind a texture it wants to blit
1890 * The blitting code uses (for now) the fixed function pipeline, so make sure to reset all fixed
1891 * function texture unit. No need to care for higher samplers
1893 for (i
= gl_info
->limits
.textures
- 1; i
> 0 ; --i
)
1895 sampler
= context
->rev_tex_unit_map
[i
];
1896 context_active_texture(context
, gl_info
, i
);
1898 if (gl_info
->supported
[ARB_TEXTURE_CUBE_MAP
])
1900 gl_info
->gl_ops
.gl
.p_glDisable(GL_TEXTURE_CUBE_MAP_ARB
);
1901 checkGLcall("glDisable GL_TEXTURE_CUBE_MAP_ARB");
1903 gl_info
->gl_ops
.gl
.p_glDisable(GL_TEXTURE_3D
);
1904 checkGLcall("glDisable GL_TEXTURE_3D");
1905 if (gl_info
->supported
[ARB_TEXTURE_RECTANGLE
])
1907 gl_info
->gl_ops
.gl
.p_glDisable(GL_TEXTURE_RECTANGLE_ARB
);
1908 checkGLcall("glDisable GL_TEXTURE_RECTANGLE_ARB");
1910 gl_info
->gl_ops
.gl
.p_glDisable(GL_TEXTURE_2D
);
1911 checkGLcall("glDisable GL_TEXTURE_2D");
1913 gl_info
->gl_ops
.gl
.p_glTexEnvi(GL_TEXTURE_ENV
, GL_TEXTURE_ENV_MODE
, GL_REPLACE
);
1914 checkGLcall("glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);");
1916 if (sampler
!= WINED3D_UNMAPPED_STAGE
)
1918 if (sampler
< MAX_TEXTURES
)
1919 context_invalidate_state(context
, STATE_TEXTURESTAGE(sampler
, WINED3D_TSS_COLOR_OP
));
1920 context_invalidate_state(context
, STATE_SAMPLER(sampler
));
1923 context_active_texture(context
, gl_info
, 0);
1925 sampler
= context
->rev_tex_unit_map
[0];
1927 if (gl_info
->supported
[ARB_TEXTURE_CUBE_MAP
])
1929 gl_info
->gl_ops
.gl
.p_glDisable(GL_TEXTURE_CUBE_MAP_ARB
);
1930 checkGLcall("glDisable GL_TEXTURE_CUBE_MAP_ARB");
1932 gl_info
->gl_ops
.gl
.p_glDisable(GL_TEXTURE_3D
);
1933 checkGLcall("glDisable GL_TEXTURE_3D");
1934 if (gl_info
->supported
[ARB_TEXTURE_RECTANGLE
])
1936 gl_info
->gl_ops
.gl
.p_glDisable(GL_TEXTURE_RECTANGLE_ARB
);
1937 checkGLcall("glDisable GL_TEXTURE_RECTANGLE_ARB");
1939 gl_info
->gl_ops
.gl
.p_glDisable(GL_TEXTURE_2D
);
1940 checkGLcall("glDisable GL_TEXTURE_2D");
1942 gl_info
->gl_ops
.gl
.p_glTexEnvi(GL_TEXTURE_ENV
, GL_TEXTURE_ENV_MODE
, GL_REPLACE
);
1944 gl_info
->gl_ops
.gl
.p_glMatrixMode(GL_TEXTURE
);
1945 checkGLcall("glMatrixMode(GL_TEXTURE)");
1946 gl_info
->gl_ops
.gl
.p_glLoadIdentity();
1947 checkGLcall("glLoadIdentity()");
1949 if (gl_info
->supported
[EXT_TEXTURE_LOD_BIAS
])
1951 gl_info
->gl_ops
.gl
.p_glTexEnvf(GL_TEXTURE_FILTER_CONTROL_EXT
,
1952 GL_TEXTURE_LOD_BIAS_EXT
, 0.0f
);
1953 checkGLcall("glTexEnvf GL_TEXTURE_LOD_BIAS_EXT ...");
1956 if (sampler
!= WINED3D_UNMAPPED_STAGE
)
1958 if (sampler
< MAX_TEXTURES
)
1960 context_invalidate_state(context
, STATE_TRANSFORM(WINED3D_TS_TEXTURE0
+ sampler
));
1961 context_invalidate_state(context
, STATE_TEXTURESTAGE(sampler
, WINED3D_TSS_COLOR_OP
));
1963 context_invalidate_state(context
, STATE_SAMPLER(sampler
));
1966 /* Other misc states */
1967 gl_info
->gl_ops
.gl
.p_glDisable(GL_ALPHA_TEST
);
1968 checkGLcall("glDisable(GL_ALPHA_TEST)");
1969 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_ALPHATESTENABLE
));
1970 gl_info
->gl_ops
.gl
.p_glDisable(GL_LIGHTING
);
1971 checkGLcall("glDisable GL_LIGHTING");
1972 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_LIGHTING
));
1973 gl_info
->gl_ops
.gl
.p_glDisable(GL_DEPTH_TEST
);
1974 checkGLcall("glDisable GL_DEPTH_TEST");
1975 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_ZENABLE
));
1976 glDisableWINE(GL_FOG
);
1977 checkGLcall("glDisable GL_FOG");
1978 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_FOGENABLE
));
1979 gl_info
->gl_ops
.gl
.p_glDisable(GL_BLEND
);
1980 checkGLcall("glDisable GL_BLEND");
1981 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_ALPHABLENDENABLE
));
1982 gl_info
->gl_ops
.gl
.p_glDisable(GL_CULL_FACE
);
1983 checkGLcall("glDisable GL_CULL_FACE");
1984 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_CULLMODE
));
1985 gl_info
->gl_ops
.gl
.p_glDisable(GL_STENCIL_TEST
);
1986 checkGLcall("glDisable GL_STENCIL_TEST");
1987 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_STENCILENABLE
));
1988 gl_info
->gl_ops
.gl
.p_glDisable(GL_SCISSOR_TEST
);
1989 checkGLcall("glDisable GL_SCISSOR_TEST");
1990 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_SCISSORTESTENABLE
));
1991 if (gl_info
->supported
[ARB_POINT_SPRITE
])
1993 gl_info
->gl_ops
.gl
.p_glDisable(GL_POINT_SPRITE_ARB
);
1994 checkGLcall("glDisable GL_POINT_SPRITE_ARB");
1995 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_POINTSPRITEENABLE
));
1997 gl_info
->gl_ops
.gl
.p_glColorMask(GL_TRUE
, GL_TRUE
,GL_TRUE
,GL_TRUE
);
1998 checkGLcall("glColorMask");
1999 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_COLORWRITEENABLE
));
2000 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_COLORWRITEENABLE1
));
2001 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_COLORWRITEENABLE2
));
2002 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_COLORWRITEENABLE3
));
2003 if (gl_info
->supported
[EXT_SECONDARY_COLOR
])
2005 gl_info
->gl_ops
.gl
.p_glDisable(GL_COLOR_SUM_EXT
);
2006 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_SPECULARENABLE
));
2007 checkGLcall("glDisable(GL_COLOR_SUM_EXT)");
2010 /* Setup transforms */
2011 gl_info
->gl_ops
.gl
.p_glMatrixMode(GL_MODELVIEW
);
2012 checkGLcall("glMatrixMode(GL_MODELVIEW)");
2013 gl_info
->gl_ops
.gl
.p_glLoadIdentity();
2014 checkGLcall("glLoadIdentity()");
2015 context_invalidate_state(context
, STATE_TRANSFORM(WINED3D_TS_WORLD_MATRIX(0)));
2017 context
->last_was_rhw
= TRUE
;
2018 context_invalidate_state(context
, STATE_VDECL
); /* because of last_was_rhw = TRUE */
2020 gl_info
->gl_ops
.gl
.p_glDisable(GL_CLIP_PLANE0
); checkGLcall("glDisable(clip plane 0)");
2021 gl_info
->gl_ops
.gl
.p_glDisable(GL_CLIP_PLANE1
); checkGLcall("glDisable(clip plane 1)");
2022 gl_info
->gl_ops
.gl
.p_glDisable(GL_CLIP_PLANE2
); checkGLcall("glDisable(clip plane 2)");
2023 gl_info
->gl_ops
.gl
.p_glDisable(GL_CLIP_PLANE3
); checkGLcall("glDisable(clip plane 3)");
2024 gl_info
->gl_ops
.gl
.p_glDisable(GL_CLIP_PLANE4
); checkGLcall("glDisable(clip plane 4)");
2025 gl_info
->gl_ops
.gl
.p_glDisable(GL_CLIP_PLANE5
); checkGLcall("glDisable(clip plane 5)");
2026 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_CLIPPING
));
2028 set_blit_dimension(gl_info
, rt_size
.cx
, rt_size
.cy
);
2030 /* Disable shaders */
2031 device
->shader_backend
->shader_disable(device
->shader_priv
, context
);
2033 context
->blit_w
= rt_size
.cx
;
2034 context
->blit_h
= rt_size
.cy
;
2035 context_invalidate_state(context
, STATE_VIEWPORT
);
2036 context_invalidate_state(context
, STATE_TRANSFORM(WINED3D_TS_PROJECTION
));
2039 static inline BOOL
is_rt_mask_onscreen(DWORD rt_mask
)
2041 return rt_mask
& (1 << 31);
2044 static inline GLenum
draw_buffer_from_rt_mask(DWORD rt_mask
)
2046 return rt_mask
& ~(1 << 31);
2049 /* Context activation is done by the caller. */
2050 static void context_apply_draw_buffers(struct wined3d_context
*context
, DWORD rt_mask
)
2052 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
2056 gl_info
->gl_ops
.gl
.p_glDrawBuffer(GL_NONE
);
2057 checkGLcall("glDrawBuffer()");
2059 else if (is_rt_mask_onscreen(rt_mask
))
2061 gl_info
->gl_ops
.gl
.p_glDrawBuffer(draw_buffer_from_rt_mask(rt_mask
));
2062 checkGLcall("glDrawBuffer()");
2066 if (wined3d_settings
.offscreen_rendering_mode
== ORM_FBO
)
2073 context
->draw_buffers
[i
] = GL_COLOR_ATTACHMENT0
+ i
;
2075 context
->draw_buffers
[i
] = GL_NONE
;
2081 if (gl_info
->supported
[ARB_DRAW_BUFFERS
])
2083 GL_EXTCALL(glDrawBuffersARB(i
, context
->draw_buffers
));
2084 checkGLcall("glDrawBuffers()");
2088 gl_info
->gl_ops
.gl
.p_glDrawBuffer(context
->draw_buffers
[0]);
2089 checkGLcall("glDrawBuffer()");
2094 ERR("Unexpected draw buffers mask with backbuffer ORM.\n");
2099 /* Context activation is done by the caller. */
2100 void context_set_draw_buffer(struct wined3d_context
*context
, GLenum buffer
)
2102 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
2103 DWORD
*current_mask
= context
->current_fbo
? &context
->current_fbo
->rt_mask
: &context
->draw_buffers_mask
;
2104 DWORD new_mask
= context_generate_rt_mask(buffer
);
2106 if (new_mask
== *current_mask
)
2109 gl_info
->gl_ops
.gl
.p_glDrawBuffer(buffer
);
2110 checkGLcall("glDrawBuffer()");
2112 *current_mask
= new_mask
;
2115 /* Context activation is done by the caller. */
2116 void context_active_texture(struct wined3d_context
*context
, const struct wined3d_gl_info
*gl_info
, unsigned int unit
)
2118 GL_EXTCALL(glActiveTextureARB(GL_TEXTURE0
+ unit
));
2119 checkGLcall("glActiveTextureARB");
2120 context
->active_texture
= unit
;
2123 void context_bind_texture(struct wined3d_context
*context
, GLenum target
, GLuint name
)
2125 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
2126 DWORD unit
= context
->active_texture
;
2127 DWORD old_texture_type
= context
->texture_type
[unit
];
2131 gl_info
->gl_ops
.gl
.p_glBindTexture(target
, name
);
2132 checkGLcall("glBindTexture");
2139 if (old_texture_type
!= target
)
2141 const struct wined3d_device
*device
= context
->swapchain
->device
;
2143 switch (old_texture_type
)
2149 gl_info
->gl_ops
.gl
.p_glBindTexture(GL_TEXTURE_2D
, device
->dummy_texture_2d
[unit
]);
2150 checkGLcall("glBindTexture");
2152 case GL_TEXTURE_RECTANGLE_ARB
:
2153 gl_info
->gl_ops
.gl
.p_glBindTexture(GL_TEXTURE_RECTANGLE_ARB
, device
->dummy_texture_rect
[unit
]);
2154 checkGLcall("glBindTexture");
2156 case GL_TEXTURE_CUBE_MAP
:
2157 gl_info
->gl_ops
.gl
.p_glBindTexture(GL_TEXTURE_CUBE_MAP
, device
->dummy_texture_cube
[unit
]);
2158 checkGLcall("glBindTexture");
2161 gl_info
->gl_ops
.gl
.p_glBindTexture(GL_TEXTURE_3D
, device
->dummy_texture_3d
[unit
]);
2162 checkGLcall("glBindTexture");
2165 ERR("Unexpected texture target %#x\n", old_texture_type
);
2168 context
->texture_type
[unit
] = target
;
2172 static void context_set_render_offscreen(struct wined3d_context
*context
, BOOL offscreen
)
2174 if (context
->render_offscreen
== offscreen
) return;
2176 context_invalidate_state(context
, STATE_POINTSPRITECOORDORIGIN
);
2177 context_invalidate_state(context
, STATE_TRANSFORM(WINED3D_TS_PROJECTION
));
2178 context_invalidate_state(context
, STATE_VIEWPORT
);
2179 context_invalidate_state(context
, STATE_SCISSORRECT
);
2180 context_invalidate_state(context
, STATE_FRONTFACE
);
2181 context
->render_offscreen
= offscreen
;
2184 static BOOL
match_depth_stencil_format(const struct wined3d_format
*existing
,
2185 const struct wined3d_format
*required
)
2187 BYTE existing_depth
, existing_stencil
, required_depth
, required_stencil
;
2189 if (existing
== required
) return TRUE
;
2190 if ((existing
->flags
& WINED3DFMT_FLAG_FLOAT
) != (required
->flags
& WINED3DFMT_FLAG_FLOAT
)) return FALSE
;
2192 getDepthStencilBits(existing
, &existing_depth
, &existing_stencil
);
2193 getDepthStencilBits(required
, &required_depth
, &required_stencil
);
2195 if(existing_depth
< required_depth
) return FALSE
;
2196 /* If stencil bits are used the exact amount is required - otherwise wrapping
2197 * won't work correctly */
2198 if(required_stencil
&& required_stencil
!= existing_stencil
) return FALSE
;
2202 /* The caller provides a context */
2203 static void context_validate_onscreen_formats(struct wined3d_context
*context
,
2204 const struct wined3d_surface
*depth_stencil
)
2206 /* Onscreen surfaces are always in a swapchain */
2207 struct wined3d_swapchain
*swapchain
= context
->current_rt
->swapchain
;
2209 if (context
->render_offscreen
|| !depth_stencil
) return;
2210 if (match_depth_stencil_format(swapchain
->ds_format
, depth_stencil
->resource
.format
)) return;
2212 /* TODO: If the requested format would satisfy the needs of the existing one(reverse match),
2213 * or no onscreen depth buffer was created, the OpenGL drawable could be changed to the new
2215 WARN("Depth stencil format is not supported by WGL, rendering the backbuffer in an FBO\n");
2217 /* The currently active context is the necessary context to access the swapchain's onscreen buffers */
2218 surface_load_location(context
->current_rt
, WINED3D_LOCATION_TEXTURE_RGB
);
2219 swapchain
->render_to_fbo
= TRUE
;
2220 swapchain_update_draw_bindings(swapchain
);
2221 context_set_render_offscreen(context
, TRUE
);
2224 static DWORD
context_generate_rt_mask_no_fbo(const struct wined3d_device
*device
, const struct wined3d_surface
*rt
)
2226 if (!rt
|| rt
->resource
.format
->id
== WINED3DFMT_NULL
)
2228 else if (rt
->swapchain
)
2229 return context_generate_rt_mask_from_surface(rt
);
2231 return context_generate_rt_mask(device
->offscreenBuffer
);
2234 /* Context activation is done by the caller. */
2235 void context_apply_blit_state(struct wined3d_context
*context
, const struct wined3d_device
*device
)
2237 struct wined3d_surface
*rt
= context
->current_rt
;
2238 DWORD rt_mask
, *cur_mask
;
2240 if (wined3d_settings
.offscreen_rendering_mode
== ORM_FBO
)
2242 context_validate_onscreen_formats(context
, NULL
);
2244 if (context
->render_offscreen
)
2246 wined3d_texture_load(rt
->container
, context
, FALSE
);
2248 context_apply_fbo_state_blit(context
, GL_FRAMEBUFFER
, rt
, NULL
, rt
->draw_binding
);
2249 if (rt
->resource
.format
->id
!= WINED3DFMT_NULL
)
2256 context
->current_fbo
= NULL
;
2257 context_bind_fbo(context
, GL_FRAMEBUFFER
, 0);
2258 rt_mask
= context_generate_rt_mask_from_surface(rt
);
2263 rt_mask
= context_generate_rt_mask_no_fbo(device
, rt
);
2266 cur_mask
= context
->current_fbo
? &context
->current_fbo
->rt_mask
: &context
->draw_buffers_mask
;
2268 if (rt_mask
!= *cur_mask
)
2270 context_apply_draw_buffers(context
, rt_mask
);
2271 *cur_mask
= rt_mask
;
2274 if (wined3d_settings
.offscreen_rendering_mode
== ORM_FBO
)
2276 context_check_fbo_status(context
, GL_FRAMEBUFFER
);
2279 SetupForBlit(device
, context
);
2280 context_invalidate_state(context
, STATE_FRAMEBUFFER
);
2283 static BOOL
context_validate_rt_config(UINT rt_count
,
2284 struct wined3d_surface
* const *rts
, const struct wined3d_surface
*ds
)
2288 if (ds
) return TRUE
;
2290 for (i
= 0; i
< rt_count
; ++i
)
2292 if (rts
[i
] && rts
[i
]->resource
.format
->id
!= WINED3DFMT_NULL
)
2296 WARN("Invalid render target config, need at least one attachment.\n");
2300 /* Context activation is done by the caller. */
2301 BOOL
context_apply_clear_state(struct wined3d_context
*context
, const struct wined3d_device
*device
,
2302 UINT rt_count
, const struct wined3d_fb_state
*fb
)
2304 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
2305 DWORD rt_mask
= 0, *cur_mask
;
2307 struct wined3d_surface
**rts
= fb
->render_targets
;
2309 if (isStateDirty(context
, STATE_FRAMEBUFFER
) || fb
!= &device
->fb
2310 || rt_count
!= context
->gl_info
->limits
.buffers
)
2312 if (!context_validate_rt_config(rt_count
, rts
, fb
->depth_stencil
))
2315 if (wined3d_settings
.offscreen_rendering_mode
== ORM_FBO
)
2317 context_validate_onscreen_formats(context
, fb
->depth_stencil
);
2319 if (!rt_count
|| surface_is_offscreen(rts
[0]))
2321 for (i
= 0; i
< rt_count
; ++i
)
2323 context
->blit_targets
[i
] = rts
[i
];
2324 if (rts
[i
] && rts
[i
]->resource
.format
->id
!= WINED3DFMT_NULL
)
2325 rt_mask
|= (1 << i
);
2327 while (i
< context
->gl_info
->limits
.buffers
)
2329 context
->blit_targets
[i
] = NULL
;
2332 context_apply_fbo_state(context
, GL_FRAMEBUFFER
, context
->blit_targets
, fb
->depth_stencil
,
2333 rt_count
? rts
[0]->draw_binding
: WINED3D_LOCATION_TEXTURE_RGB
);
2337 context_apply_fbo_state(context
, GL_FRAMEBUFFER
, NULL
, NULL
, WINED3D_LOCATION_DRAWABLE
);
2338 rt_mask
= context_generate_rt_mask_from_surface(rts
[0]);
2341 /* If the framebuffer is not the device's fb the device's fb has to be reapplied
2342 * next draw. Otherwise we could mark the framebuffer state clean here, once the
2343 * state management allows this */
2344 context_invalidate_state(context
, STATE_FRAMEBUFFER
);
2348 rt_mask
= context_generate_rt_mask_no_fbo(device
, rt_count
? rts
[0] : NULL
);
2351 else if (wined3d_settings
.offscreen_rendering_mode
== ORM_FBO
2352 && (!rt_count
|| surface_is_offscreen(rts
[0])))
2354 for (i
= 0; i
< rt_count
; ++i
)
2356 if (rts
[i
] && rts
[i
]->resource
.format
->id
!= WINED3DFMT_NULL
) rt_mask
|= (1 << i
);
2361 rt_mask
= context_generate_rt_mask_no_fbo(device
, rt_count
? rts
[0] : NULL
);
2364 cur_mask
= context
->current_fbo
? &context
->current_fbo
->rt_mask
: &context
->draw_buffers_mask
;
2366 if (rt_mask
!= *cur_mask
)
2368 context_apply_draw_buffers(context
, rt_mask
);
2369 *cur_mask
= rt_mask
;
2370 context_invalidate_state(context
, STATE_FRAMEBUFFER
);
2373 if (wined3d_settings
.offscreen_rendering_mode
== ORM_FBO
)
2375 context_check_fbo_status(context
, GL_FRAMEBUFFER
);
2378 if (context
->last_was_blit
)
2379 context
->last_was_blit
= FALSE
;
2381 /* Blending and clearing should be orthogonal, but tests on the nvidia
2382 * driver show that disabling blending when clearing improves the clearing
2383 * performance incredibly. */
2384 gl_info
->gl_ops
.gl
.p_glDisable(GL_BLEND
);
2385 gl_info
->gl_ops
.gl
.p_glEnable(GL_SCISSOR_TEST
);
2386 checkGLcall("glEnable GL_SCISSOR_TEST");
2388 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_ALPHABLENDENABLE
));
2389 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_SCISSORTESTENABLE
));
2390 context_invalidate_state(context
, STATE_SCISSORRECT
);
2395 static DWORD
find_draw_buffers_mask(const struct wined3d_context
*context
, const struct wined3d_device
*device
)
2397 const struct wined3d_state
*state
= &device
->state
;
2398 struct wined3d_surface
**rts
= state
->fb
->render_targets
;
2399 struct wined3d_shader
*ps
= state
->shader
[WINED3D_SHADER_TYPE_PIXEL
];
2400 DWORD rt_mask
, rt_mask_bits
;
2403 if (wined3d_settings
.offscreen_rendering_mode
!= ORM_FBO
) return context_generate_rt_mask_no_fbo(device
, rts
[0]);
2404 else if (!context
->render_offscreen
) return context_generate_rt_mask_from_surface(rts
[0]);
2406 rt_mask
= ps
? ps
->reg_maps
.rt_mask
: 1;
2407 rt_mask
&= context
->d3d_info
->valid_rt_mask
;
2408 rt_mask_bits
= rt_mask
;
2410 while (rt_mask_bits
)
2412 rt_mask_bits
&= ~(1 << i
);
2413 if (!rts
[i
] || rts
[i
]->resource
.format
->id
== WINED3DFMT_NULL
)
2414 rt_mask
&= ~(1 << i
);
2422 /* Context activation is done by the caller. */
2423 void context_state_fb(struct wined3d_context
*context
, const struct wined3d_state
*state
, DWORD state_id
)
2425 const struct wined3d_device
*device
= context
->swapchain
->device
;
2426 const struct wined3d_fb_state
*fb
= state
->fb
;
2427 DWORD rt_mask
= find_draw_buffers_mask(context
, device
);
2430 if (wined3d_settings
.offscreen_rendering_mode
== ORM_FBO
)
2432 if (!context
->render_offscreen
)
2434 context_apply_fbo_state(context
, GL_FRAMEBUFFER
, NULL
, NULL
, WINED3D_LOCATION_DRAWABLE
);
2438 context_apply_fbo_state(context
, GL_FRAMEBUFFER
, fb
->render_targets
, fb
->depth_stencil
,
2439 fb
->render_targets
[0]->draw_binding
);
2443 cur_mask
= context
->current_fbo
? &context
->current_fbo
->rt_mask
: &context
->draw_buffers_mask
;
2444 if (rt_mask
!= *cur_mask
)
2446 context_apply_draw_buffers(context
, rt_mask
);
2447 *cur_mask
= rt_mask
;
2451 static void context_map_stage(struct wined3d_context
*context
, DWORD stage
, DWORD unit
)
2453 DWORD i
= context
->rev_tex_unit_map
[unit
];
2454 DWORD j
= context
->tex_unit_map
[stage
];
2456 context
->tex_unit_map
[stage
] = unit
;
2457 if (i
!= WINED3D_UNMAPPED_STAGE
&& i
!= stage
)
2458 context
->tex_unit_map
[i
] = WINED3D_UNMAPPED_STAGE
;
2460 context
->rev_tex_unit_map
[unit
] = stage
;
2461 if (j
!= WINED3D_UNMAPPED_STAGE
&& j
!= unit
)
2462 context
->rev_tex_unit_map
[j
] = WINED3D_UNMAPPED_STAGE
;
2465 static void context_invalidate_texture_stage(struct wined3d_context
*context
, DWORD stage
)
2469 for (i
= 0; i
<= WINED3D_HIGHEST_TEXTURE_STATE
; ++i
)
2470 context_invalidate_state(context
, STATE_TEXTURESTAGE(stage
, i
));
2473 static void context_update_fixed_function_usage_map(struct wined3d_context
*context
,
2474 const struct wined3d_state
*state
)
2478 context
->fixed_function_usage_map
= 0;
2479 for (i
= 0; i
< MAX_TEXTURES
; ++i
)
2481 enum wined3d_texture_op color_op
= state
->texture_states
[i
][WINED3D_TSS_COLOR_OP
];
2482 enum wined3d_texture_op alpha_op
= state
->texture_states
[i
][WINED3D_TSS_ALPHA_OP
];
2483 DWORD color_arg1
= state
->texture_states
[i
][WINED3D_TSS_COLOR_ARG1
] & WINED3DTA_SELECTMASK
;
2484 DWORD color_arg2
= state
->texture_states
[i
][WINED3D_TSS_COLOR_ARG2
] & WINED3DTA_SELECTMASK
;
2485 DWORD color_arg3
= state
->texture_states
[i
][WINED3D_TSS_COLOR_ARG0
] & WINED3DTA_SELECTMASK
;
2486 DWORD alpha_arg1
= state
->texture_states
[i
][WINED3D_TSS_ALPHA_ARG1
] & WINED3DTA_SELECTMASK
;
2487 DWORD alpha_arg2
= state
->texture_states
[i
][WINED3D_TSS_ALPHA_ARG2
] & WINED3DTA_SELECTMASK
;
2488 DWORD alpha_arg3
= state
->texture_states
[i
][WINED3D_TSS_ALPHA_ARG0
] & WINED3DTA_SELECTMASK
;
2490 /* Not used, and disable higher stages. */
2491 if (color_op
== WINED3D_TOP_DISABLE
)
2494 if (((color_arg1
== WINED3DTA_TEXTURE
) && color_op
!= WINED3D_TOP_SELECT_ARG2
)
2495 || ((color_arg2
== WINED3DTA_TEXTURE
) && color_op
!= WINED3D_TOP_SELECT_ARG1
)
2496 || ((color_arg3
== WINED3DTA_TEXTURE
)
2497 && (color_op
== WINED3D_TOP_MULTIPLY_ADD
|| color_op
== WINED3D_TOP_LERP
))
2498 || ((alpha_arg1
== WINED3DTA_TEXTURE
) && alpha_op
!= WINED3D_TOP_SELECT_ARG2
)
2499 || ((alpha_arg2
== WINED3DTA_TEXTURE
) && alpha_op
!= WINED3D_TOP_SELECT_ARG1
)
2500 || ((alpha_arg3
== WINED3DTA_TEXTURE
)
2501 && (alpha_op
== WINED3D_TOP_MULTIPLY_ADD
|| alpha_op
== WINED3D_TOP_LERP
)))
2502 context
->fixed_function_usage_map
|= (1 << i
);
2504 if ((color_op
== WINED3D_TOP_BUMPENVMAP
|| color_op
== WINED3D_TOP_BUMPENVMAP_LUMINANCE
)
2505 && i
< MAX_TEXTURES
- 1)
2506 context
->fixed_function_usage_map
|= (1 << (i
+ 1));
2509 if (i
< context
->lowest_disabled_stage
)
2512 end
= context
->lowest_disabled_stage
;
2516 start
= context
->lowest_disabled_stage
;
2520 context
->lowest_disabled_stage
= i
;
2521 for (i
= start
+ 1; i
< end
; ++i
)
2523 context_invalidate_state(context
, STATE_TEXTURESTAGE(i
, WINED3D_TSS_COLOR_OP
));
2527 static void context_map_fixed_function_samplers(struct wined3d_context
*context
,
2528 const struct wined3d_state
*state
)
2530 unsigned int i
, tex
;
2532 const struct wined3d_d3d_info
*d3d_info
= context
->d3d_info
;
2534 context_update_fixed_function_usage_map(context
, state
);
2535 ffu_map
= context
->fixed_function_usage_map
;
2537 if (d3d_info
->limits
.ffp_textures
== d3d_info
->limits
.ffp_blend_stages
2538 || context
->lowest_disabled_stage
<= d3d_info
->limits
.ffp_textures
)
2540 for (i
= 0; ffu_map
; ffu_map
>>= 1, ++i
)
2545 if (context
->tex_unit_map
[i
] != i
)
2547 context_map_stage(context
, i
, i
);
2548 context_invalidate_state(context
, STATE_SAMPLER(i
));
2549 context_invalidate_texture_stage(context
, i
);
2555 /* Now work out the mapping */
2557 for (i
= 0; ffu_map
; ffu_map
>>= 1, ++i
)
2562 if (context
->tex_unit_map
[i
] != tex
)
2564 context_map_stage(context
, i
, tex
);
2565 context_invalidate_state(context
, STATE_SAMPLER(i
));
2566 context_invalidate_texture_stage(context
, i
);
2573 static void context_map_psamplers(struct wined3d_context
*context
, const struct wined3d_state
*state
)
2575 const enum wined3d_sampler_texture_type
*sampler_type
=
2576 state
->shader
[WINED3D_SHADER_TYPE_PIXEL
]->reg_maps
.sampler_type
;
2578 const struct wined3d_d3d_info
*d3d_info
= context
->d3d_info
;
2580 for (i
= 0; i
< MAX_FRAGMENT_SAMPLERS
; ++i
)
2582 if (sampler_type
[i
] && context
->tex_unit_map
[i
] != i
)
2584 context_map_stage(context
, i
, i
);
2585 context_invalidate_state(context
, STATE_SAMPLER(i
));
2586 if (i
< d3d_info
->limits
.ffp_blend_stages
)
2587 context_invalidate_texture_stage(context
, i
);
2592 static BOOL
context_unit_free_for_vs(const struct wined3d_context
*context
,
2593 const enum wined3d_sampler_texture_type
*pshader_sampler_tokens
,
2594 const enum wined3d_sampler_texture_type
*vshader_sampler_tokens
, DWORD unit
)
2596 DWORD current_mapping
= context
->rev_tex_unit_map
[unit
];
2598 /* Not currently used */
2599 if (current_mapping
== WINED3D_UNMAPPED_STAGE
)
2602 if (current_mapping
< MAX_FRAGMENT_SAMPLERS
)
2604 /* Used by a fragment sampler */
2606 if (!pshader_sampler_tokens
)
2608 /* No pixel shader, check fixed function */
2609 return current_mapping
>= MAX_TEXTURES
|| !(context
->fixed_function_usage_map
& (1 << current_mapping
));
2612 /* Pixel shader, check the shader's sampler map */
2613 return !pshader_sampler_tokens
[current_mapping
];
2616 /* Used by a vertex sampler */
2617 return !vshader_sampler_tokens
[current_mapping
- MAX_FRAGMENT_SAMPLERS
];
2620 static void context_map_vsamplers(struct wined3d_context
*context
, BOOL ps
, const struct wined3d_state
*state
)
2622 const enum wined3d_sampler_texture_type
*vshader_sampler_type
=
2623 state
->shader
[WINED3D_SHADER_TYPE_VERTEX
]->reg_maps
.sampler_type
;
2624 const enum wined3d_sampler_texture_type
*pshader_sampler_type
= NULL
;
2625 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
2626 int start
= min(MAX_COMBINED_SAMPLERS
, gl_info
->limits
.combined_samplers
) - 1;
2631 /* Note that we only care if a sampler is sampled or not, not the sampler's specific type.
2632 * Otherwise we'd need to call shader_update_samplers() here for 1.x pixelshaders. */
2633 pshader_sampler_type
= state
->shader
[WINED3D_SHADER_TYPE_PIXEL
]->reg_maps
.sampler_type
;
2636 for (i
= 0; i
< MAX_VERTEX_SAMPLERS
; ++i
) {
2637 DWORD vsampler_idx
= i
+ MAX_FRAGMENT_SAMPLERS
;
2638 if (vshader_sampler_type
[i
])
2640 if (context
->tex_unit_map
[vsampler_idx
] != WINED3D_UNMAPPED_STAGE
)
2642 /* Already mapped somewhere */
2648 if (context_unit_free_for_vs(context
, pshader_sampler_type
, vshader_sampler_type
, start
))
2650 context_map_stage(context
, vsampler_idx
, start
);
2651 context_invalidate_state(context
, STATE_SAMPLER(vsampler_idx
));
2663 static void context_update_tex_unit_map(struct wined3d_context
*context
, const struct wined3d_state
*state
)
2665 BOOL vs
= use_vs(state
);
2666 BOOL ps
= use_ps(state
);
2669 * -> Pixel shaders need a 1:1 map. In theory the shader input could be mapped too, but
2670 * that would be really messy and require shader recompilation
2671 * -> When the mapping of a stage is changed, sampler and ALL texture stage states have
2672 * to be reset. Because of that try to work with a 1:1 mapping as much as possible
2675 context_map_psamplers(context
, state
);
2677 context_map_fixed_function_samplers(context
, state
);
2680 context_map_vsamplers(context
, ps
, state
);
2683 /* Context activation is done by the caller. */
2684 void context_state_drawbuf(struct wined3d_context
*context
, const struct wined3d_state
*state
, DWORD state_id
)
2686 const struct wined3d_device
*device
= context
->swapchain
->device
;
2687 DWORD rt_mask
, *cur_mask
;
2689 if (isStateDirty(context
, STATE_FRAMEBUFFER
)) return;
2691 cur_mask
= context
->current_fbo
? &context
->current_fbo
->rt_mask
: &context
->draw_buffers_mask
;
2692 rt_mask
= find_draw_buffers_mask(context
, device
);
2693 if (rt_mask
!= *cur_mask
)
2695 context_apply_draw_buffers(context
, rt_mask
);
2696 *cur_mask
= rt_mask
;
2700 static BOOL
fixed_get_input(BYTE usage
, BYTE usage_idx
, unsigned int *regnum
)
2702 if ((usage
== WINED3D_DECL_USAGE_POSITION
|| usage
== WINED3D_DECL_USAGE_POSITIONT
) && !usage_idx
)
2703 *regnum
= WINED3D_FFP_POSITION
;
2704 else if (usage
== WINED3D_DECL_USAGE_BLEND_WEIGHT
&& !usage_idx
)
2705 *regnum
= WINED3D_FFP_BLENDWEIGHT
;
2706 else if (usage
== WINED3D_DECL_USAGE_BLEND_INDICES
&& !usage_idx
)
2707 *regnum
= WINED3D_FFP_BLENDINDICES
;
2708 else if (usage
== WINED3D_DECL_USAGE_NORMAL
&& !usage_idx
)
2709 *regnum
= WINED3D_FFP_NORMAL
;
2710 else if (usage
== WINED3D_DECL_USAGE_PSIZE
&& !usage_idx
)
2711 *regnum
= WINED3D_FFP_PSIZE
;
2712 else if (usage
== WINED3D_DECL_USAGE_COLOR
&& !usage_idx
)
2713 *regnum
= WINED3D_FFP_DIFFUSE
;
2714 else if (usage
== WINED3D_DECL_USAGE_COLOR
&& usage_idx
== 1)
2715 *regnum
= WINED3D_FFP_SPECULAR
;
2716 else if (usage
== WINED3D_DECL_USAGE_TEXCOORD
&& usage_idx
< WINED3DDP_MAXTEXCOORD
)
2717 *regnum
= WINED3D_FFP_TEXCOORD0
+ usage_idx
;
2720 FIXME("Unsupported input stream [usage=%s, usage_idx=%u].\n", debug_d3ddeclusage(usage
), usage_idx
);
2728 /* FIXME: Separate buffer loading from declaration decoding */
2729 /* Context activation is done by the caller. */
2730 void context_stream_info_from_declaration(struct wined3d_context
*context
,
2731 const struct wined3d_state
*state
, struct wined3d_stream_info
*stream_info
)
2733 /* We need to deal with frequency data! */
2734 struct wined3d_vertex_declaration
*declaration
= state
->vertex_declaration
;
2735 BOOL use_vshader
= use_vs(state
);
2739 stream_info
->use_map
= 0;
2740 stream_info
->swizzle_map
= 0;
2741 stream_info
->all_vbo
= 1;
2742 stream_info
->position_transformed
= declaration
->position_transformed
;
2744 /* Translate the declaration into strided data. */
2745 for (i
= 0; i
< declaration
->element_count
; ++i
)
2747 const struct wined3d_vertex_declaration_element
*element
= &declaration
->elements
[i
];
2748 const struct wined3d_stream_state
*stream
= &state
->streams
[element
->input_slot
];
2749 struct wined3d_buffer
*buffer
= stream
->buffer
;
2750 struct wined3d_bo_address data
;
2755 TRACE("%p Element %p (%u of %u).\n", declaration
->elements
,
2756 element
, i
+ 1, declaration
->element_count
);
2758 if (!buffer
) continue;
2760 stride
= stream
->stride
;
2761 TRACE("Stream %u in buffer %p.\n", element
->input_slot
, buffer
);
2762 buffer_get_memory(buffer
, context
, &data
);
2764 /* Can't use vbo's if the base vertex index is negative. OpenGL doesn't accept negative offsets
2765 * (or rather offsets bigger than the vbo, because the pointer is unsigned), so use system memory
2766 * sources. In most sane cases the pointer - offset will still be > 0, otherwise it will wrap
2767 * around to some big value. Hope that with the indices, the driver wraps it back internally. If
2768 * not, drawStridedSlow is needed, including a vertex buffer path. */
2769 if (state
->load_base_vertex_index
< 0)
2771 WARN_(d3d_perf
)("load_base_vertex_index is < 0 (%d), not using VBOs.\n",
2772 state
->load_base_vertex_index
);
2773 data
.buffer_object
= 0;
2774 data
.addr
= buffer_get_sysmem(buffer
, context
);
2775 if ((UINT_PTR
)data
.addr
< -state
->load_base_vertex_index
* stride
)
2777 FIXME("System memory vertex data load offset is negative!\n");
2780 data
.addr
+= element
->offset
;
2782 TRACE("offset %u input_slot %u usage_idx %d.\n", element
->offset
, element
->input_slot
, element
->usage_idx
);
2786 if (element
->output_slot
== ~0U)
2788 /* TODO: Assuming vertexdeclarations are usually used with the
2789 * same or a similar shader, it might be worth it to store the
2790 * last used output slot and try that one first. */
2791 stride_used
= vshader_get_input(state
->shader
[WINED3D_SHADER_TYPE_VERTEX
],
2792 element
->usage
, element
->usage_idx
, &idx
);
2796 idx
= element
->output_slot
;
2802 if (!element
->ffp_valid
)
2804 WARN("Skipping unsupported fixed function element of format %s and usage %s.\n",
2805 debug_d3dformat(element
->format
->id
), debug_d3ddeclusage(element
->usage
));
2806 stride_used
= FALSE
;
2810 stride_used
= fixed_get_input(element
->usage
, element
->usage_idx
, &idx
);
2816 TRACE("Load %s array %u [usage %s, usage_idx %u, "
2817 "input_slot %u, offset %u, stride %u, format %s, buffer_object %u].\n",
2818 use_vshader
? "shader": "fixed function", idx
,
2819 debug_d3ddeclusage(element
->usage
), element
->usage_idx
, element
->input_slot
,
2820 element
->offset
, stride
, debug_d3dformat(element
->format
->id
), data
.buffer_object
);
2822 data
.addr
+= stream
->offset
;
2824 stream_info
->elements
[idx
].format
= element
->format
;
2825 stream_info
->elements
[idx
].data
= data
;
2826 stream_info
->elements
[idx
].stride
= stride
;
2827 stream_info
->elements
[idx
].stream_idx
= element
->input_slot
;
2829 if (!context
->gl_info
->supported
[ARB_VERTEX_ARRAY_BGRA
]
2830 && element
->format
->id
== WINED3DFMT_B8G8R8A8_UNORM
)
2832 stream_info
->swizzle_map
|= 1 << idx
;
2834 stream_info
->use_map
|= 1 << idx
;
2838 /* Preload the vertex buffers. */
2839 context
->num_buffer_queries
= 0;
2840 for (i
= 0, map
= stream_info
->use_map
; map
; map
>>= 1, ++i
)
2842 struct wined3d_stream_info_element
*element
;
2843 struct wined3d_buffer
*buffer
;
2848 element
= &stream_info
->elements
[i
];
2849 buffer
= state
->streams
[element
->stream_idx
].buffer
;
2850 buffer_internal_preload(buffer
, context
, state
);
2852 /* If the preload dropped the buffer object, update the stream info. */
2853 if (buffer
->buffer_object
!= element
->data
.buffer_object
)
2855 element
->data
.buffer_object
= 0;
2856 element
->data
.addr
= buffer_get_sysmem(buffer
, context
)
2857 + (ptrdiff_t)element
->data
.addr
;
2860 if (!buffer
->buffer_object
)
2861 stream_info
->all_vbo
= 0;
2864 context
->buffer_queries
[context
->num_buffer_queries
++] = buffer
->query
;
2868 /* Context activation is done by the caller. */
2869 static void context_update_stream_info(struct wined3d_context
*context
, const struct wined3d_state
*state
)
2871 const struct wined3d_gl_info
*gl_info
= context
->gl_info
;
2872 const struct wined3d_d3d_info
*d3d_info
= context
->d3d_info
;
2873 struct wined3d_stream_info
*stream_info
= &context
->stream_info
;
2874 DWORD prev_all_vbo
= stream_info
->all_vbo
;
2876 TRACE("============================= Vertex Declaration =============================\n");
2877 context_stream_info_from_declaration(context
, state
, stream_info
);
2881 if (state
->vertex_declaration
->half_float_conv_needed
&& !stream_info
->all_vbo
)
2883 TRACE("Using drawStridedSlow with vertex shaders for FLOAT16 conversion.\n");
2884 context
->use_immediate_mode_draw
= TRUE
;
2888 context
->use_immediate_mode_draw
= FALSE
;
2893 WORD slow_mask
= (1 << WINED3D_FFP_PSIZE
);
2894 slow_mask
|= -!gl_info
->supported
[ARB_VERTEX_ARRAY_BGRA
]
2895 & ((1 << WINED3D_FFP_DIFFUSE
) | (1 << WINED3D_FFP_SPECULAR
));
2897 if (((stream_info
->position_transformed
&& !d3d_info
->xyzrhw
)
2898 || (stream_info
->use_map
& slow_mask
)) && !stream_info
->all_vbo
)
2899 context
->use_immediate_mode_draw
= TRUE
;
2901 context
->use_immediate_mode_draw
= FALSE
;
2904 if (prev_all_vbo
!= stream_info
->all_vbo
)
2905 context_invalidate_state(context
, STATE_INDEXBUFFER
);
2908 /* Context activation is done by the caller. */
2909 static void context_preload_texture(struct wined3d_context
*context
,
2910 const struct wined3d_state
*state
, unsigned int idx
)
2912 struct wined3d_texture
*texture
;
2914 if (!(texture
= state
->textures
[idx
]))
2917 wined3d_texture_load(texture
, context
, state
->sampler_states
[idx
][WINED3D_SAMP_SRGB_TEXTURE
]);
2920 /* Context activation is done by the caller. */
2921 static void context_preload_textures(struct wined3d_context
*context
, const struct wined3d_state
*state
)
2927 for (i
= 0; i
< MAX_VERTEX_SAMPLERS
; ++i
)
2929 if (state
->shader
[WINED3D_SHADER_TYPE_VERTEX
]->reg_maps
.sampler_type
[i
])
2930 context_preload_texture(context
, state
, MAX_FRAGMENT_SAMPLERS
+ i
);
2936 for (i
= 0; i
< MAX_FRAGMENT_SAMPLERS
; ++i
)
2938 if (state
->shader
[WINED3D_SHADER_TYPE_PIXEL
]->reg_maps
.sampler_type
[i
])
2939 context_preload_texture(context
, state
, i
);
2944 WORD ffu_map
= context
->fixed_function_usage_map
;
2946 for (i
= 0; ffu_map
; ffu_map
>>= 1, ++i
)
2949 context_preload_texture(context
, state
, i
);
2954 /* Context activation is done by the caller. */
2955 BOOL
context_apply_draw_state(struct wined3d_context
*context
, struct wined3d_device
*device
)
2957 const struct wined3d_state
*state
= &device
->state
;
2958 const struct StateEntry
*state_table
= context
->state_table
;
2959 const struct wined3d_fb_state
*fb
= state
->fb
;
2962 if (!context_validate_rt_config(context
->gl_info
->limits
.buffers
,
2963 fb
->render_targets
, fb
->depth_stencil
))
2966 if (wined3d_settings
.offscreen_rendering_mode
== ORM_FBO
&& isStateDirty(context
, STATE_FRAMEBUFFER
))
2968 context_validate_onscreen_formats(context
, fb
->depth_stencil
);
2971 /* Preload resources before FBO setup. Texture preload in particular may
2972 * result in changes to the current FBO, due to using e.g. FBO blits for
2973 * updating a resource location. */
2974 context_update_tex_unit_map(context
, state
);
2975 context_preload_textures(context
, state
);
2976 if (isStateDirty(context
, STATE_VDECL
) || isStateDirty(context
, STATE_STREAMSRC
))
2977 context_update_stream_info(context
, state
);
2978 if (state
->index_buffer
)
2980 if (context
->stream_info
.all_vbo
)
2981 buffer_internal_preload(state
->index_buffer
, context
, state
);
2983 buffer_get_sysmem(state
->index_buffer
, context
);
2986 for (i
= 0; i
< context
->numDirtyEntries
; ++i
)
2988 DWORD rep
= context
->dirtyArray
[i
];
2989 DWORD idx
= rep
/ (sizeof(*context
->isStateDirty
) * CHAR_BIT
);
2990 BYTE shift
= rep
& ((sizeof(*context
->isStateDirty
) * CHAR_BIT
) - 1);
2991 context
->isStateDirty
[idx
] &= ~(1 << shift
);
2992 state_table
[rep
].apply(context
, state
, rep
);
2995 if (context
->shader_update_mask
)
2997 device
->shader_backend
->shader_select(device
->shader_priv
, context
, state
);
2998 context
->shader_update_mask
= 0;
3001 if (context
->constant_update_mask
)
3003 device
->shader_backend
->shader_load_constants(device
->shader_priv
, context
, state
);
3004 context
->constant_update_mask
= 0;
3007 if (wined3d_settings
.offscreen_rendering_mode
== ORM_FBO
)
3009 context_check_fbo_status(context
, GL_FRAMEBUFFER
);
3012 context
->numDirtyEntries
= 0; /* This makes the whole list clean */
3013 context
->last_was_blit
= FALSE
;
3018 static void context_setup_target(struct wined3d_context
*context
, struct wined3d_surface
*target
)
3020 BOOL old_render_offscreen
= context
->render_offscreen
, render_offscreen
;
3022 render_offscreen
= surface_is_offscreen(target
);
3023 if (context
->current_rt
== target
&& render_offscreen
== old_render_offscreen
) return;
3025 /* To compensate the lack of format switching with some offscreen rendering methods and on onscreen buffers
3026 * the alpha blend state changes with different render target formats. */
3027 if (!context
->current_rt
)
3029 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_ALPHABLENDENABLE
));
3033 const struct wined3d_format
*old
= context
->current_rt
->resource
.format
;
3034 const struct wined3d_format
*new = target
->resource
.format
;
3036 if (old
->id
!= new->id
)
3038 /* Disable blending when the alpha mask has changed and when a format doesn't support blending. */
3039 if ((old
->alpha_size
&& !new->alpha_size
) || (!old
->alpha_size
&& new->alpha_size
)
3040 || !(new->flags
& WINED3DFMT_FLAG_POSTPIXELSHADER_BLENDING
))
3041 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_ALPHABLENDENABLE
));
3043 /* Update sRGB writing when switching between formats that do/do not support sRGB writing */
3044 if ((old
->flags
& WINED3DFMT_FLAG_SRGB_WRITE
) != (new->flags
& WINED3DFMT_FLAG_SRGB_WRITE
))
3045 context_invalidate_state(context
, STATE_RENDER(WINED3D_RS_SRGBWRITEENABLE
));
3048 /* When switching away from an offscreen render target, and we're not
3049 * using FBOs, we have to read the drawable into the texture. This is
3050 * done via PreLoad (and WINED3D_LOCATION_DRAWABLE set on the surface).
3051 * There are some things that need care though. PreLoad needs a GL context,
3052 * and FindContext is called before the context is activated. It also
3053 * has to be called with the old rendertarget active, otherwise a
3054 * wrong drawable is read. */
3055 if (wined3d_settings
.offscreen_rendering_mode
!= ORM_FBO
3056 && old_render_offscreen
&& context
->current_rt
!= target
)
3058 struct wined3d_texture
*texture
= context
->current_rt
->container
;
3060 /* Read the back buffer of the old drawable into the destination texture. */
3061 if (texture
->texture_srgb
.name
)
3062 wined3d_texture_load(texture
, context
, TRUE
);
3063 wined3d_texture_load(texture
, context
, FALSE
);
3064 surface_invalidate_location(context
->current_rt
, WINED3D_LOCATION_DRAWABLE
);
3068 context
->current_rt
= target
;
3069 context_set_render_offscreen(context
, render_offscreen
);
3072 struct wined3d_context
*context_acquire(const struct wined3d_device
*device
, struct wined3d_surface
*target
)
3074 struct wined3d_context
*current_context
= context_get_current();
3075 struct wined3d_context
*context
;
3077 TRACE("device %p, target %p.\n", device
, target
);
3079 if (current_context
&& current_context
->destroyed
)
3080 current_context
= NULL
;
3085 && current_context
->current_rt
3086 && current_context
->swapchain
->device
== device
)
3088 target
= current_context
->current_rt
;
3092 struct wined3d_swapchain
*swapchain
= device
->swapchains
[0];
3093 if (swapchain
->back_buffers
)
3094 target
= swapchain
->back_buffers
[0];
3096 target
= swapchain
->front_buffer
;
3100 if (current_context
&& current_context
->current_rt
== target
)
3102 context
= current_context
;
3104 else if (target
->swapchain
)
3106 TRACE("Rendering onscreen.\n");
3108 context
= swapchain_get_context(target
->swapchain
);
3112 TRACE("Rendering offscreen.\n");
3114 /* Stay with the current context if possible. Otherwise use the
3115 * context for the primary swapchain. */
3116 if (current_context
&& current_context
->swapchain
->device
== device
)
3117 context
= current_context
;
3119 context
= swapchain_get_context(device
->swapchains
[0]);
3122 context_enter(context
);
3123 context_update_window(context
);
3124 context_setup_target(context
, target
);
3125 if (!context
->valid
) return context
;
3127 if (context
!= current_context
)
3129 if (!context_set_current(context
))
3130 ERR("Failed to activate the new context.\n");
3132 else if (context
->needs_set
)
3134 context_set_gl_context(context
);