uiautomationcore: Register all UI Automation typelibs.
[wine.git] / dlls / wined3d / context_gl.c
blob5574997bf05628180ddde6351969754f7cc2d8f9
1 /*
2 * Context and render target management in wined3d
4 * Copyright 2002-2004 Jason Edmeades
5 * Copyright 2002-2004 Raphael Junqueira
6 * Copyright 2004 Christian Costa
7 * Copyright 2005 Oliver Stieber
8 * Copyright 2006, 2008 Henri Verbeet
9 * Copyright 2007-2011, 2013 Stefan Dösinger for CodeWeavers
10 * Copyright 2009-2011 Henri Verbeet for CodeWeavers
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "wined3d_private.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(d3d);
30 WINE_DECLARE_DEBUG_CHANNEL(d3d_perf);
31 WINE_DECLARE_DEBUG_CHANNEL(d3d_sync);
33 #define WINED3D_MAX_FBO_ENTRIES 64
34 #define WINED3D_ALL_LAYERS (~0u)
36 static DWORD wined3d_context_tls_idx;
38 /* Note that except for WINED3DPT_POINTLIST and WINED3DPT_LINELIST these
39 * actually have the same values in GL and D3D. */
40 static GLenum gl_primitive_type_from_d3d(enum wined3d_primitive_type primitive_type)
42 switch (primitive_type)
44 case WINED3D_PT_POINTLIST:
45 return GL_POINTS;
47 case WINED3D_PT_LINELIST:
48 return GL_LINES;
50 case WINED3D_PT_LINESTRIP:
51 return GL_LINE_STRIP;
53 case WINED3D_PT_TRIANGLELIST:
54 return GL_TRIANGLES;
56 case WINED3D_PT_TRIANGLESTRIP:
57 return GL_TRIANGLE_STRIP;
59 case WINED3D_PT_TRIANGLEFAN:
60 return GL_TRIANGLE_FAN;
62 case WINED3D_PT_LINELIST_ADJ:
63 return GL_LINES_ADJACENCY_ARB;
65 case WINED3D_PT_LINESTRIP_ADJ:
66 return GL_LINE_STRIP_ADJACENCY_ARB;
68 case WINED3D_PT_TRIANGLELIST_ADJ:
69 return GL_TRIANGLES_ADJACENCY_ARB;
71 case WINED3D_PT_TRIANGLESTRIP_ADJ:
72 return GL_TRIANGLE_STRIP_ADJACENCY_ARB;
74 case WINED3D_PT_PATCH:
75 return GL_PATCHES;
77 default:
78 FIXME("Unhandled primitive type %s.\n", debug_d3dprimitivetype(primitive_type));
79 case WINED3D_PT_UNDEFINED:
80 return ~0u;
84 /* FBO helper functions */
86 /* Context activation is done by the caller. */
87 static void wined3d_context_gl_bind_fbo(struct wined3d_context_gl *context_gl, GLenum target, GLuint fbo)
89 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
91 TRACE("context_gl %p, target %#x, fbo %u.\n", context_gl, target, fbo);
93 switch (target)
95 case GL_READ_FRAMEBUFFER:
96 if (context_gl->fbo_read_binding == fbo)
97 return;
98 context_gl->fbo_read_binding = fbo;
99 break;
101 case GL_DRAW_FRAMEBUFFER:
102 if (context_gl->fbo_draw_binding == fbo)
103 return;
104 context_gl->fbo_draw_binding = fbo;
105 break;
107 case GL_FRAMEBUFFER:
108 if (context_gl->fbo_read_binding == fbo
109 && context_gl->fbo_draw_binding == fbo)
110 return;
111 context_gl->fbo_read_binding = fbo;
112 context_gl->fbo_draw_binding = fbo;
113 break;
115 default:
116 FIXME("Unhandled target %#x.\n", target);
117 break;
120 gl_info->fbo_ops.glBindFramebuffer(target, fbo);
121 checkGLcall("glBindFramebuffer()");
124 /* Context activation is done by the caller. */
125 static void context_clean_fbo_attachments(const struct wined3d_gl_info *gl_info, GLenum target)
127 unsigned int i;
129 for (i = 0; i < gl_info->limits.buffers; ++i)
131 gl_info->fbo_ops.glFramebufferTexture2D(target, GL_COLOR_ATTACHMENT0 + i, GL_TEXTURE_2D, 0, 0);
132 checkGLcall("glFramebufferTexture2D()");
134 gl_info->fbo_ops.glFramebufferTexture2D(target, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, 0, 0);
135 checkGLcall("glFramebufferTexture2D()");
137 gl_info->fbo_ops.glFramebufferTexture2D(target, GL_STENCIL_ATTACHMENT, GL_TEXTURE_2D, 0, 0);
138 checkGLcall("glFramebufferTexture2D()");
141 /* Context activation is done by the caller. */
142 static void wined3d_context_gl_destroy_fbo(struct wined3d_context_gl *context_gl, GLuint fbo)
144 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
146 wined3d_context_gl_bind_fbo(context_gl, GL_FRAMEBUFFER, fbo);
147 context_clean_fbo_attachments(gl_info, GL_FRAMEBUFFER);
148 wined3d_context_gl_bind_fbo(context_gl, GL_FRAMEBUFFER, 0);
150 gl_info->fbo_ops.glDeleteFramebuffers(1, &fbo);
151 checkGLcall("glDeleteFramebuffers()");
154 static void context_attach_depth_stencil_rb(const struct wined3d_gl_info *gl_info,
155 GLenum fbo_target, uint32_t flags, GLuint rb)
157 if (flags & WINED3D_FBO_ENTRY_FLAG_DEPTH)
159 gl_info->fbo_ops.glFramebufferRenderbuffer(fbo_target, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, rb);
160 checkGLcall("glFramebufferRenderbuffer()");
163 if (flags & WINED3D_FBO_ENTRY_FLAG_STENCIL)
165 gl_info->fbo_ops.glFramebufferRenderbuffer(fbo_target, GL_STENCIL_ATTACHMENT, GL_RENDERBUFFER, rb);
166 checkGLcall("glFramebufferRenderbuffer()");
170 static void wined3d_context_gl_attach_gl_texture_fbo(struct wined3d_context_gl *context_gl,
171 GLenum fbo_target, GLenum attachment, const struct wined3d_fbo_resource *resource)
173 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
175 if (!resource)
177 gl_info->fbo_ops.glFramebufferTexture2D(fbo_target, attachment, GL_TEXTURE_2D, 0, 0);
179 else if (resource->layer == WINED3D_ALL_LAYERS)
181 if (!gl_info->fbo_ops.glFramebufferTexture)
183 FIXME("OpenGL implementation doesn't support glFramebufferTexture().\n");
184 return;
187 gl_info->fbo_ops.glFramebufferTexture(fbo_target, attachment,
188 resource->object, resource->level);
190 else if (resource->target == GL_TEXTURE_1D_ARRAY || resource->target == GL_TEXTURE_2D_ARRAY
191 || resource->target == GL_TEXTURE_3D)
193 if (!gl_info->fbo_ops.glFramebufferTextureLayer)
195 FIXME("OpenGL implementation doesn't support glFramebufferTextureLayer().\n");
196 return;
199 gl_info->fbo_ops.glFramebufferTextureLayer(fbo_target, attachment,
200 resource->object, resource->level, resource->layer);
202 else if (resource->target == GL_TEXTURE_1D)
204 gl_info->fbo_ops.glFramebufferTexture1D(fbo_target, attachment,
205 resource->target, resource->object, resource->level);
207 else
209 gl_info->fbo_ops.glFramebufferTexture2D(fbo_target, attachment,
210 resource->target, resource->object, resource->level);
212 checkGLcall("attach texture to fbo");
215 /* Context activation is done by the caller. */
216 static void wined3d_context_gl_attach_depth_stencil_fbo(struct wined3d_context_gl *context_gl,
217 GLenum fbo_target, const struct wined3d_fbo_resource *resource, BOOL rb_namespace,
218 uint32_t flags)
220 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
222 if (resource->object)
224 TRACE("Attach depth stencil %u.\n", resource->object);
226 if (rb_namespace)
228 context_attach_depth_stencil_rb(gl_info, fbo_target,
229 flags, resource->object);
231 else
233 if (flags & WINED3D_FBO_ENTRY_FLAG_DEPTH)
234 wined3d_context_gl_attach_gl_texture_fbo(context_gl, fbo_target, GL_DEPTH_ATTACHMENT, resource);
236 if (flags & WINED3D_FBO_ENTRY_FLAG_STENCIL)
237 wined3d_context_gl_attach_gl_texture_fbo(context_gl, fbo_target, GL_STENCIL_ATTACHMENT, resource);
240 if (!(flags & WINED3D_FBO_ENTRY_FLAG_DEPTH))
241 wined3d_context_gl_attach_gl_texture_fbo(context_gl, fbo_target, GL_DEPTH_ATTACHMENT, NULL);
243 if (!(flags & WINED3D_FBO_ENTRY_FLAG_STENCIL))
244 wined3d_context_gl_attach_gl_texture_fbo(context_gl, fbo_target, GL_STENCIL_ATTACHMENT, NULL);
246 else
248 TRACE("Attach depth stencil 0.\n");
250 wined3d_context_gl_attach_gl_texture_fbo(context_gl, fbo_target, GL_DEPTH_ATTACHMENT, NULL);
251 wined3d_context_gl_attach_gl_texture_fbo(context_gl, fbo_target, GL_STENCIL_ATTACHMENT, NULL);
255 /* Context activation is done by the caller. */
256 static void wined3d_context_gl_attach_surface_fbo(struct wined3d_context_gl *context_gl,
257 GLenum fbo_target, unsigned int idx, const struct wined3d_fbo_resource *resource, BOOL rb_namespace)
259 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
261 TRACE("Attach GL object %u to %u.\n", resource->object, idx);
263 if (resource->object)
265 if (rb_namespace)
267 gl_info->fbo_ops.glFramebufferRenderbuffer(fbo_target, GL_COLOR_ATTACHMENT0 + idx,
268 GL_RENDERBUFFER, resource->object);
269 checkGLcall("glFramebufferRenderbuffer()");
271 else
273 wined3d_context_gl_attach_gl_texture_fbo(context_gl, fbo_target, GL_COLOR_ATTACHMENT0 + idx, resource);
276 else
278 wined3d_context_gl_attach_gl_texture_fbo(context_gl, fbo_target, GL_COLOR_ATTACHMENT0 + idx, NULL);
282 static void context_dump_fbo_attachment(const struct wined3d_gl_info *gl_info, GLenum target,
283 GLenum attachment)
285 static const struct
287 GLenum target;
288 GLenum binding;
289 const char *str;
290 enum wined3d_gl_extension extension;
292 texture_type[] =
294 {GL_TEXTURE_1D, GL_TEXTURE_BINDING_1D, "1d", WINED3D_GL_EXT_NONE},
295 {GL_TEXTURE_1D_ARRAY, GL_TEXTURE_BINDING_1D_ARRAY, "1d-array", EXT_TEXTURE_ARRAY},
296 {GL_TEXTURE_2D, GL_TEXTURE_BINDING_2D, "2d", WINED3D_GL_EXT_NONE},
297 {GL_TEXTURE_RECTANGLE_ARB, GL_TEXTURE_BINDING_RECTANGLE_ARB, "rectangle", ARB_TEXTURE_RECTANGLE},
298 {GL_TEXTURE_2D_ARRAY, GL_TEXTURE_BINDING_2D_ARRAY, "2d-array" , EXT_TEXTURE_ARRAY},
299 {GL_TEXTURE_CUBE_MAP, GL_TEXTURE_BINDING_CUBE_MAP, "cube", ARB_TEXTURE_CUBE_MAP},
300 {GL_TEXTURE_2D_MULTISAMPLE, GL_TEXTURE_BINDING_2D_MULTISAMPLE, "2d-ms", ARB_TEXTURE_MULTISAMPLE},
301 {GL_TEXTURE_2D_MULTISAMPLE_ARRAY, GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY, "2d-array-ms", ARB_TEXTURE_MULTISAMPLE},
304 GLint type, name, samples, width, height, old_texture, level, face, fmt, tex_target;
305 const char *tex_type_str = NULL;
306 unsigned int i;
308 gl_info->fbo_ops.glGetFramebufferAttachmentParameteriv(target, attachment,
309 GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME, &name);
310 gl_info->fbo_ops.glGetFramebufferAttachmentParameteriv(target, attachment,
311 GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE, &type);
313 if (type == GL_RENDERBUFFER)
315 gl_info->fbo_ops.glBindRenderbuffer(GL_RENDERBUFFER, name);
316 gl_info->fbo_ops.glGetRenderbufferParameteriv(GL_RENDERBUFFER, GL_RENDERBUFFER_WIDTH, &width);
317 gl_info->fbo_ops.glGetRenderbufferParameteriv(GL_RENDERBUFFER, GL_RENDERBUFFER_HEIGHT, &height);
318 if (gl_info->limits.samples > 1)
319 gl_info->fbo_ops.glGetRenderbufferParameteriv(GL_RENDERBUFFER, GL_RENDERBUFFER_SAMPLES, &samples);
320 else
321 samples = 1;
322 gl_info->fbo_ops.glGetRenderbufferParameteriv(GL_RENDERBUFFER, GL_RENDERBUFFER_INTERNAL_FORMAT, &fmt);
323 FIXME(" %s: renderbuffer %d, %dx%d, %d samples, format %#x.\n",
324 debug_fboattachment(attachment), name, width, height, samples, fmt);
326 else if (type == GL_TEXTURE)
328 gl_info->fbo_ops.glGetFramebufferAttachmentParameteriv(target, attachment,
329 GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL, &level);
330 gl_info->fbo_ops.glGetFramebufferAttachmentParameteriv(target, attachment,
331 GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE, &face);
333 if (gl_info->gl_ops.ext.p_glGetTextureParameteriv)
335 GL_EXTCALL(glGetTextureParameteriv(name, GL_TEXTURE_TARGET, &tex_target));
337 for (i = 0; i < ARRAY_SIZE(texture_type); ++i)
339 if (texture_type[i].target == tex_target)
341 tex_type_str = texture_type[i].str;
342 break;
345 if (i == ARRAY_SIZE(texture_type))
346 tex_type_str = wine_dbg_sprintf("%#x", tex_target);
348 else if (face)
350 gl_info->gl_ops.gl.p_glGetIntegerv(GL_TEXTURE_BINDING_CUBE_MAP, &old_texture);
351 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_CUBE_MAP, name);
353 tex_target = GL_TEXTURE_CUBE_MAP;
354 tex_type_str = "cube";
356 else
358 for (i = 0; i < ARRAY_SIZE(texture_type); ++i)
360 if (!gl_info->supported[texture_type[i].extension])
361 continue;
363 gl_info->gl_ops.gl.p_glGetIntegerv(texture_type[i].binding, &old_texture);
364 while (gl_info->gl_ops.gl.p_glGetError());
366 gl_info->gl_ops.gl.p_glBindTexture(texture_type[i].target, name);
367 if (!gl_info->gl_ops.gl.p_glGetError())
369 tex_target = texture_type[i].target;
370 tex_type_str = texture_type[i].str;
371 break;
373 gl_info->gl_ops.gl.p_glBindTexture(texture_type[i].target, old_texture);
376 if (!tex_type_str)
378 FIXME("Cannot find type of texture %d.\n", name);
379 return;
383 if (gl_info->gl_ops.ext.p_glGetTextureParameteriv)
385 GL_EXTCALL(glGetTextureLevelParameteriv(name, level, GL_TEXTURE_INTERNAL_FORMAT, &fmt));
386 GL_EXTCALL(glGetTextureLevelParameteriv(name, level, GL_TEXTURE_WIDTH, &width));
387 GL_EXTCALL(glGetTextureLevelParameteriv(name, level, GL_TEXTURE_HEIGHT, &height));
388 GL_EXTCALL(glGetTextureLevelParameteriv(name, level, GL_TEXTURE_SAMPLES, &samples));
390 else
392 gl_info->gl_ops.gl.p_glGetTexLevelParameteriv(tex_target, level, GL_TEXTURE_INTERNAL_FORMAT, &fmt);
393 gl_info->gl_ops.gl.p_glGetTexLevelParameteriv(tex_target, level, GL_TEXTURE_WIDTH, &width);
394 gl_info->gl_ops.gl.p_glGetTexLevelParameteriv(tex_target, level, GL_TEXTURE_HEIGHT, &height);
395 if (gl_info->supported[ARB_TEXTURE_MULTISAMPLE])
396 gl_info->gl_ops.gl.p_glGetTexLevelParameteriv(tex_target, level, GL_TEXTURE_SAMPLES, &samples);
397 else
398 samples = 1;
400 gl_info->gl_ops.gl.p_glBindTexture(tex_target, old_texture);
403 FIXME(" %s: %s texture %d, %dx%d, %d samples, format %#x.\n",
404 debug_fboattachment(attachment), tex_type_str, name, width, height, samples, fmt);
406 else if (type == GL_NONE)
408 FIXME(" %s: NONE.\n", debug_fboattachment(attachment));
410 else
412 ERR(" %s: Unknown attachment %#x.\n", debug_fboattachment(attachment), type);
415 checkGLcall("dump FBO attachment");
418 /* Context activation is done by the caller. */
419 void wined3d_context_gl_check_fbo_status(const struct wined3d_context_gl *context_gl, GLenum target)
421 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
422 GLenum status;
424 if (!FIXME_ON(d3d))
425 return;
427 status = gl_info->fbo_ops.glCheckFramebufferStatus(target);
428 if (status == GL_FRAMEBUFFER_COMPLETE)
430 TRACE("FBO complete.\n");
432 else
434 unsigned int i;
436 FIXME("FBO status %s (%#x).\n", debug_fbostatus(status), status);
438 if (!context_gl->current_fbo)
440 ERR("FBO 0 is incomplete, driver bug?\n");
441 return;
444 context_dump_fbo_attachment(gl_info, target, GL_DEPTH_ATTACHMENT);
445 context_dump_fbo_attachment(gl_info, target, GL_STENCIL_ATTACHMENT);
447 for (i = 0; i < gl_info->limits.buffers; ++i)
448 context_dump_fbo_attachment(gl_info, target, GL_COLOR_ATTACHMENT0 + i);
452 static inline DWORD context_generate_rt_mask(GLenum buffer)
454 /* Should take care of all the GL_FRONT/GL_BACK/GL_AUXi/GL_NONE... cases */
455 return buffer ? (1u << 31) | buffer : 0;
458 static inline DWORD context_generate_rt_mask_from_resource(struct wined3d_resource *resource)
460 if (resource->type != WINED3D_RTYPE_TEXTURE_2D)
462 FIXME("Not implemented for %s resources.\n", debug_d3dresourcetype(resource->type));
463 return 0;
466 return (1u << 31) | wined3d_texture_get_gl_buffer(texture_from_resource(resource));
469 /* Context activation is done by the caller. */
470 static void wined3d_context_gl_set_draw_buffer(struct wined3d_context_gl *context_gl, GLenum buffer)
472 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
473 struct fbo_entry *current_fbo = context_gl->current_fbo;
474 uint32_t new_mask = context_generate_rt_mask(buffer);
475 uint32_t *current_mask;
477 current_mask = current_fbo ? &current_fbo->rt_mask : &context_gl->draw_buffers_mask;
478 if (new_mask == *current_mask)
479 return;
481 gl_info->gl_ops.gl.p_glDrawBuffer(buffer);
482 checkGLcall("glDrawBuffer()");
484 *current_mask = new_mask;
487 static inline void wined3d_context_gl_set_fbo_key_for_render_target(const struct wined3d_context_gl *context_gl,
488 struct wined3d_fbo_entry_key *key, unsigned int idx, const struct wined3d_rendertarget_info *render_target,
489 DWORD location)
491 unsigned int sub_resource_idx = render_target->sub_resource_idx;
492 struct wined3d_resource *resource = render_target->resource;
493 struct wined3d_texture_gl *texture_gl;
495 if (!resource || resource->format->id == WINED3DFMT_NULL || resource->type == WINED3D_RTYPE_BUFFER)
497 if (resource && resource->type == WINED3D_RTYPE_BUFFER)
498 FIXME("Not implemented for %s resources.\n", debug_d3dresourcetype(resource->type));
499 key->objects[idx].object = 0;
500 key->objects[idx].target = 0;
501 key->objects[idx].level = key->objects[idx].layer = 0;
502 return;
505 if (render_target->gl_view.name)
507 key->objects[idx].object = render_target->gl_view.name;
508 key->objects[idx].target = render_target->gl_view.target;
509 key->objects[idx].level = 0;
510 key->objects[idx].layer = WINED3D_ALL_LAYERS;
511 return;
514 texture_gl = wined3d_texture_gl(wined3d_texture_from_resource(resource));
515 if (texture_gl->current_renderbuffer)
517 key->objects[idx].object = texture_gl->current_renderbuffer->id;
518 key->objects[idx].target = 0;
519 key->objects[idx].level = key->objects[idx].layer = 0;
520 key->rb_namespace |= 1 << idx;
521 return;
524 key->objects[idx].target = wined3d_texture_gl_get_sub_resource_target(texture_gl, sub_resource_idx);
525 key->objects[idx].level = sub_resource_idx % texture_gl->t.level_count;
526 key->objects[idx].layer = sub_resource_idx / texture_gl->t.level_count;
528 if (render_target->layer_count != 1)
529 key->objects[idx].layer = WINED3D_ALL_LAYERS;
531 switch (location)
533 case WINED3D_LOCATION_TEXTURE_RGB:
534 key->objects[idx].object = wined3d_texture_gl_get_texture_name(texture_gl, &context_gl->c, FALSE);
535 break;
537 case WINED3D_LOCATION_TEXTURE_SRGB:
538 key->objects[idx].object = wined3d_texture_gl_get_texture_name(texture_gl, &context_gl->c, TRUE);
539 break;
541 case WINED3D_LOCATION_RB_MULTISAMPLE:
542 key->objects[idx].object = texture_gl->rb_multisample;
543 key->objects[idx].target = 0;
544 key->objects[idx].level = key->objects[idx].layer = 0;
545 key->rb_namespace |= 1 << idx;
546 break;
548 case WINED3D_LOCATION_RB_RESOLVED:
549 key->objects[idx].object = texture_gl->rb_resolved;
550 key->objects[idx].target = 0;
551 key->objects[idx].level = key->objects[idx].layer = 0;
552 key->rb_namespace |= 1 << idx;
553 break;
557 static void wined3d_context_gl_generate_fbo_key(const struct wined3d_context_gl *context_gl,
558 struct wined3d_fbo_entry_key *key, const struct wined3d_rendertarget_info *render_targets,
559 const struct wined3d_rendertarget_info *depth_stencil, DWORD color_location, DWORD ds_location)
561 unsigned int buffers = context_gl->gl_info->limits.buffers;
562 unsigned int i;
564 key->rb_namespace = 0;
565 wined3d_context_gl_set_fbo_key_for_render_target(context_gl, key, 0, depth_stencil, ds_location);
567 for (i = 0; i < buffers; ++i)
568 wined3d_context_gl_set_fbo_key_for_render_target(context_gl, key, i + 1, &render_targets[i], color_location);
570 memset(&key->objects[buffers + 1], 0, (ARRAY_SIZE(key->objects) - buffers - 1) * sizeof(*key->objects));
573 static struct fbo_entry *wined3d_context_gl_create_fbo_entry(const struct wined3d_context_gl *context_gl,
574 const struct wined3d_rendertarget_info *render_targets, const struct wined3d_rendertarget_info *depth_stencil,
575 DWORD color_location, DWORD ds_location)
577 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
578 struct fbo_entry *entry;
580 entry = heap_alloc(sizeof(*entry));
581 wined3d_context_gl_generate_fbo_key(context_gl, &entry->key,
582 render_targets, depth_stencil, color_location, ds_location);
583 entry->flags = 0;
584 if (depth_stencil->resource)
586 if (depth_stencil->resource->format->depth_size)
587 entry->flags |= WINED3D_FBO_ENTRY_FLAG_DEPTH;
588 if (depth_stencil->resource->format->stencil_size)
589 entry->flags |= WINED3D_FBO_ENTRY_FLAG_STENCIL;
591 entry->rt_mask = context_generate_rt_mask(GL_COLOR_ATTACHMENT0);
592 gl_info->fbo_ops.glGenFramebuffers(1, &entry->id);
593 checkGLcall("glGenFramebuffers()");
594 TRACE("Created FBO %u.\n", entry->id);
596 return entry;
599 /* Context activation is done by the caller. */
600 static void wined3d_context_gl_reuse_fbo_entry(struct wined3d_context_gl *context_gl, GLenum target,
601 const struct wined3d_rendertarget_info *render_targets, const struct wined3d_rendertarget_info *depth_stencil,
602 DWORD color_location, DWORD ds_location, struct fbo_entry *entry)
604 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
606 wined3d_context_gl_bind_fbo(context_gl, target, entry->id);
607 context_clean_fbo_attachments(gl_info, target);
609 wined3d_context_gl_generate_fbo_key(context_gl, &entry->key,
610 render_targets, depth_stencil, color_location, ds_location);
611 entry->flags = 0;
612 if (depth_stencil->resource)
614 if (depth_stencil->resource->format->depth_size)
615 entry->flags |= WINED3D_FBO_ENTRY_FLAG_DEPTH;
616 if (depth_stencil->resource->format->stencil_size)
617 entry->flags |= WINED3D_FBO_ENTRY_FLAG_STENCIL;
621 /* Context activation is done by the caller. */
622 static void wined3d_context_gl_destroy_fbo_entry(struct wined3d_context_gl *context_gl, struct fbo_entry *entry)
624 if (entry->id)
626 TRACE("Destroy FBO %u.\n", entry->id);
627 wined3d_context_gl_destroy_fbo(context_gl, entry->id);
629 --context_gl->fbo_entry_count;
630 list_remove(&entry->entry);
631 heap_free(entry);
634 /* Context activation is done by the caller. */
635 static struct fbo_entry *wined3d_context_gl_find_fbo_entry(struct wined3d_context_gl *context_gl, GLenum target,
636 const struct wined3d_rendertarget_info *render_targets, const struct wined3d_rendertarget_info *depth_stencil,
637 DWORD color_location, DWORD ds_location)
639 static const struct wined3d_rendertarget_info ds_null = {{0}};
640 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
641 struct wined3d_texture *rt_texture, *ds_texture;
642 struct wined3d_fbo_entry_key fbo_key;
643 unsigned int i, ds_level, rt_level;
644 struct fbo_entry *entry;
646 if (depth_stencil->resource && depth_stencil->resource->type != WINED3D_RTYPE_BUFFER
647 && render_targets[0].resource && render_targets[0].resource->type != WINED3D_RTYPE_BUFFER
648 && render_targets[0].resource->format->id != WINED3DFMT_NULL)
650 rt_texture = wined3d_texture_from_resource(render_targets[0].resource);
651 rt_level = render_targets[0].sub_resource_idx % rt_texture->level_count;
652 ds_texture = wined3d_texture_from_resource(depth_stencil->resource);
653 ds_level = depth_stencil->sub_resource_idx % ds_texture->level_count;
655 if (wined3d_texture_get_level_width(ds_texture, ds_level)
656 < wined3d_texture_get_level_width(rt_texture, rt_level)
657 || wined3d_texture_get_level_height(ds_texture, ds_level)
658 < wined3d_texture_get_level_height(rt_texture, rt_level))
660 WARN("Depth stencil is smaller than the primary color buffer, disabling.\n");
661 depth_stencil = &ds_null;
663 else if (ds_texture->resource.multisample_type != rt_texture->resource.multisample_type
664 || (ds_texture->resource.multisample_type
665 && ds_texture->resource.multisample_quality != rt_texture->resource.multisample_quality))
667 WARN("Color multisample type %u and quality %u, depth stencil has %u and %u, disabling ds buffer.\n",
668 rt_texture->resource.multisample_type, rt_texture->resource.multisample_quality,
669 ds_texture->resource.multisample_type, ds_texture->resource.multisample_quality);
670 depth_stencil = &ds_null;
672 else if (depth_stencil->resource->type == WINED3D_RTYPE_TEXTURE_2D)
674 wined3d_texture_gl_set_compatible_renderbuffer(wined3d_texture_gl(ds_texture),
675 context_gl, ds_level, &render_targets[0]);
679 wined3d_context_gl_generate_fbo_key(context_gl, &fbo_key,
680 render_targets, depth_stencil, color_location, ds_location);
682 if (TRACE_ON(d3d))
684 struct wined3d_resource *resource;
685 unsigned int width, height;
686 const char *resource_type;
688 TRACE("Dumping FBO attachments:\n");
689 for (i = 0; i < gl_info->limits.buffers; ++i)
691 if ((resource = render_targets[i].resource))
693 if (resource->type == WINED3D_RTYPE_BUFFER)
695 width = resource->size;
696 height = 1;
697 resource_type = "buffer";
699 else
701 rt_texture = wined3d_texture_from_resource(resource);
702 rt_level = render_targets[i].sub_resource_idx % rt_texture->level_count;
703 width = wined3d_texture_get_level_pow2_width(rt_texture, rt_level);
704 height = wined3d_texture_get_level_pow2_height(rt_texture, rt_level);
705 resource_type = "texture";
708 TRACE(" Color attachment %u: %p, %u format %s, %s %u, %ux%u, %u samples.\n",
709 i, resource, render_targets[i].sub_resource_idx, debug_d3dformat(resource->format->id),
710 fbo_key.rb_namespace & (1 << (i + 1)) ? "renderbuffer" : resource_type,
711 fbo_key.objects[i + 1].object, width, height, resource->multisample_type);
714 if ((resource = depth_stencil->resource))
716 if (resource->type == WINED3D_RTYPE_BUFFER)
718 width = resource->size;
719 height = 1;
720 resource_type = "buffer";
722 else
724 ds_texture = wined3d_texture_from_resource(resource);
725 ds_level = depth_stencil->sub_resource_idx % ds_texture->level_count;
726 width = wined3d_texture_get_level_pow2_width(ds_texture, ds_level);
727 height = wined3d_texture_get_level_pow2_height(ds_texture, ds_level);
728 resource_type = "texture";
731 TRACE(" Depth attachment: %p, %u format %s, %s %u, %ux%u, %u samples.\n",
732 resource, depth_stencil->sub_resource_idx, debug_d3dformat(resource->format->id),
733 fbo_key.rb_namespace & (1 << 0) ? "renderbuffer" : resource_type,
734 fbo_key.objects[0].object, width, height, resource->multisample_type);
738 LIST_FOR_EACH_ENTRY(entry, &context_gl->fbo_list, struct fbo_entry, entry)
740 if (memcmp(&fbo_key, &entry->key, sizeof(fbo_key)))
741 continue;
743 list_remove(&entry->entry);
744 list_add_head(&context_gl->fbo_list, &entry->entry);
745 return entry;
748 if (context_gl->fbo_entry_count < WINED3D_MAX_FBO_ENTRIES)
750 entry = wined3d_context_gl_create_fbo_entry(context_gl,
751 render_targets, depth_stencil, color_location, ds_location);
752 list_add_head(&context_gl->fbo_list, &entry->entry);
753 ++context_gl->fbo_entry_count;
755 else
757 entry = LIST_ENTRY(list_tail(&context_gl->fbo_list), struct fbo_entry, entry);
758 wined3d_context_gl_reuse_fbo_entry(context_gl, target, render_targets,
759 depth_stencil, color_location, ds_location, entry);
760 list_remove(&entry->entry);
761 list_add_head(&context_gl->fbo_list, &entry->entry);
764 return entry;
767 /* Context activation is done by the caller. */
768 static void wined3d_context_gl_apply_fbo_entry(struct wined3d_context_gl *context_gl,
769 GLenum target, struct fbo_entry *entry)
771 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
772 GLuint read_binding, draw_binding;
773 unsigned int i;
775 if (entry->flags & WINED3D_FBO_ENTRY_FLAG_ATTACHED)
777 wined3d_context_gl_bind_fbo(context_gl, target, entry->id);
778 return;
781 read_binding = context_gl->fbo_read_binding;
782 draw_binding = context_gl->fbo_draw_binding;
783 wined3d_context_gl_bind_fbo(context_gl, GL_FRAMEBUFFER, entry->id);
785 if (gl_info->supported[ARB_FRAMEBUFFER_NO_ATTACHMENTS])
787 GL_EXTCALL(glFramebufferParameteri(GL_FRAMEBUFFER,
788 GL_FRAMEBUFFER_DEFAULT_WIDTH, gl_info->limits.framebuffer_width));
789 GL_EXTCALL(glFramebufferParameteri(GL_FRAMEBUFFER,
790 GL_FRAMEBUFFER_DEFAULT_HEIGHT, gl_info->limits.framebuffer_height));
791 GL_EXTCALL(glFramebufferParameteri(GL_FRAMEBUFFER, GL_FRAMEBUFFER_DEFAULT_LAYERS, 1));
792 GL_EXTCALL(glFramebufferParameteri(GL_FRAMEBUFFER, GL_FRAMEBUFFER_DEFAULT_SAMPLES, 1));
795 /* Apply render targets */
796 for (i = 0; i < gl_info->limits.buffers; ++i)
798 wined3d_context_gl_attach_surface_fbo(context_gl, target, i,
799 &entry->key.objects[i + 1], entry->key.rb_namespace & (1 << (i + 1)));
802 wined3d_context_gl_attach_depth_stencil_fbo(context_gl, target,
803 &entry->key.objects[0], entry->key.rb_namespace & 0x1, entry->flags);
805 /* Set valid read and draw buffer bindings to satisfy pedantic pre-ES2_compatibility
806 * GL contexts requirements. */
807 gl_info->gl_ops.gl.p_glReadBuffer(GL_NONE);
808 wined3d_context_gl_set_draw_buffer(context_gl, GL_NONE);
809 if (target != GL_FRAMEBUFFER)
811 if (target == GL_READ_FRAMEBUFFER)
812 wined3d_context_gl_bind_fbo(context_gl, GL_DRAW_FRAMEBUFFER, draw_binding);
813 else
814 wined3d_context_gl_bind_fbo(context_gl, GL_READ_FRAMEBUFFER, read_binding);
817 entry->flags |= WINED3D_FBO_ENTRY_FLAG_ATTACHED;
820 /* Context activation is done by the caller. */
821 static void wined3d_context_gl_apply_fbo_state(struct wined3d_context_gl *context_gl, GLenum target,
822 const struct wined3d_rendertarget_info *render_targets,
823 const struct wined3d_rendertarget_info *depth_stencil, DWORD color_location, DWORD ds_location)
825 struct fbo_entry *entry, *entry2;
827 LIST_FOR_EACH_ENTRY_SAFE(entry, entry2, &context_gl->fbo_destroy_list, struct fbo_entry, entry)
829 wined3d_context_gl_destroy_fbo_entry(context_gl, entry);
832 if (context_gl->rebind_fbo)
834 wined3d_context_gl_bind_fbo(context_gl, GL_FRAMEBUFFER, 0);
835 context_gl->rebind_fbo = FALSE;
838 if (color_location == WINED3D_LOCATION_DRAWABLE)
840 context_gl->current_fbo = NULL;
841 wined3d_context_gl_bind_fbo(context_gl, target, 0);
843 else
845 context_gl->current_fbo = wined3d_context_gl_find_fbo_entry(context_gl,
846 target, render_targets, depth_stencil, color_location, ds_location);
847 wined3d_context_gl_apply_fbo_entry(context_gl, target, context_gl->current_fbo);
851 /* Context activation is done by the caller. */
852 void wined3d_context_gl_apply_fbo_state_blit(struct wined3d_context_gl *context_gl, GLenum target,
853 struct wined3d_resource *rt, unsigned int rt_sub_resource_idx,
854 struct wined3d_resource *ds, unsigned int ds_sub_resource_idx, uint32_t location)
856 struct wined3d_rendertarget_info ds_info = {{0}};
858 memset(context_gl->blit_targets, 0, sizeof(context_gl->blit_targets));
859 if (rt)
861 context_gl->blit_targets[0].resource = rt;
862 context_gl->blit_targets[0].sub_resource_idx = rt_sub_resource_idx;
863 context_gl->blit_targets[0].layer_count = 1;
866 if (ds)
868 ds_info.resource = ds;
869 ds_info.sub_resource_idx = ds_sub_resource_idx;
870 ds_info.layer_count = 1;
873 wined3d_context_gl_apply_fbo_state(context_gl, target, context_gl->blit_targets, &ds_info, location, location);
876 /* Context activation is done by the caller. */
877 void wined3d_context_gl_alloc_occlusion_query(struct wined3d_context_gl *context_gl,
878 struct wined3d_occlusion_query *query)
880 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
882 if (context_gl->free_occlusion_query_count)
884 query->id = context_gl->free_occlusion_queries[--context_gl->free_occlusion_query_count];
886 else
888 if (gl_info->supported[ARB_OCCLUSION_QUERY])
890 GL_EXTCALL(glGenQueries(1, &query->id));
891 checkGLcall("glGenQueries");
893 TRACE("Allocated occlusion query %u in context %p.\n", query->id, context_gl);
895 else
897 WARN("Occlusion queries not supported, not allocating query id.\n");
898 query->id = 0;
902 query->context_gl = context_gl;
903 list_add_head(&context_gl->occlusion_queries, &query->entry);
906 void wined3d_context_gl_free_occlusion_query(struct wined3d_occlusion_query *query)
908 struct wined3d_context_gl *context_gl = query->context_gl;
910 list_remove(&query->entry);
911 query->context_gl = NULL;
913 if (!wined3d_array_reserve((void **)&context_gl->free_occlusion_queries,
914 &context_gl->free_occlusion_query_size, context_gl->free_occlusion_query_count + 1,
915 sizeof(*context_gl->free_occlusion_queries)))
917 ERR("Failed to grow free list, leaking query %u in context %p.\n", query->id, context_gl);
918 return;
921 context_gl->free_occlusion_queries[context_gl->free_occlusion_query_count++] = query->id;
924 /* Context activation is done by the caller. */
925 void wined3d_context_gl_alloc_fence(struct wined3d_context_gl *context_gl, struct wined3d_fence *fence)
927 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
929 if (context_gl->free_fence_count)
931 fence->object = context_gl->free_fences[--context_gl->free_fence_count];
933 else
935 if (gl_info->supported[ARB_SYNC])
937 /* Using ARB_sync, not much to do here. */
938 fence->object.sync = NULL;
939 TRACE("Allocated sync object in context %p.\n", context_gl);
941 else if (gl_info->supported[APPLE_FENCE])
943 GL_EXTCALL(glGenFencesAPPLE(1, &fence->object.id));
944 checkGLcall("glGenFencesAPPLE");
946 TRACE("Allocated fence %u in context %p.\n", fence->object.id, context_gl);
948 else if(gl_info->supported[NV_FENCE])
950 GL_EXTCALL(glGenFencesNV(1, &fence->object.id));
951 checkGLcall("glGenFencesNV");
953 TRACE("Allocated fence %u in context %p.\n", fence->object.id, context_gl);
955 else
957 WARN("Fences not supported, not allocating fence.\n");
958 fence->object.id = 0;
962 fence->context_gl = context_gl;
963 list_add_head(&context_gl->fences, &fence->entry);
966 void wined3d_context_gl_free_fence(struct wined3d_fence *fence)
968 struct wined3d_context_gl *context_gl = fence->context_gl;
970 list_remove(&fence->entry);
971 fence->context_gl = NULL;
973 if (!wined3d_array_reserve((void **)&context_gl->free_fences,
974 &context_gl->free_fence_size, context_gl->free_fence_count + 1,
975 sizeof(*context_gl->free_fences)))
977 ERR("Failed to grow free list, leaking fence %u in context %p.\n", fence->object.id, context_gl);
978 return;
981 context_gl->free_fences[context_gl->free_fence_count++] = fence->object;
984 /* Context activation is done by the caller. */
985 void wined3d_context_gl_alloc_timestamp_query(struct wined3d_context_gl *context_gl,
986 struct wined3d_timestamp_query *query)
988 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
990 if (context_gl->free_timestamp_query_count)
992 query->id = context_gl->free_timestamp_queries[--context_gl->free_timestamp_query_count];
994 else
996 GL_EXTCALL(glGenQueries(1, &query->id));
997 checkGLcall("glGenQueries");
999 TRACE("Allocated timestamp query %u in context %p.\n", query->id, context_gl);
1002 query->context_gl = context_gl;
1003 list_add_head(&context_gl->timestamp_queries, &query->entry);
1006 void wined3d_context_gl_free_timestamp_query(struct wined3d_timestamp_query *query)
1008 struct wined3d_context_gl *context_gl = query->context_gl;
1010 list_remove(&query->entry);
1011 query->context_gl = NULL;
1013 if (!wined3d_array_reserve((void **)&context_gl->free_timestamp_queries,
1014 &context_gl->free_timestamp_query_size, context_gl->free_timestamp_query_count + 1,
1015 sizeof(*context_gl->free_timestamp_queries)))
1017 ERR("Failed to grow free list, leaking query %u in context %p.\n", query->id, context_gl);
1018 return;
1021 context_gl->free_timestamp_queries[context_gl->free_timestamp_query_count++] = query->id;
1024 void wined3d_context_gl_alloc_so_statistics_query(struct wined3d_context_gl *context_gl,
1025 struct wined3d_so_statistics_query *query)
1027 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
1029 if (context_gl->free_so_statistics_query_count)
1031 query->u = context_gl->free_so_statistics_queries[--context_gl->free_so_statistics_query_count];
1033 else
1035 GL_EXTCALL(glGenQueries(ARRAY_SIZE(query->u.id), query->u.id));
1036 checkGLcall("glGenQueries");
1038 TRACE("Allocated SO statistics queries %u, %u in context %p.\n",
1039 query->u.id[0], query->u.id[1], context_gl);
1042 query->context_gl = context_gl;
1043 list_add_head(&context_gl->so_statistics_queries, &query->entry);
1046 void wined3d_context_gl_free_so_statistics_query(struct wined3d_so_statistics_query *query)
1048 struct wined3d_context_gl *context_gl = query->context_gl;
1050 list_remove(&query->entry);
1051 query->context_gl = NULL;
1053 if (!wined3d_array_reserve((void **)&context_gl->free_so_statistics_queries,
1054 &context_gl->free_so_statistics_query_size, context_gl->free_so_statistics_query_count + 1,
1055 sizeof(*context_gl->free_so_statistics_queries)))
1057 ERR("Failed to grow free list, leaking GL queries %u, %u in context %p.\n",
1058 query->u.id[0], query->u.id[1], context_gl);
1059 return;
1062 context_gl->free_so_statistics_queries[context_gl->free_so_statistics_query_count++] = query->u;
1065 void wined3d_context_gl_alloc_pipeline_statistics_query(struct wined3d_context_gl *context_gl,
1066 struct wined3d_pipeline_statistics_query *query)
1068 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
1070 if (context_gl->free_pipeline_statistics_query_count)
1072 query->u = context_gl->free_pipeline_statistics_queries[--context_gl->free_pipeline_statistics_query_count];
1074 else
1076 GL_EXTCALL(glGenQueries(ARRAY_SIZE(query->u.id), query->u.id));
1077 checkGLcall("glGenQueries");
1080 query->context_gl = context_gl;
1081 list_add_head(&context_gl->pipeline_statistics_queries, &query->entry);
1084 void wined3d_context_gl_free_pipeline_statistics_query(struct wined3d_pipeline_statistics_query *query)
1086 struct wined3d_context_gl *context_gl = query->context_gl;
1088 list_remove(&query->entry);
1089 query->context_gl = NULL;
1091 if (!wined3d_array_reserve((void **)&context_gl->free_pipeline_statistics_queries,
1092 &context_gl->free_pipeline_statistics_query_size, context_gl->free_pipeline_statistics_query_count + 1,
1093 sizeof(*context_gl->free_pipeline_statistics_queries)))
1095 ERR("Failed to grow free list, leaking GL queries in context %p.\n", context_gl);
1096 return;
1099 context_gl->free_pipeline_statistics_queries[context_gl->free_pipeline_statistics_query_count++] = query->u;
1102 typedef void (context_fbo_entry_func_t)(struct wined3d_context_gl *context_gl, struct fbo_entry *entry);
1104 static void wined3d_context_gl_enum_fbo_entries(const struct wined3d_device *device,
1105 GLuint name, BOOL rb_namespace, context_fbo_entry_func_t *callback)
1107 unsigned int i, j;
1109 for (i = 0; i < device->context_count; ++i)
1111 struct wined3d_context_gl *context_gl = wined3d_context_gl(device->contexts[i]);
1112 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
1113 struct fbo_entry *entry, *entry2;
1115 LIST_FOR_EACH_ENTRY_SAFE(entry, entry2, &context_gl->fbo_list, struct fbo_entry, entry)
1117 for (j = 0; j < gl_info->limits.buffers + 1; ++j)
1119 if (entry->key.objects[j].object == name
1120 && !(entry->key.rb_namespace & (1 << j)) == !rb_namespace)
1122 callback(context_gl, entry);
1123 break;
1130 static void wined3d_context_gl_queue_fbo_entry_destruction(struct wined3d_context_gl *context_gl,
1131 struct fbo_entry *entry)
1133 list_remove(&entry->entry);
1134 list_add_head(&context_gl->fbo_destroy_list, &entry->entry);
1137 void context_gl_resource_released(struct wined3d_device *device, GLuint name, BOOL rb_namespace)
1139 wined3d_context_gl_enum_fbo_entries(device, name, rb_namespace,
1140 wined3d_context_gl_queue_fbo_entry_destruction);
1143 void wined3d_context_gl_texture_update(struct wined3d_context_gl *context_gl,
1144 const struct wined3d_texture_gl *texture_gl)
1146 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
1147 struct fbo_entry *entry = context_gl->current_fbo;
1148 unsigned int i;
1150 if (!entry || context_gl->rebind_fbo)
1151 return;
1153 for (i = 0; i < gl_info->limits.buffers + 1; ++i)
1155 if (texture_gl->texture_rgb.name == entry->key.objects[i].object
1156 || texture_gl->texture_srgb.name == entry->key.objects[i].object)
1158 TRACE("Updated texture %p is bound as attachment %u to the current FBO.\n", texture_gl, i);
1159 context_gl->rebind_fbo = TRUE;
1160 return;
1165 static BOOL wined3d_context_gl_restore_pixel_format(struct wined3d_context_gl *context_gl)
1167 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
1168 BOOL ret = FALSE;
1170 if (context_gl->restore_pf && IsWindow(context_gl->restore_pf_win))
1172 if (gl_info->supported[WGL_WINE_PIXEL_FORMAT_PASSTHROUGH])
1174 HDC dc = GetDCEx(context_gl->restore_pf_win, 0, DCX_USESTYLE | DCX_CACHE);
1175 if (dc)
1177 if (!(ret = GL_EXTCALL(wglSetPixelFormatWINE(dc, context_gl->restore_pf))))
1179 ERR("Failed to restore pixel format %d on window %p.\n",
1180 context_gl->restore_pf, context_gl->restore_pf_win);
1182 ReleaseDC(context_gl->restore_pf_win, dc);
1185 else
1187 ERR("Unable to restore pixel format %d on window %p.\n",
1188 context_gl->restore_pf, context_gl->restore_pf_win);
1192 context_gl->restore_pf = 0;
1193 context_gl->restore_pf_win = NULL;
1194 return ret;
1197 static BOOL wined3d_context_gl_set_pixel_format(struct wined3d_context_gl *context_gl)
1199 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
1200 BOOL private = context_gl->dc_is_private;
1201 int format = context_gl->pixel_format;
1202 HDC dc = context_gl->dc;
1203 int current;
1204 HWND win;
1206 if (private && context_gl->dc_has_format)
1207 return TRUE;
1209 if (!private && WindowFromDC(dc) != context_gl->window)
1210 return FALSE;
1212 current = gl_info->gl_ops.wgl.p_wglGetPixelFormat(dc);
1213 if (current == format) goto success;
1215 /* By default WGL doesn't allow pixel format adjustments but we need it
1216 * here. For this reason there's a Wine specific wglSetPixelFormat()
1217 * which allows us to set the pixel format multiple times. Use it when we
1218 * can, because even though no pixel format may currently be set, the
1219 * application may try to set one later. */
1220 if (gl_info->supported[WGL_WINE_PIXEL_FORMAT_PASSTHROUGH])
1222 if (!GL_EXTCALL(wglSetPixelFormatWINE(dc, format)))
1224 ERR("wglSetPixelFormatWINE failed to set pixel format %d on device context %p.\n",
1225 format, dc);
1226 return FALSE;
1229 else if (current)
1231 /* OpenGL doesn't allow pixel format adjustments. Print an error and
1232 * continue using the old format. There's a big chance that the old
1233 * format works although with a performance hit and perhaps rendering
1234 * errors. */
1235 ERR("Unable to set pixel format %d on device context %p. Already using format %d.\n",
1236 format, dc, current);
1237 return TRUE;
1239 else if (!SetPixelFormat(dc, format, NULL))
1241 /* This may also happen if the dc belongs to a destroyed window. */
1242 WARN("Failed to set pixel format %d on device context %p, last error %#lx.\n",
1243 format, dc, GetLastError());
1244 return FALSE;
1247 win = private ? NULL : WindowFromDC(dc);
1248 if (win != context_gl->restore_pf_win)
1249 wined3d_context_gl_restore_pixel_format(context_gl);
1250 context_gl->restore_pf = private ? 0 : current;
1251 context_gl->restore_pf_win = win;
1253 success:
1254 if (private)
1255 context_gl->dc_has_format = TRUE;
1256 return TRUE;
1259 static BOOL wined3d_context_gl_set_gl_context(struct wined3d_context_gl *context_gl)
1261 struct wined3d_device_gl *device_gl = wined3d_device_gl(context_gl->c.device);
1262 BOOL backup = FALSE;
1264 TRACE("context_gl %p.\n", context_gl);
1266 if (!wined3d_context_gl_set_pixel_format(context_gl))
1268 WARN("Failed to set pixel format %d on device context %p.\n",
1269 context_gl->pixel_format, context_gl->dc);
1270 backup = TRUE;
1273 if (backup || !wglMakeCurrent(context_gl->dc, context_gl->gl_ctx))
1275 WARN("Failed to make GL context %p current on device context %p, last error %#lx.\n",
1276 context_gl->gl_ctx, context_gl->dc, GetLastError());
1277 context_gl->valid = 0;
1278 WARN("Trying fallback to the backup window.\n");
1280 if (context_gl->c.destroyed)
1282 FIXME("Unable to get backup dc for destroyed context %p.\n", context_gl);
1283 wined3d_context_gl_set_current(NULL);
1284 return FALSE;
1287 if (!(context_gl->dc = wined3d_device_gl_get_backup_dc(device_gl)))
1289 wined3d_context_gl_set_current(NULL);
1290 return FALSE;
1293 TRACE("Using backup DC %p.\n", context_gl->dc);
1294 context_gl->dc_is_private = TRUE;
1295 context_gl->dc_has_format = FALSE;
1297 if (!wined3d_context_gl_set_pixel_format(context_gl))
1299 ERR("Failed to set pixel format %d on device context %p.\n",
1300 context_gl->pixel_format, context_gl->dc);
1301 wined3d_context_gl_set_current(NULL);
1302 return FALSE;
1305 if (!wglMakeCurrent(context_gl->dc, context_gl->gl_ctx))
1307 ERR("Fallback to backup window (dc %p) failed too, last error %#lx.\n",
1308 context_gl->dc, GetLastError());
1309 wined3d_context_gl_set_current(NULL);
1310 return FALSE;
1313 context_gl->valid = 1;
1315 context_gl->needs_set = 0;
1317 return TRUE;
1320 static void context_restore_gl_context(const struct wined3d_gl_info *gl_info, HDC dc, HGLRC gl_ctx)
1322 if (!wglMakeCurrent(dc, gl_ctx))
1324 ERR("Failed to restore GL context %p on device context %p, last error %#lx.\n",
1325 gl_ctx, dc, GetLastError());
1326 wined3d_context_gl_set_current(NULL);
1330 static void wined3d_context_gl_update_window(struct wined3d_context_gl *context_gl)
1332 if (!context_gl->c.swapchain)
1333 return;
1335 if (context_gl->window == context_gl->c.swapchain->win_handle)
1336 return;
1338 TRACE("Updating context %p window from %p to %p.\n",
1339 context_gl, context_gl->window, context_gl->c.swapchain->win_handle);
1341 if (context_gl->dc)
1342 wined3d_release_dc(context_gl->window, context_gl->dc);
1344 context_gl->window = context_gl->c.swapchain->win_handle;
1345 context_gl->dc_is_private = FALSE;
1346 context_gl->dc_has_format = FALSE;
1347 context_gl->needs_set = 1;
1348 context_gl->valid = 1;
1350 if (!(context_gl->dc = GetDCEx(context_gl->window, 0, DCX_USESTYLE | DCX_CACHE)))
1352 ERR("Failed to get a device context for window %p.\n", context_gl->window);
1353 context_gl->valid = 0;
1357 static void wined3d_context_gl_cleanup(struct wined3d_context_gl *context_gl)
1359 struct wined3d_pipeline_statistics_query *pipeline_statistics_query;
1360 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
1361 struct wined3d_so_statistics_query *so_statistics_query;
1362 struct wined3d_timestamp_query *timestamp_query;
1363 struct wined3d_occlusion_query *occlusion_query;
1364 struct wined3d_context_gl *current;
1365 struct fbo_entry *entry, *entry2;
1366 struct wined3d_fence *fence;
1367 HGLRC restore_ctx;
1368 HDC restore_dc;
1369 unsigned int i;
1371 TRACE("context_gl %p.\n", context_gl);
1373 restore_ctx = wglGetCurrentContext();
1374 restore_dc = wglGetCurrentDC();
1376 if (context_gl->valid && context_gl->gl_ctx != restore_ctx)
1378 /* Attempting to restore a GL context corresponding to a wined3d
1379 * context is not particularly useful. Worse, when we're called from
1380 * wined3d_context_gl_destroy(), we subsequently clear the "current
1381 * D3D context" TLS value, which would cause
1382 * wined3d_context_gl_enter() to consider the GL context a non-D3D
1383 * context. */
1384 if ((current = wined3d_context_gl_get_current()) && current->gl_ctx == restore_ctx)
1385 restore_ctx = NULL;
1386 wined3d_context_gl_set_gl_context(context_gl);
1388 else
1390 restore_ctx = NULL;
1393 if (context_gl->valid)
1395 /* If we're here because we're switching away from a previously
1396 * destroyed context, acquiring a context in order to submit a fence
1397 * is problematic. In particular, we'd end up back here again in the
1398 * process of switching to the newly acquired context.
1400 * If fences aren't supported there should be nothing to wait for
1401 * anyway, so just do nothing in that case. */
1402 if (context_gl->c.destroyed)
1404 gl_info->gl_ops.gl.p_glFinish();
1406 else if (context_gl->c.d3d_info->fences)
1408 wined3d_context_gl_submit_command_fence(context_gl);
1409 wined3d_context_gl_wait_command_fence(context_gl,
1410 wined3d_device_gl(context_gl->c.device)->current_fence_id - 1);
1413 if (context_gl->dummy_arbfp_prog)
1414 GL_EXTCALL(glDeleteProgramsARB(1, &context_gl->dummy_arbfp_prog));
1416 if (context_gl->blit_vbo)
1417 GL_EXTCALL(glDeleteBuffers(1, &context_gl->blit_vbo));
1419 for (i = 0; i < context_gl->free_pipeline_statistics_query_count; ++i)
1421 union wined3d_gl_pipeline_statistics_query *q = &context_gl->free_pipeline_statistics_queries[i];
1422 GL_EXTCALL(glDeleteQueries(ARRAY_SIZE(q->id), q->id));
1425 for (i = 0; i < context_gl->free_so_statistics_query_count; ++i)
1427 union wined3d_gl_so_statistics_query *q = &context_gl->free_so_statistics_queries[i];
1428 GL_EXTCALL(glDeleteQueries(ARRAY_SIZE(q->id), q->id));
1431 if (context_gl->free_timestamp_query_count)
1432 GL_EXTCALL(glDeleteQueries(context_gl->free_timestamp_query_count, context_gl->free_timestamp_queries));
1434 if (gl_info->supported[ARB_SYNC])
1436 for (i = 0; i < context_gl->free_fence_count; ++i)
1438 GL_EXTCALL(glDeleteSync(context_gl->free_fences[i].sync));
1441 else if (gl_info->supported[APPLE_FENCE])
1443 for (i = 0; i < context_gl->free_fence_count; ++i)
1445 GL_EXTCALL(glDeleteFencesAPPLE(1, &context_gl->free_fences[i].id));
1448 else if (gl_info->supported[NV_FENCE])
1450 for (i = 0; i < context_gl->free_fence_count; ++i)
1452 GL_EXTCALL(glDeleteFencesNV(1, &context_gl->free_fences[i].id));
1456 if (context_gl->free_occlusion_query_count)
1457 GL_EXTCALL(glDeleteQueries(context_gl->free_occlusion_query_count, context_gl->free_occlusion_queries));
1459 checkGLcall("context cleanup");
1461 heap_free(context_gl->submitted.fences);
1462 heap_free(context_gl->free_pipeline_statistics_queries);
1463 heap_free(context_gl->free_so_statistics_queries);
1464 heap_free(context_gl->free_timestamp_queries);
1465 heap_free(context_gl->free_fences);
1466 heap_free(context_gl->free_occlusion_queries);
1468 LIST_FOR_EACH_ENTRY(pipeline_statistics_query, &context_gl->pipeline_statistics_queries,
1469 struct wined3d_pipeline_statistics_query, entry)
1471 if (context_gl->valid)
1472 GL_EXTCALL(glDeleteQueries(ARRAY_SIZE(pipeline_statistics_query->u.id), pipeline_statistics_query->u.id));
1473 pipeline_statistics_query->context_gl = NULL;
1476 LIST_FOR_EACH_ENTRY(so_statistics_query, &context_gl->so_statistics_queries,
1477 struct wined3d_so_statistics_query, entry)
1479 if (context_gl->valid)
1480 GL_EXTCALL(glDeleteQueries(ARRAY_SIZE(so_statistics_query->u.id), so_statistics_query->u.id));
1481 so_statistics_query->context_gl = NULL;
1484 LIST_FOR_EACH_ENTRY(timestamp_query, &context_gl->timestamp_queries, struct wined3d_timestamp_query, entry)
1486 if (context_gl->valid)
1487 GL_EXTCALL(glDeleteQueries(1, &timestamp_query->id));
1488 timestamp_query->context_gl = NULL;
1491 LIST_FOR_EACH_ENTRY(fence, &context_gl->fences, struct wined3d_fence, entry)
1493 if (context_gl->valid)
1495 if (gl_info->supported[ARB_SYNC])
1497 if (fence->object.sync)
1498 GL_EXTCALL(glDeleteSync(fence->object.sync));
1500 else if (gl_info->supported[APPLE_FENCE])
1502 GL_EXTCALL(glDeleteFencesAPPLE(1, &fence->object.id));
1504 else if (gl_info->supported[NV_FENCE])
1506 GL_EXTCALL(glDeleteFencesNV(1, &fence->object.id));
1509 fence->context_gl = NULL;
1512 LIST_FOR_EACH_ENTRY(occlusion_query, &context_gl->occlusion_queries, struct wined3d_occlusion_query, entry)
1514 if (context_gl->valid)
1515 GL_EXTCALL(glDeleteQueries(1, &occlusion_query->id));
1516 occlusion_query->context_gl = NULL;
1519 LIST_FOR_EACH_ENTRY_SAFE(entry, entry2, &context_gl->fbo_destroy_list, struct fbo_entry, entry)
1521 if (!context_gl->valid)
1522 entry->id = 0;
1523 wined3d_context_gl_destroy_fbo_entry(context_gl, entry);
1526 LIST_FOR_EACH_ENTRY_SAFE(entry, entry2, &context_gl->fbo_list, struct fbo_entry, entry)
1528 if (!context_gl->valid)
1529 entry->id = 0;
1530 wined3d_context_gl_destroy_fbo_entry(context_gl, entry);
1533 heap_free(context_gl->texture_type);
1535 wined3d_context_gl_restore_pixel_format(context_gl);
1536 if (restore_ctx)
1537 context_restore_gl_context(gl_info, restore_dc, restore_ctx);
1538 else if (wglGetCurrentContext() && !wglMakeCurrent(NULL, NULL))
1539 ERR("Failed to disable GL context.\n");
1541 wined3d_release_dc(context_gl->window, context_gl->dc);
1543 if (!wglDeleteContext(context_gl->gl_ctx))
1545 unsigned int err = GetLastError();
1546 ERR("Failed to delete GL context %p, last error %#x.\n", context_gl->gl_ctx, err);
1549 wined3d_context_cleanup(&context_gl->c);
1552 DWORD context_get_tls_idx(void)
1554 return wined3d_context_tls_idx;
1557 void context_set_tls_idx(DWORD idx)
1559 wined3d_context_tls_idx = idx;
1562 struct wined3d_context_gl *wined3d_context_gl_get_current(void)
1564 return TlsGetValue(wined3d_context_tls_idx);
1567 BOOL wined3d_context_gl_set_current(struct wined3d_context_gl *context_gl)
1569 struct wined3d_context_gl *old = wined3d_context_gl_get_current();
1571 if (old == context_gl)
1573 TRACE("Already using D3D context %p.\n", context_gl);
1574 return TRUE;
1577 if (old)
1579 if (old->c.destroyed)
1581 TRACE("Switching away from destroyed context %p.\n", old);
1582 wined3d_context_gl_cleanup(old);
1583 heap_free((void *)old->gl_info);
1584 heap_free(old);
1586 else
1588 if (wglGetCurrentContext())
1590 const struct wined3d_gl_info *gl_info = old->gl_info;
1591 TRACE("Flushing context %p before switching to %p.\n", old, context_gl);
1592 gl_info->gl_ops.gl.p_glFlush();
1594 old->c.current = 0;
1598 if (context_gl)
1600 if (!context_gl->valid)
1602 ERR("Trying to make invalid context %p current.\n", context_gl);
1603 return FALSE;
1606 TRACE("Switching to D3D context %p, GL context %p, device context %p.\n",
1607 context_gl, context_gl->gl_ctx, context_gl->dc);
1608 if (!wined3d_context_gl_set_gl_context(context_gl))
1609 return FALSE;
1610 context_gl->c.current = 1;
1612 else if (wglGetCurrentContext())
1614 TRACE("Clearing current D3D context.\n");
1615 if (!wglMakeCurrent(NULL, NULL))
1617 unsigned int err = GetLastError();
1618 ERR("Failed to clear current GL context, last error %#x.\n", err);
1619 TlsSetValue(wined3d_context_tls_idx, NULL);
1620 return FALSE;
1624 return TlsSetValue(wined3d_context_tls_idx, context_gl);
1627 void wined3d_context_gl_release(struct wined3d_context_gl *context_gl)
1629 TRACE("Releasing context %p, level %u.\n", context_gl, context_gl->level);
1631 if (WARN_ON(d3d))
1633 if (!context_gl->level)
1634 WARN("Context %p is not active.\n", context_gl);
1635 else if (context_gl != wined3d_context_gl_get_current())
1636 WARN("Context %p is not the current context.\n", context_gl);
1639 if (!--context_gl->level)
1641 if (wined3d_context_gl_restore_pixel_format(context_gl))
1642 context_gl->needs_set = 1;
1643 if (context_gl->restore_ctx)
1645 TRACE("Restoring GL context %p on device context %p.\n", context_gl->restore_ctx, context_gl->restore_dc);
1646 context_restore_gl_context(context_gl->gl_info, context_gl->restore_dc, context_gl->restore_ctx);
1647 context_gl->restore_ctx = NULL;
1648 context_gl->restore_dc = NULL;
1651 if (context_gl->c.destroy_delayed)
1653 TRACE("Destroying context %p.\n", context_gl);
1654 wined3d_context_gl_destroy(context_gl);
1659 static void wined3d_context_gl_enter(struct wined3d_context_gl *context_gl)
1661 TRACE("Entering context %p, level %u.\n", context_gl, context_gl->level + 1);
1663 if (!context_gl->level++)
1665 const struct wined3d_context_gl *current_context = wined3d_context_gl_get_current();
1666 HGLRC current_gl = wglGetCurrentContext();
1668 if (current_gl && (!current_context || current_context->gl_ctx != current_gl))
1670 TRACE("Another GL context (%p on device context %p) is already current.\n",
1671 current_gl, wglGetCurrentDC());
1672 context_gl->restore_ctx = current_gl;
1673 context_gl->restore_dc = wglGetCurrentDC();
1674 context_gl->needs_set = 1;
1676 else if (!context_gl->needs_set && !(context_gl->dc_is_private && context_gl->dc_has_format)
1677 && context_gl->pixel_format != context_gl->gl_info->gl_ops.wgl.p_wglGetPixelFormat(context_gl->dc))
1678 context_gl->needs_set = 1;
1682 /* This function takes care of wined3d pixel format selection. */
1683 static int context_choose_pixel_format(const struct wined3d_device *device, HDC hdc,
1684 const struct wined3d_format *color_format, const struct wined3d_format *ds_format,
1685 bool aux_buffers, bool swap_effect_copy)
1687 unsigned int cfg_count = wined3d_adapter_gl(device->adapter)->pixel_format_count;
1688 unsigned int current_value;
1689 PIXELFORMATDESCRIPTOR pfd;
1690 int iPixelFormat = 0;
1691 unsigned int i;
1693 TRACE("device %p, dc %p, color_format %s, ds_format %s, aux_buffers %#x, swap_effect_copy %#x.\n",
1694 device, hdc, debug_d3dformat(color_format->id), debug_d3dformat(ds_format->id),
1695 aux_buffers, swap_effect_copy);
1697 current_value = 0;
1698 for (i = 0; i < cfg_count; ++i)
1700 const struct wined3d_pixel_format *cfg = &wined3d_adapter_gl(device->adapter)->pixel_formats[i];
1701 unsigned int value;
1703 /* For now only accept RGBA formats. Perhaps some day we will
1704 * allow floating point formats for pbuffers. */
1705 if (cfg->iPixelType != WGL_TYPE_RGBA_ARB)
1706 continue;
1707 /* In window mode we need a window drawable format and double buffering. */
1708 if (!(cfg->windowDrawable && cfg->doubleBuffer))
1709 continue;
1710 if (cfg->redSize < color_format->red_size)
1711 continue;
1712 if (cfg->greenSize < color_format->green_size)
1713 continue;
1714 if (cfg->blueSize < color_format->blue_size)
1715 continue;
1716 if (cfg->alphaSize < color_format->alpha_size)
1717 continue;
1718 if (cfg->depthSize < ds_format->depth_size)
1719 continue;
1720 if (ds_format->stencil_size && cfg->stencilSize != ds_format->stencil_size)
1721 continue;
1722 /* Check multisampling support. */
1723 if (cfg->numSamples)
1724 continue;
1726 value = 1;
1727 if (swap_effect_copy && cfg->swap_method == WGL_SWAP_COPY_ARB)
1728 value += 1;
1729 /* We try to locate a format which matches our requirements exactly. In case of
1730 * depth it is no problem to emulate 16-bit using e.g. 24-bit, so accept that. */
1731 if (cfg->depthSize == ds_format->depth_size)
1732 value += 2;
1733 if (cfg->stencilSize == ds_format->stencil_size)
1734 value += 4;
1735 if (cfg->alphaSize == color_format->alpha_size)
1736 value += 8;
1737 /* We like to have aux buffers in backbuffer mode */
1738 if (aux_buffers && cfg->auxBuffers)
1739 value += 16;
1740 if (cfg->redSize == color_format->red_size
1741 && cfg->greenSize == color_format->green_size
1742 && cfg->blueSize == color_format->blue_size)
1743 value += 32;
1745 if (value > current_value)
1747 iPixelFormat = cfg->iPixelFormat;
1748 current_value = value;
1752 if (!iPixelFormat)
1754 ERR("Trying to locate a compatible pixel format because an exact match failed.\n");
1756 memset(&pfd, 0, sizeof(pfd));
1757 pfd.nSize = sizeof(pfd);
1758 pfd.nVersion = 1;
1759 pfd.dwFlags = PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER | PFD_DRAW_TO_WINDOW;/*PFD_GENERIC_ACCELERATED*/
1760 pfd.iPixelType = PFD_TYPE_RGBA;
1761 pfd.cAlphaBits = color_format->alpha_size;
1762 pfd.cColorBits = color_format->red_size + color_format->green_size
1763 + color_format->blue_size + color_format->alpha_size;
1764 pfd.cDepthBits = ds_format->depth_size;
1765 pfd.cStencilBits = ds_format->stencil_size;
1766 pfd.iLayerType = PFD_MAIN_PLANE;
1768 if (!(iPixelFormat = ChoosePixelFormat(hdc, &pfd)))
1770 /* Something is very wrong as ChoosePixelFormat() barely fails. */
1771 ERR("Can't find a suitable pixel format.\n");
1772 return 0;
1776 TRACE("Found iPixelFormat=%d for ColorFormat=%s, DepthStencilFormat=%s.\n",
1777 iPixelFormat, debug_d3dformat(color_format->id), debug_d3dformat(ds_format->id));
1778 return iPixelFormat;
1781 /* Context activation is done by the caller. */
1782 void wined3d_context_gl_bind_dummy_textures(const struct wined3d_context_gl *context_gl)
1784 const struct wined3d_dummy_textures *textures = &wined3d_device_gl(context_gl->c.device)->dummy_textures;
1785 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
1786 unsigned int i;
1788 for (i = 0; i < gl_info->limits.combined_samplers; ++i)
1790 GL_EXTCALL(glActiveTexture(GL_TEXTURE0 + i));
1792 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_1D, textures->tex_1d);
1793 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_2D, textures->tex_2d);
1795 if (gl_info->supported[ARB_TEXTURE_RECTANGLE])
1796 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_RECTANGLE_ARB, textures->tex_rect);
1798 if (gl_info->supported[EXT_TEXTURE3D])
1799 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_3D, textures->tex_3d);
1801 if (gl_info->supported[ARB_TEXTURE_CUBE_MAP])
1802 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_CUBE_MAP, textures->tex_cube);
1804 if (gl_info->supported[ARB_TEXTURE_CUBE_MAP_ARRAY])
1805 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_CUBE_MAP_ARRAY, textures->tex_cube_array);
1807 if (gl_info->supported[EXT_TEXTURE_ARRAY])
1809 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_1D_ARRAY, textures->tex_1d_array);
1810 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_2D_ARRAY, textures->tex_2d_array);
1813 if (gl_info->supported[ARB_TEXTURE_BUFFER_OBJECT])
1814 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_BUFFER, textures->tex_buffer);
1816 if (gl_info->supported[ARB_TEXTURE_MULTISAMPLE])
1818 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, textures->tex_2d_ms);
1819 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_2D_MULTISAMPLE_ARRAY, textures->tex_2d_ms_array);
1823 checkGLcall("bind dummy textures");
1826 void wined3d_check_gl_call(const struct wined3d_gl_info *gl_info,
1827 const char *file, unsigned int line, const char *name)
1829 GLint err;
1831 if (gl_info->supported[ARB_DEBUG_OUTPUT] || (err = gl_info->gl_ops.gl.p_glGetError()) == GL_NO_ERROR)
1833 TRACE("%s call ok %s / %u.\n", name, file, line);
1834 return;
1839 ERR(">>>>>>> %s (%#x) from %s @ %s / %u.\n",
1840 debug_glerror(err), err, name, file,line);
1841 err = gl_info->gl_ops.gl.p_glGetError();
1842 } while (err != GL_NO_ERROR);
1845 static BOOL context_debug_output_enabled(const struct wined3d_gl_info *gl_info)
1847 return gl_info->supported[ARB_DEBUG_OUTPUT]
1848 && (ERR_ON(d3d) || FIXME_ON(d3d) || WARN_ON(d3d_perf));
1851 static void WINE_GLAPI wined3d_debug_callback(GLenum source, GLenum type, GLuint id,
1852 GLenum severity, GLsizei length, const char *message, void *ctx)
1854 switch (type)
1856 case GL_DEBUG_TYPE_ERROR_ARB:
1857 ERR("%p: %s.\n", ctx, debugstr_an(message, length));
1858 break;
1860 case GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB:
1861 case GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB:
1862 case GL_DEBUG_TYPE_PORTABILITY_ARB:
1863 FIXME("%p: %s.\n", ctx, debugstr_an(message, length));
1864 break;
1866 case GL_DEBUG_TYPE_PERFORMANCE_ARB:
1867 WARN_(d3d_perf)("%p: %s.\n", ctx, debugstr_an(message, length));
1868 break;
1870 default:
1871 FIXME("ctx %p, type %#x: %s.\n", ctx, type, debugstr_an(message, length));
1872 break;
1876 HGLRC context_create_wgl_attribs(const struct wined3d_gl_info *gl_info, HDC hdc, HGLRC share_ctx)
1878 HGLRC ctx;
1879 unsigned int ctx_attrib_idx = 0;
1880 GLint ctx_attribs[7], ctx_flags = 0;
1882 if (context_debug_output_enabled(gl_info))
1883 ctx_flags = WGL_CONTEXT_DEBUG_BIT_ARB;
1884 ctx_attribs[ctx_attrib_idx++] = WGL_CONTEXT_MAJOR_VERSION_ARB;
1885 ctx_attribs[ctx_attrib_idx++] = gl_info->selected_gl_version >> 16;
1886 ctx_attribs[ctx_attrib_idx++] = WGL_CONTEXT_MINOR_VERSION_ARB;
1887 ctx_attribs[ctx_attrib_idx++] = gl_info->selected_gl_version & 0xffff;
1888 if (ctx_flags)
1890 ctx_attribs[ctx_attrib_idx++] = WGL_CONTEXT_FLAGS_ARB;
1891 ctx_attribs[ctx_attrib_idx++] = ctx_flags;
1893 ctx_attribs[ctx_attrib_idx] = 0;
1895 if (!(ctx = gl_info->p_wglCreateContextAttribsARB(hdc, share_ctx, ctx_attribs)))
1897 if (gl_info->selected_gl_version >= MAKEDWORD_VERSION(3, 2))
1899 if (ctx_flags)
1901 ctx_flags |= WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB;
1902 ctx_attribs[ctx_attrib_idx - 1] = ctx_flags;
1904 else
1906 ctx_flags = WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB;
1907 ctx_attribs[ctx_attrib_idx++] = WGL_CONTEXT_FLAGS_ARB;
1908 ctx_attribs[ctx_attrib_idx++] = ctx_flags;
1909 ctx_attribs[ctx_attrib_idx] = 0;
1911 if (!(ctx = gl_info->p_wglCreateContextAttribsARB(hdc, share_ctx, ctx_attribs)))
1912 WARN("Failed to create a WGL context with wglCreateContextAttribsARB, last error %#lx.\n",
1913 GetLastError());
1916 return ctx;
1919 static BOOL wined3d_context_gl_create_wgl_ctx(struct wined3d_context_gl *context_gl,
1920 struct wined3d_swapchain_gl *swapchain_gl, BOOL *new_drawable)
1922 enum wined3d_swap_effect swap_effect = swapchain_gl->s.state.desc.swap_effect;
1923 const struct wined3d_format *colour_format, *ds_format;
1924 struct wined3d_context *context = &context_gl->c;
1925 const struct wined3d_gl_info *gl_info;
1926 struct wined3d_resource *target;
1927 struct wined3d_adapter *adapter;
1928 unsigned int target_bind_flags;
1929 struct wined3d_device *device;
1930 bool swap_effect_copy;
1931 HGLRC ctx, share_ctx;
1932 unsigned int i;
1934 device = context->device;
1935 adapter = device->adapter;
1936 gl_info = &adapter->gl_info;
1938 target = &context->current_rt.texture->resource;
1939 target_bind_flags = target->bind_flags;
1941 swap_effect_copy = swap_effect == WINED3D_SWAP_EFFECT_COPY || swap_effect == WINED3D_SWAP_EFFECT_COPY_VSYNC;
1943 *new_drawable = !GetPixelFormat(context_gl->dc);
1945 if (wined3d_settings.offscreen_rendering_mode == ORM_BACKBUFFER)
1947 static const enum wined3d_format_id ds_formats[] =
1949 WINED3DFMT_D24_UNORM_S8_UINT,
1950 WINED3DFMT_D32_UNORM,
1951 WINED3DFMT_R24_UNORM_X8_TYPELESS,
1952 WINED3DFMT_D16_UNORM,
1953 WINED3DFMT_S1_UINT_D15_UNORM,
1956 colour_format = target->format;
1958 /* In case of ORM_BACKBUFFER, make sure to request an alpha component for
1959 * X4R4G4B4/X8R8G8B8 as we might need it for the backbuffer. */
1960 if (colour_format->id == WINED3DFMT_B4G4R4X4_UNORM)
1961 colour_format = wined3d_get_format(adapter, WINED3DFMT_B4G4R4A4_UNORM, target_bind_flags);
1962 else if (colour_format->id == WINED3DFMT_B8G8R8X8_UNORM)
1963 colour_format = wined3d_get_format(adapter, WINED3DFMT_B8G8R8A8_UNORM, target_bind_flags);
1965 /* DirectDraw supports 8bit paletted render targets and these are used by
1966 * old games like StarCraft and C&C. Most modern hardware doesn't support
1967 * 8bit natively so we perform some form of 8bit -> 32bit conversion. The
1968 * conversion (ab)uses the alpha component for storing the palette index.
1969 * For this reason we require a format with 8bit alpha, so request
1970 * A8R8G8B8. */
1971 if (colour_format->id == WINED3DFMT_P8_UINT)
1972 colour_format = wined3d_get_format(adapter, WINED3DFMT_B8G8R8A8_UNORM, target_bind_flags);
1974 /* Try to find a pixel format which matches our requirements. */
1975 if (!swapchain_gl->s.ds_format)
1977 for (i = 0; i < ARRAY_SIZE(ds_formats); ++i)
1979 ds_format = wined3d_get_format(adapter, ds_formats[i], WINED3D_BIND_DEPTH_STENCIL);
1980 if ((context_gl->pixel_format = context_choose_pixel_format(device,
1981 context_gl->dc, colour_format, ds_format, true, swap_effect_copy)))
1983 swapchain_gl->s.ds_format = ds_format;
1984 break;
1987 TRACE("Depth stencil format %s is not supported, trying next format.\n",
1988 debug_d3dformat(ds_format->id));
1991 else
1993 context_gl->pixel_format = context_choose_pixel_format(device,
1994 context_gl->dc, colour_format, swapchain_gl->s.ds_format, true, swap_effect_copy);
1997 else
1999 /* When using FBOs for off-screen rendering, we only use the drawable for
2000 * presentation blits, and don't do any rendering to it. That means we
2001 * don't need depth or stencil buffers, and can mostly ignore the render
2002 * target format. This wouldn't necessarily be quite correct for 10bpc
2003 * display modes, but we don't currently support those.
2004 * Using the same format regardless of the colour/depth/stencil targets
2005 * makes it much less likely that different wined3d instances will set
2006 * conflicting pixel formats. */
2007 colour_format = wined3d_get_format(adapter, WINED3DFMT_B8G8R8A8_UNORM, target_bind_flags);
2008 ds_format = wined3d_get_format(adapter, WINED3DFMT_UNKNOWN, WINED3D_BIND_DEPTH_STENCIL);
2009 context_gl->pixel_format = context_choose_pixel_format(device,
2010 context_gl->dc, colour_format, ds_format, false, swap_effect_copy);
2013 if (!context_gl->pixel_format)
2015 ERR("Failed to choose pixel format.\n");
2016 return FALSE;
2019 wined3d_context_gl_enter(context_gl);
2021 if (!wined3d_context_gl_set_pixel_format(context_gl))
2023 context_release(context);
2025 if (context_gl->dc_is_private)
2027 ERR("Failed to set pixel format %d on device context %p.\n", context_gl->pixel_format, context_gl->dc);
2029 return FALSE;
2032 WARN("Failed to set pixel format %d on device context %p, trying backup DC.\n",
2033 context_gl->pixel_format, context_gl->dc);
2035 wined3d_release_dc(context_gl->window, context_gl->dc);
2036 if (!(context_gl->dc = wined3d_device_gl_get_backup_dc(wined3d_device_gl(device))))
2038 ERR("Failed to retrieve the backup device context.\n");
2039 return FALSE;
2041 context_gl->dc_is_private = TRUE;
2043 return wined3d_context_gl_create_wgl_ctx(context_gl, swapchain_gl, new_drawable);
2046 share_ctx = device->context_count ? wined3d_context_gl(device->contexts[0])->gl_ctx : NULL;
2047 if (gl_info->p_wglCreateContextAttribsARB)
2049 if (!(ctx = context_create_wgl_attribs(gl_info, context_gl->dc, share_ctx)))
2051 ERR("Failed to create a WGL context.\n");
2052 context_release(context);
2053 return FALSE;
2056 else
2058 if (!(ctx = wglCreateContext(context_gl->dc)))
2060 ERR("Failed to create a WGL context.\n");
2061 context_release(context);
2062 return FALSE;
2065 if (share_ctx && !wglShareLists(share_ctx, ctx))
2067 ERR("wglShareLists(%p, %p) failed, last error %#lx.\n", share_ctx, ctx, GetLastError());
2068 context_release(context);
2069 if (!wglDeleteContext(ctx))
2070 ERR("wglDeleteContext(%p) failed, last error %#lx.\n", ctx, GetLastError());
2071 return FALSE;
2075 context_gl->dc_has_format = TRUE;
2076 context_gl->needs_set = 1;
2077 context_gl->valid = 1;
2078 context_gl->gl_ctx = ctx;
2080 return TRUE;
2083 HRESULT wined3d_context_gl_init(struct wined3d_context_gl *context_gl, struct wined3d_swapchain_gl *swapchain_gl)
2085 struct wined3d_context *context = &context_gl->c;
2086 const struct wined3d_d3d_info *d3d_info;
2087 const struct wined3d_gl_info *gl_info;
2088 struct wined3d_device *device;
2089 BOOL new_drawable;
2090 unsigned int i;
2092 TRACE("context_gl %p, swapchain %p.\n", context_gl, swapchain_gl);
2094 wined3d_context_init(&context_gl->c, &swapchain_gl->s);
2096 device = context->device;
2097 gl_info = &device->adapter->gl_info;
2098 context_gl->gl_info = gl_info;
2099 d3d_info = context->d3d_info;
2101 context_gl->tid = GetCurrentThreadId();
2102 context_gl->window = context->swapchain->win_handle;
2103 if (context_gl->window == GetDesktopWindow())
2105 TRACE("Swapchain is created on the desktop window, trying backup device context.\n");
2106 context_gl->dc = NULL;
2108 else if (!(context_gl->dc = GetDCEx(context_gl->window, 0, DCX_USESTYLE | DCX_CACHE)))
2109 WARN("Failed to retrieve device context, trying swapchain backup.\n");
2111 if (!context_gl->dc)
2113 if (!(context_gl->dc = wined3d_device_gl_get_backup_dc(wined3d_device_gl(device))))
2115 ERR("Failed to retrieve a device context.\n");
2116 return E_FAIL;
2118 context_gl->dc_is_private = TRUE;
2121 list_init(&context_gl->fbo_list);
2122 list_init(&context_gl->fbo_destroy_list);
2124 list_init(&context_gl->occlusion_queries);
2125 list_init(&context_gl->fences);
2126 list_init(&context_gl->timestamp_queries);
2127 list_init(&context_gl->so_statistics_queries);
2128 list_init(&context_gl->pipeline_statistics_queries);
2130 for (i = 0; i < ARRAY_SIZE(context_gl->tex_unit_map); ++i)
2131 context_gl->tex_unit_map[i] = WINED3D_UNMAPPED_STAGE;
2132 for (i = 0; i < ARRAY_SIZE(context_gl->rev_tex_unit_map); ++i)
2133 context_gl->rev_tex_unit_map[i] = WINED3D_UNMAPPED_STAGE;
2134 if (gl_info->limits.graphics_samplers >= WINED3D_MAX_COMBINED_SAMPLERS)
2136 /* Initialize the texture unit mapping to a 1:1 mapping. */
2137 unsigned int base, count;
2139 wined3d_gl_limits_get_texture_unit_range(&gl_info->limits, WINED3D_SHADER_TYPE_PIXEL, &base, &count);
2140 if (base + WINED3D_MAX_FRAGMENT_SAMPLERS > ARRAY_SIZE(context_gl->rev_tex_unit_map))
2142 ERR("Unexpected texture unit base index %u.\n", base);
2143 goto fail;
2145 for (i = 0; i < min(count, WINED3D_MAX_FRAGMENT_SAMPLERS); ++i)
2147 context_gl->tex_unit_map[i] = base + i;
2148 context_gl->rev_tex_unit_map[base + i] = i;
2151 wined3d_gl_limits_get_texture_unit_range(&gl_info->limits, WINED3D_SHADER_TYPE_VERTEX, &base, &count);
2152 if (base + WINED3D_MAX_VERTEX_SAMPLERS > ARRAY_SIZE(context_gl->rev_tex_unit_map))
2154 ERR("Unexpected texture unit base index %u.\n", base);
2155 goto fail;
2157 for (i = 0; i < min(count, WINED3D_MAX_VERTEX_SAMPLERS); ++i)
2159 context_gl->tex_unit_map[WINED3D_MAX_FRAGMENT_SAMPLERS + i] = base + i;
2160 context_gl->rev_tex_unit_map[base + i] = WINED3D_MAX_FRAGMENT_SAMPLERS + i;
2164 if (!(context_gl->texture_type = heap_calloc(gl_info->limits.combined_samplers,
2165 sizeof(*context_gl->texture_type))))
2166 goto fail;
2168 if (!wined3d_context_gl_create_wgl_ctx(context_gl, swapchain_gl, &new_drawable))
2169 goto fail;
2171 /* Set up the context defaults. */
2173 context->render_offscreen = wined3d_resource_is_offscreen(&context->current_rt.texture->resource);
2174 context_gl->draw_buffers_mask = context_generate_rt_mask(GL_BACK);
2176 if (!wined3d_context_gl_set_current(context_gl))
2178 ERR("Cannot activate context to set up defaults.\n");
2179 context_release(context);
2180 if (!wglDeleteContext(context_gl->gl_ctx))
2181 ERR("wglDeleteContext(%p) failed, last error %#lx.\n", context_gl->gl_ctx, GetLastError());
2182 goto fail;
2185 if (context_debug_output_enabled(gl_info))
2187 GL_EXTCALL(glDebugMessageCallback(wined3d_debug_callback, context));
2188 if (TRACE_ON(d3d_sync))
2189 gl_info->gl_ops.gl.p_glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS);
2190 GL_EXTCALL(glDebugMessageControl(GL_DONT_CARE, GL_DONT_CARE, GL_DONT_CARE, 0, NULL, GL_FALSE));
2191 if (ERR_ON(d3d))
2193 GL_EXTCALL(glDebugMessageControl(GL_DONT_CARE, GL_DEBUG_TYPE_ERROR,
2194 GL_DONT_CARE, 0, NULL, GL_TRUE));
2196 if (FIXME_ON(d3d))
2198 GL_EXTCALL(glDebugMessageControl(GL_DONT_CARE, GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR,
2199 GL_DONT_CARE, 0, NULL, GL_TRUE));
2200 GL_EXTCALL(glDebugMessageControl(GL_DONT_CARE, GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR,
2201 GL_DONT_CARE, 0, NULL, GL_TRUE));
2202 GL_EXTCALL(glDebugMessageControl(GL_DONT_CARE, GL_DEBUG_TYPE_PORTABILITY,
2203 GL_DONT_CARE, 0, NULL, GL_TRUE));
2205 if (WARN_ON(d3d_perf))
2207 GL_EXTCALL(glDebugMessageControl(GL_DONT_CARE, GL_DEBUG_TYPE_PERFORMANCE,
2208 GL_DONT_CARE, 0, NULL, GL_TRUE));
2212 if (gl_info->supported[WINED3D_GL_LEGACY_CONTEXT])
2213 gl_info->gl_ops.gl.p_glGetIntegerv(GL_AUX_BUFFERS, &context_gl->aux_buffers);
2215 TRACE("Setting up the screen\n");
2217 if (gl_info->supported[WINED3D_GL_LEGACY_CONTEXT])
2219 gl_info->gl_ops.gl.p_glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, GL_TRUE);
2220 checkGLcall("glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, GL_TRUE);");
2222 gl_info->gl_ops.gl.p_glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_COMBINE_EXT);
2223 checkGLcall("glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_COMBINE_EXT);");
2225 gl_info->gl_ops.gl.p_glLightModeli(GL_LIGHT_MODEL_COLOR_CONTROL, GL_SEPARATE_SPECULAR_COLOR);
2226 checkGLcall("glLightModeli(GL_LIGHT_MODEL_COLOR_CONTROL, GL_SEPARATE_SPECULAR_COLOR);");
2228 else
2230 GLuint vao;
2232 GL_EXTCALL(glGenVertexArrays(1, &vao));
2233 GL_EXTCALL(glBindVertexArray(vao));
2234 checkGLcall("creating VAO");
2237 gl_info->gl_ops.gl.p_glPixelStorei(GL_PACK_ALIGNMENT, device->surface_alignment);
2238 checkGLcall("glPixelStorei(GL_PACK_ALIGNMENT, device->surface_alignment);");
2239 gl_info->gl_ops.gl.p_glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
2240 checkGLcall("glPixelStorei(GL_UNPACK_ALIGNMENT, 1);");
2242 if (gl_info->supported[NV_TEXTURE_SHADER2])
2244 /* Set up the previous texture input for all shader units. This applies to bump mapping, and in d3d
2245 * the previous texture where to source the offset from is always unit - 1.
2247 for (i = 1; i < gl_info->limits.textures; ++i)
2249 wined3d_context_gl_active_texture(context_gl, gl_info, i);
2250 gl_info->gl_ops.gl.p_glTexEnvi(GL_TEXTURE_SHADER_NV,
2251 GL_PREVIOUS_TEXTURE_INPUT_NV, GL_TEXTURE0_ARB + i - 1);
2252 checkGLcall("glTexEnvi(GL_TEXTURE_SHADER_NV, GL_PREVIOUS_TEXTURE_INPUT_NV, ...");
2255 if (gl_info->supported[ARB_FRAGMENT_PROGRAM])
2257 /* MacOS(radeon X1600 at least, but most likely others too) refuses to draw if GLSL and ARBFP are
2258 * enabled, but the currently bound arbfp program is 0. Enabling ARBFP with prog 0 is invalid, but
2259 * GLSL should bypass this. This causes problems in programs that never use the fixed function pipeline,
2260 * because the ARBFP extension is enabled by the ARBFP pipeline at context creation, but no program
2261 * is ever assigned.
2263 * So make sure a program is assigned to each context. The first real ARBFP use will set a different
2264 * program and the dummy program is destroyed when the context is destroyed.
2266 static const char dummy_program[] =
2267 "!!ARBfp1.0\n"
2268 "MOV result.color, fragment.color.primary;\n"
2269 "END\n";
2270 GL_EXTCALL(glGenProgramsARB(1, &context_gl->dummy_arbfp_prog));
2271 GL_EXTCALL(glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, context_gl->dummy_arbfp_prog));
2272 GL_EXTCALL(glProgramStringARB(GL_FRAGMENT_PROGRAM_ARB,
2273 GL_PROGRAM_FORMAT_ASCII_ARB, strlen(dummy_program), dummy_program));
2276 if (gl_info->supported[ARB_POINT_SPRITE])
2278 for (i = 0; i < gl_info->limits.textures; ++i)
2280 wined3d_context_gl_active_texture(context_gl, gl_info, i);
2281 gl_info->gl_ops.gl.p_glTexEnvi(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, GL_TRUE);
2282 checkGLcall("glTexEnvi(GL_POINT_SPRITE_ARB, GL_COORD_REPLACE_ARB, GL_TRUE)");
2286 if (gl_info->supported[ARB_PROVOKING_VERTEX])
2288 GL_EXTCALL(glProvokingVertex(GL_FIRST_VERTEX_CONVENTION));
2290 else if (gl_info->supported[EXT_PROVOKING_VERTEX])
2292 GL_EXTCALL(glProvokingVertexEXT(GL_FIRST_VERTEX_CONVENTION_EXT));
2294 if (!(d3d_info->wined3d_creation_flags & WINED3D_NO_PRIMITIVE_RESTART))
2296 if (gl_info->supported[ARB_ES3_COMPATIBILITY])
2298 gl_info->gl_ops.gl.p_glEnable(GL_PRIMITIVE_RESTART_FIXED_INDEX);
2299 checkGLcall("enable GL_PRIMITIVE_RESTART_FIXED_INDEX");
2301 else
2303 FIXME("OpenGL implementation does not support GL_PRIMITIVE_RESTART_FIXED_INDEX.\n");
2306 if (!(d3d_info->wined3d_creation_flags & WINED3D_LEGACY_CUBEMAP_FILTERING)
2307 && gl_info->supported[ARB_SEAMLESS_CUBE_MAP])
2309 gl_info->gl_ops.gl.p_glEnable(GL_TEXTURE_CUBE_MAP_SEAMLESS);
2310 checkGLcall("enable seamless cube map filtering");
2312 if (gl_info->supported[ARB_CLIP_CONTROL])
2313 GL_EXTCALL(glPointParameteri(GL_POINT_SPRITE_COORD_ORIGIN, GL_LOWER_LEFT));
2315 /* If this happens to be the first context for the device, dummy textures
2316 * are not created yet. In that case, they will be created (and bound) by
2317 * create_dummy_textures right after this context is initialized. */
2318 if (wined3d_device_gl(device)->dummy_textures.tex_2d)
2319 wined3d_context_gl_bind_dummy_textures(context_gl);
2321 /* Initialise all rectangles to avoid resetting unused ones later. */
2322 gl_info->gl_ops.gl.p_glScissor(0, 0, 0, 0);
2323 checkGLcall("glScissor");
2325 if (new_drawable)
2327 gl_info->gl_ops.gl.p_glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
2328 gl_info->gl_ops.gl.p_glClearDepth(1.0f);
2329 gl_info->gl_ops.gl.p_glClearStencil(0);
2330 gl_info->gl_ops.gl.p_glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
2331 checkGLcall("glClear");
2333 return WINED3D_OK;
2335 fail:
2336 heap_free(context_gl->texture_type);
2337 wined3d_release_dc(context_gl->window, context_gl->dc);
2338 return E_FAIL;
2341 void wined3d_context_gl_destroy(struct wined3d_context_gl *context_gl)
2343 struct wined3d_device *device = context_gl->c.device;
2345 TRACE("Destroying context %p.\n", context_gl);
2347 wined3d_from_cs(device->cs);
2349 /* We delay destroying a context when it is active. The context_release()
2350 * function invokes wined3d_context_gl_destroy() again while leaving the
2351 * last level. */
2352 if (context_gl->level)
2354 TRACE("Delaying destruction of context %p.\n", context_gl);
2355 context_gl->c.destroy_delayed = 1;
2356 /* FIXME: Get rid of a pointer to swapchain from wined3d_context. */
2357 context_gl->c.swapchain = NULL;
2358 context_gl->c.device = NULL;
2359 return;
2362 device_context_remove(device, &context_gl->c);
2364 if (context_gl->c.current && context_gl->tid != GetCurrentThreadId())
2366 struct wined3d_gl_info *gl_info;
2368 /* Make a copy of gl_info for wined3d_context_gl_cleanup() use, the
2369 * one in wined3d_adapter may go away in the meantime. */
2370 gl_info = heap_alloc(sizeof(*gl_info));
2371 *gl_info = *context_gl->gl_info;
2372 context_gl->gl_info = gl_info;
2373 context_gl->c.destroyed = 1;
2375 return;
2378 wined3d_context_gl_cleanup(context_gl);
2379 TlsSetValue(context_get_tls_idx(), NULL);
2380 heap_free(context_gl);
2383 const unsigned int *wined3d_context_gl_get_tex_unit_mapping(const struct wined3d_context_gl *context_gl,
2384 const struct wined3d_shader_version *shader_version, unsigned int *base, unsigned int *count)
2386 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
2388 if (!shader_version)
2390 *base = 0;
2391 *count = WINED3D_MAX_TEXTURES;
2392 return context_gl->tex_unit_map;
2395 if (shader_version->major >= 4)
2397 wined3d_gl_limits_get_texture_unit_range(&gl_info->limits, shader_version->type, base, count);
2398 return NULL;
2401 switch (shader_version->type)
2403 case WINED3D_SHADER_TYPE_PIXEL:
2404 *base = 0;
2405 *count = WINED3D_MAX_FRAGMENT_SAMPLERS;
2406 break;
2407 case WINED3D_SHADER_TYPE_VERTEX:
2408 *base = WINED3D_MAX_FRAGMENT_SAMPLERS;
2409 *count = WINED3D_MAX_VERTEX_SAMPLERS;
2410 break;
2411 default:
2412 ERR("Unhandled shader type %#x.\n", shader_version->type);
2413 *base = 0;
2414 *count = 0;
2417 return context_gl->tex_unit_map;
2420 static void wined3d_context_gl_get_rt_size(const struct wined3d_context_gl *context_gl, SIZE *size)
2422 const struct wined3d_texture *rt = context_gl->c.current_rt.texture;
2423 unsigned int level;
2425 if (rt->swapchain)
2427 RECT window_size;
2429 GetClientRect(context_gl->window, &window_size);
2430 size->cx = window_size.right - window_size.left;
2431 size->cy = window_size.bottom - window_size.top;
2433 return;
2436 level = context_gl->c.current_rt.sub_resource_idx % rt->level_count;
2437 size->cx = wined3d_texture_get_level_width(rt, level);
2438 size->cy = wined3d_texture_get_level_height(rt, level);
2441 void wined3d_context_gl_enable_clip_distances(struct wined3d_context_gl *context_gl, uint32_t enable_mask)
2443 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
2444 unsigned int clip_distance_count, i;
2445 uint32_t disable_mask, current_mask;
2447 clip_distance_count = gl_info->limits.user_clip_distances;
2448 disable_mask = ~enable_mask;
2449 enable_mask &= wined3d_mask_from_size(clip_distance_count);
2450 disable_mask &= wined3d_mask_from_size(clip_distance_count);
2451 current_mask = context_gl->c.clip_distance_mask;
2452 context_gl->c.clip_distance_mask = enable_mask;
2454 enable_mask &= ~current_mask;
2455 while (enable_mask)
2457 i = wined3d_bit_scan(&enable_mask);
2458 gl_info->gl_ops.gl.p_glEnable(GL_CLIP_DISTANCE0 + i);
2460 disable_mask &= current_mask;
2461 while (disable_mask)
2463 i = wined3d_bit_scan(&disable_mask);
2464 gl_info->gl_ops.gl.p_glDisable(GL_CLIP_DISTANCE0 + i);
2466 checkGLcall("toggle clip distances");
2469 static inline BOOL is_rt_mask_onscreen(DWORD rt_mask)
2471 return rt_mask & (1u << 31);
2474 static inline GLenum draw_buffer_from_rt_mask(DWORD rt_mask)
2476 return rt_mask & ~(1u << 31);
2479 /* Context activation is done by the caller. */
2480 static void wined3d_context_gl_apply_draw_buffers(struct wined3d_context_gl *context_gl, uint32_t rt_mask)
2482 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
2483 GLenum draw_buffers[WINED3D_MAX_RENDER_TARGETS];
2485 if (!rt_mask)
2487 gl_info->gl_ops.gl.p_glDrawBuffer(GL_NONE);
2489 else if (is_rt_mask_onscreen(rt_mask))
2491 gl_info->gl_ops.gl.p_glDrawBuffer(draw_buffer_from_rt_mask(rt_mask));
2493 else
2495 if (wined3d_settings.offscreen_rendering_mode == ORM_FBO)
2497 unsigned int i = 0;
2499 while (rt_mask)
2501 if (rt_mask & 1)
2502 draw_buffers[i] = GL_COLOR_ATTACHMENT0 + i;
2503 else
2504 draw_buffers[i] = GL_NONE;
2506 rt_mask >>= 1;
2507 ++i;
2510 if (gl_info->supported[ARB_DRAW_BUFFERS])
2512 GL_EXTCALL(glDrawBuffers(i, draw_buffers));
2514 else
2516 gl_info->gl_ops.gl.p_glDrawBuffer(draw_buffers[0]);
2519 else
2521 ERR("Unexpected draw buffers mask with backbuffer ORM.\n");
2525 checkGLcall("apply draw buffers");
2528 /* Context activation is done by the caller. */
2529 void wined3d_context_gl_active_texture(struct wined3d_context_gl *context_gl,
2530 const struct wined3d_gl_info *gl_info, unsigned int unit)
2532 GL_EXTCALL(glActiveTexture(GL_TEXTURE0 + unit));
2533 checkGLcall("glActiveTexture");
2534 context_gl->active_texture = unit;
2537 void wined3d_context_gl_bind_bo(struct wined3d_context_gl *context_gl, GLenum binding, GLuint name)
2539 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
2541 if (binding == GL_ELEMENT_ARRAY_BUFFER)
2542 context_invalidate_state(&context_gl->c, STATE_INDEXBUFFER);
2544 GL_EXTCALL(glBindBuffer(binding, name));
2547 void wined3d_context_gl_bind_texture(struct wined3d_context_gl *context_gl, GLenum target, GLuint name)
2549 const struct wined3d_dummy_textures *textures = &wined3d_device_gl(context_gl->c.device)->dummy_textures;
2550 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
2551 GLenum old_texture_type;
2552 unsigned int unit;
2554 if (name)
2555 gl_info->gl_ops.gl.p_glBindTexture(target, name);
2556 else
2557 target = GL_NONE;
2559 unit = context_gl->active_texture;
2560 old_texture_type = context_gl->texture_type[unit];
2561 if (old_texture_type != target)
2563 switch (old_texture_type)
2565 case GL_NONE:
2566 /* nothing to do */
2567 break;
2568 case GL_TEXTURE_1D:
2569 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_1D, textures->tex_1d);
2570 break;
2571 case GL_TEXTURE_1D_ARRAY:
2572 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_1D_ARRAY, textures->tex_1d_array);
2573 break;
2574 case GL_TEXTURE_2D:
2575 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_2D, textures->tex_2d);
2576 break;
2577 case GL_TEXTURE_2D_ARRAY:
2578 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_2D_ARRAY, textures->tex_2d_array);
2579 break;
2580 case GL_TEXTURE_RECTANGLE_ARB:
2581 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_RECTANGLE_ARB, textures->tex_rect);
2582 break;
2583 case GL_TEXTURE_CUBE_MAP:
2584 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_CUBE_MAP, textures->tex_cube);
2585 break;
2586 case GL_TEXTURE_CUBE_MAP_ARRAY:
2587 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_CUBE_MAP_ARRAY, textures->tex_cube_array);
2588 break;
2589 case GL_TEXTURE_3D:
2590 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_3D, textures->tex_3d);
2591 break;
2592 case GL_TEXTURE_BUFFER:
2593 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_BUFFER, textures->tex_buffer);
2594 break;
2595 case GL_TEXTURE_2D_MULTISAMPLE:
2596 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, textures->tex_2d_ms);
2597 break;
2598 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
2599 gl_info->gl_ops.gl.p_glBindTexture(GL_TEXTURE_2D_MULTISAMPLE_ARRAY, textures->tex_2d_ms_array);
2600 break;
2601 default:
2602 ERR("Unexpected texture target %#x.\n", old_texture_type);
2605 context_gl->texture_type[unit] = target;
2608 checkGLcall("bind texture");
2611 static void wined3d_context_gl_poll_fences(struct wined3d_context_gl *context_gl)
2613 struct wined3d_device_gl *device_gl = wined3d_device_gl(context_gl->c.device);
2614 struct wined3d_command_fence_gl *f;
2615 SIZE_T i;
2617 for (i = 0; i < context_gl->submitted.fence_count; ++i)
2619 f = &context_gl->submitted.fences[i];
2621 if (f->id > device_gl->completed_fence_id)
2623 if (wined3d_fence_test(f->fence, &device_gl->d, 0) != WINED3D_FENCE_OK)
2624 continue;
2625 device_gl->completed_fence_id = f->id;
2628 wined3d_fence_destroy(f->fence);
2629 if (i != context_gl->submitted.fence_count - 1)
2630 *f = context_gl->submitted.fences[context_gl->submitted.fence_count - 1];
2631 --context_gl->submitted.fence_count;
2635 static void wined3d_device_gl_free_memory(struct wined3d_device_gl *device_gl, struct wined3d_allocator_block *block)
2637 assert(block->chunk->allocator == &device_gl->allocator);
2638 wined3d_device_gl_allocator_lock(device_gl);
2639 wined3d_allocator_block_free(block);
2640 wined3d_device_gl_allocator_unlock(device_gl);
2643 static void wined3d_context_gl_cleanup_resources(struct wined3d_context_gl *context_gl)
2645 struct wined3d_device_gl *device_gl = wined3d_device_gl(context_gl->c.device);
2646 struct wined3d_retired_block_gl *r, *blocks;
2647 SIZE_T count, i = 0;
2648 uint64_t id;
2650 wined3d_context_gl_poll_fences(context_gl);
2651 id = device_gl->completed_fence_id;
2653 blocks = device_gl->retired_blocks;
2654 count = device_gl->retired_block_count;
2655 while (i < count)
2657 r = &blocks[i];
2659 if (r->fence_id > id)
2661 ++i;
2662 continue;
2665 wined3d_device_gl_free_memory(device_gl, r->block);
2666 if (i != --count)
2667 *r = blocks[count];
2669 device_gl->retired_block_count = count;
2672 void wined3d_context_gl_wait_command_fence(struct wined3d_context_gl *context_gl, uint64_t id)
2674 struct wined3d_device_gl *device_gl = wined3d_device_gl(context_gl->c.device);
2675 enum wined3d_fence_result ret;
2676 SIZE_T i;
2678 if (id <= device_gl->completed_fence_id
2679 || id > device_gl->current_fence_id) /* In case the fence ID wrapped. */
2680 return;
2682 for (i = 0; i < context_gl->submitted.fence_count; ++i)
2684 if (context_gl->submitted.fences[i].id != id)
2685 continue;
2687 if ((ret = wined3d_fence_wait(context_gl->submitted.fences[i].fence, &device_gl->d)) != WINED3D_FENCE_OK)
2688 ERR("Failed to wait for command fence with id 0x%s, ret %#x.\n", wine_dbgstr_longlong(id), ret);
2689 wined3d_context_gl_cleanup_resources(context_gl);
2690 return;
2693 ERR("Failed to find fence for command fence with id 0x%s.\n", wine_dbgstr_longlong(id));
2696 void wined3d_context_gl_submit_command_fence(struct wined3d_context_gl *context_gl)
2698 struct wined3d_device_gl *device_gl = wined3d_device_gl(context_gl->c.device);
2699 struct wined3d_command_fence_gl *f;
2700 HRESULT hr;
2702 if (!wined3d_array_reserve((void **)&context_gl->submitted.fences, &context_gl->submitted.fences_size,
2703 context_gl->submitted.fence_count + 1, sizeof(*context_gl->submitted.fences)))
2704 ERR("Failed to grow submitted command buffer array.\n");
2706 f = &context_gl->submitted.fences[context_gl->submitted.fence_count++];
2707 f->id = device_gl->current_fence_id;
2708 if (FAILED(hr = wined3d_fence_create(&device_gl->d, &f->fence)))
2709 ERR("Failed to create fence, hr %#lx.\n", hr);
2710 wined3d_fence_issue(f->fence, &device_gl->d);
2712 /* We don't expect this to ever happen, but handle it anyway. */
2713 if (!++device_gl->current_fence_id)
2715 wined3d_context_gl_wait_command_fence(context_gl, device_gl->current_fence_id - 1);
2716 device_gl->completed_fence_id = 0;
2717 device_gl->current_fence_id = 1;
2719 device_gl->retired_bo_size = 0;
2720 wined3d_context_gl_cleanup_resources(context_gl);
2723 static void wined3d_context_gl_destroy_allocator_block(struct wined3d_context_gl *context_gl,
2724 struct wined3d_allocator_block *block, uint64_t fence_id)
2726 struct wined3d_device_gl *device_gl = wined3d_device_gl(context_gl->c.device);
2727 struct wined3d_retired_block_gl *r;
2729 if (device_gl->completed_fence_id >= fence_id)
2731 wined3d_device_gl_free_memory(device_gl, block);
2732 TRACE("Freed block %p.\n", block);
2733 return;
2736 if (!wined3d_array_reserve((void **)&device_gl->retired_blocks,
2737 &device_gl->retired_blocks_size, device_gl->retired_block_count + 1,
2738 sizeof(*device_gl->retired_blocks)))
2740 ERR("Leaking block %p.\n", block);
2741 return;
2744 r = &device_gl->retired_blocks[device_gl->retired_block_count++];
2745 r->block = block;
2746 r->fence_id = fence_id;
2749 /* We always have buffer storage here. */
2750 GLuint wined3d_context_gl_allocate_vram_chunk_buffer(struct wined3d_context_gl *context_gl,
2751 unsigned int pool, size_t size)
2753 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
2754 GLbitfield flags;
2755 GLuint id = 0;
2757 TRACE("context_gl %p, pool %u, size %Iu.\n", context_gl, pool, size);
2759 GL_EXTCALL(glGenBuffers(1, &id));
2760 if (!id)
2762 checkGLcall("buffer object creation");
2763 return 0;
2765 wined3d_context_gl_bind_bo(context_gl, GL_PIXEL_UNPACK_BUFFER, id);
2767 flags = wined3d_device_gl_get_memory_type_flags(pool) | GL_DYNAMIC_STORAGE_BIT;
2768 if (flags & (GL_MAP_READ_BIT | GL_MAP_WRITE_BIT))
2769 flags |= GL_MAP_PERSISTENT_BIT | GL_MAP_COHERENT_BIT;
2770 GL_EXTCALL(glBufferStorage(GL_PIXEL_UNPACK_BUFFER, size, NULL, flags));
2772 checkGLcall("buffer object creation");
2774 TRACE("Created buffer object %u.\n", id);
2776 return id;
2779 static void *wined3d_allocator_chunk_gl_map(struct wined3d_allocator_chunk_gl *chunk_gl,
2780 struct wined3d_context_gl *context_gl)
2782 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
2783 void *map_ptr;
2785 TRACE("chunk %p, gl_buffer %u, map_ptr %p.\n", chunk_gl, chunk_gl->gl_buffer, chunk_gl->c.map_ptr);
2787 wined3d_allocator_chunk_gl_lock(chunk_gl);
2789 if (!chunk_gl->c.map_ptr)
2791 unsigned int flags = wined3d_device_gl_get_memory_type_flags(chunk_gl->memory_type) & ~GL_CLIENT_STORAGE_BIT;
2793 flags |= GL_MAP_PERSISTENT_BIT | GL_MAP_COHERENT_BIT;
2794 if (!(flags & GL_MAP_READ_BIT))
2795 flags |= GL_MAP_UNSYNCHRONIZED_BIT;
2796 if (flags & GL_MAP_WRITE_BIT)
2797 flags |= GL_MAP_FLUSH_EXPLICIT_BIT;
2798 wined3d_context_gl_bind_bo(context_gl, GL_PIXEL_UNPACK_BUFFER, chunk_gl->gl_buffer);
2799 chunk_gl->c.map_ptr = GL_EXTCALL(glMapBufferRange(GL_PIXEL_UNPACK_BUFFER,
2800 0, WINED3D_ALLOCATOR_CHUNK_SIZE, flags));
2801 if (!chunk_gl->c.map_ptr)
2803 wined3d_allocator_chunk_gl_unlock(chunk_gl);
2804 ERR("Failed to map chunk memory.\n");
2805 return NULL;
2808 adapter_adjust_mapped_memory(context_gl->c.device->adapter, WINED3D_ALLOCATOR_CHUNK_SIZE);
2811 ++chunk_gl->c.map_count;
2812 map_ptr = chunk_gl->c.map_ptr;
2814 wined3d_allocator_chunk_gl_unlock(chunk_gl);
2816 return map_ptr;
2819 static void wined3d_allocator_chunk_gl_unmap(struct wined3d_allocator_chunk_gl *chunk_gl,
2820 struct wined3d_context_gl *context_gl)
2822 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
2824 TRACE("chunk_gl %p, context_gl %p.\n", chunk_gl, context_gl);
2826 wined3d_allocator_chunk_gl_lock(chunk_gl);
2828 if (!--chunk_gl->c.map_count)
2830 wined3d_context_gl_bind_bo(context_gl, GL_PIXEL_UNPACK_BUFFER, chunk_gl->gl_buffer);
2831 GL_EXTCALL(glUnmapBuffer(GL_PIXEL_UNPACK_BUFFER));
2832 chunk_gl->c.map_ptr = NULL;
2834 adapter_adjust_mapped_memory(context_gl->c.device->adapter, -WINED3D_ALLOCATOR_CHUNK_SIZE);
2837 wined3d_allocator_chunk_gl_unlock(chunk_gl);
2840 static void *wined3d_bo_gl_map(struct wined3d_bo_gl *bo, struct wined3d_context_gl *context_gl, uint32_t flags)
2842 struct wined3d_device_gl *device_gl = wined3d_device_gl(context_gl->c.device);
2843 const struct wined3d_gl_info *gl_info;
2844 struct wined3d_bo_user *bo_user;
2845 struct wined3d_bo_gl tmp;
2847 if (flags & WINED3D_MAP_NOOVERWRITE)
2848 goto map;
2850 if ((flags & WINED3D_MAP_DISCARD) && bo->command_fence_id > device_gl->completed_fence_id)
2852 if (wined3d_device_gl_create_bo(device_gl, context_gl, bo->size,
2853 bo->binding, bo->usage, bo->b.coherent, bo->flags, &tmp))
2855 list_move_head(&tmp.b.users, &bo->b.users);
2856 wined3d_context_gl_destroy_bo(context_gl, bo);
2857 *bo = tmp;
2858 list_init(&bo->b.users);
2859 list_move_head(&bo->b.users, &tmp.b.users);
2860 LIST_FOR_EACH_ENTRY(bo_user, &bo->b.users, struct wined3d_bo_user, entry)
2862 bo_user->valid = false;
2865 goto map;
2868 ERR("Failed to create new buffer object.\n");
2871 if (context_gl->c.d3d_info->fences)
2873 if (bo->command_fence_id == device_gl->current_fence_id)
2874 wined3d_context_gl_submit_command_fence(context_gl);
2875 wined3d_context_gl_wait_command_fence(context_gl, bo->command_fence_id);
2878 map:
2879 if (bo->b.map_ptr)
2880 return bo->b.map_ptr;
2882 if (bo->memory)
2884 struct wined3d_allocator_chunk_gl *chunk_gl = wined3d_allocator_chunk_gl(bo->memory->chunk);
2886 if (!(bo->b.map_ptr = wined3d_allocator_chunk_gl_map(chunk_gl, context_gl)))
2887 ERR("Failed to map chunk.\n");
2888 return bo->b.map_ptr;
2891 gl_info = context_gl->gl_info;
2892 wined3d_context_gl_bind_bo(context_gl, bo->binding, bo->id);
2894 if (gl_info->supported[ARB_BUFFER_STORAGE])
2896 GLbitfield gl_flags;
2898 /* When mapping the bo persistently, we need to use the access flags
2899 * used to create the bo, instead of the access flags passed to the
2900 * map call. Otherwise, if for example the initial map call that
2901 * caused the bo to be persistently mapped was a read-only map,
2902 * subsequent write access to the bo would be undefined.
2904 * Note that we use GL_MAP_PERSISTENT_BIT for non-persistent maps here
2905 * as well, in order to allow draws to succeed while referenced buffer
2906 * resources are mapped. On the other hand, we don't want to use the
2907 * access flags used to create the bo for non-persistent maps, because
2908 * that may imply dropping GL_MAP_UNSYNCHRONIZED_BIT. */
2909 gl_flags = bo->flags & ~GL_CLIENT_STORAGE_BIT;
2910 if (!(gl_flags & GL_MAP_READ_BIT))
2911 gl_flags |= GL_MAP_UNSYNCHRONIZED_BIT;
2912 if (gl_flags & GL_MAP_WRITE_BIT)
2913 gl_flags |= GL_MAP_FLUSH_EXPLICIT_BIT;
2914 gl_flags |= GL_MAP_PERSISTENT_BIT | GL_MAP_COHERENT_BIT;
2916 bo->b.map_ptr = GL_EXTCALL(glMapBufferRange(bo->binding, 0, bo->size, gl_flags));
2918 else if (gl_info->supported[ARB_MAP_BUFFER_RANGE])
2920 bo->b.map_ptr = GL_EXTCALL(glMapBufferRange(bo->binding, 0, bo->size, wined3d_resource_gl_map_flags(bo, flags)));
2922 else
2924 bo->b.map_ptr = GL_EXTCALL(glMapBuffer(bo->binding, wined3d_resource_gl_legacy_map_flags(flags)));
2927 if (bo->b.map_ptr)
2928 adapter_adjust_mapped_memory(device_gl->d.adapter, bo->size);
2930 wined3d_context_gl_bind_bo(context_gl, bo->binding, 0);
2931 checkGLcall("Map buffer object");
2933 return bo->b.map_ptr;
2936 static void wined3d_bo_gl_unmap(struct wined3d_bo_gl *bo, struct wined3d_context_gl *context_gl)
2938 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
2940 if (context_gl->c.d3d_info->persistent_map
2941 && context_gl->c.device->adapter->mapped_size <= MAX_PERSISTENT_MAPPED_BYTES)
2943 TRACE("Not unmapping BO %p.\n", bo);
2944 return;
2947 wined3d_device_bo_map_lock(context_gl->c.device);
2948 /* The mapping is still in use by the client (viz. for an accelerated
2949 * NOOVERWRITE map). The client will trigger another unmap request when the
2950 * d3d application requests to unmap the BO. */
2951 if (bo->b.client_map_count)
2953 wined3d_device_bo_map_unlock(context_gl->c.device);
2954 assert(context_gl->c.d3d_info->persistent_map);
2955 TRACE("BO %p is still in use by a client thread; not unmapping.\n", bo);
2956 return;
2958 bo->b.map_ptr = NULL;
2959 wined3d_device_bo_map_unlock(context_gl->c.device);
2961 if (bo->memory)
2963 struct wined3d_allocator_chunk_gl *chunk_gl = wined3d_allocator_chunk_gl(bo->memory->chunk);
2965 wined3d_allocator_chunk_gl_unmap(chunk_gl, context_gl);
2966 return;
2969 wined3d_context_gl_bind_bo(context_gl, bo->binding, bo->id);
2970 GL_EXTCALL(glUnmapBuffer(bo->binding));
2971 wined3d_context_gl_bind_bo(context_gl, bo->binding, 0);
2972 checkGLcall("Unmap buffer object");
2974 adapter_adjust_mapped_memory(context_gl->c.device->adapter, -bo->size);
2977 void *wined3d_context_gl_map_bo_address(struct wined3d_context_gl *context_gl,
2978 const struct wined3d_bo_address *data, size_t size, uint32_t flags)
2980 struct wined3d_bo *bo;
2981 void *map_ptr;
2983 if (!(bo = data->buffer_object))
2984 return data->addr;
2986 if (!(map_ptr = wined3d_bo_gl_map(wined3d_bo_gl(bo), context_gl, flags)))
2988 ERR("Failed to map bo.\n");
2989 return NULL;
2992 return (uint8_t *)map_ptr + bo->buffer_offset + (uintptr_t)data->addr;
2995 static void flush_bo_ranges(struct wined3d_context_gl *context_gl, const struct wined3d_const_bo_address *data,
2996 unsigned int range_count, const struct wined3d_range *ranges)
2998 const struct wined3d_gl_info *gl_info;
2999 struct wined3d_bo_gl *bo;
3000 unsigned int i;
3002 if (!data->buffer_object || data->buffer_object->coherent)
3003 return;
3004 bo = wined3d_bo_gl(data->buffer_object);
3006 gl_info = context_gl->gl_info;
3007 wined3d_context_gl_bind_bo(context_gl, bo->binding, bo->id);
3009 if (gl_info->supported[ARB_MAP_BUFFER_RANGE])
3011 /* The offset passed to glFlushMappedBufferRange() is relative to the
3012 * mapped range, but we map the whole buffer anyway. */
3013 for (i = 0; i < range_count; ++i)
3015 GL_EXTCALL(glFlushMappedBufferRange(bo->binding,
3016 bo->b.buffer_offset + (uintptr_t)data->addr + ranges[i].offset, ranges[i].size));
3019 else if (gl_info->supported[APPLE_FLUSH_BUFFER_RANGE])
3021 for (i = 0; i < range_count; ++i)
3023 GL_EXTCALL(glFlushMappedBufferRangeAPPLE(bo->binding,
3024 bo->b.buffer_offset + (uintptr_t)data->addr + ranges[i].offset, ranges[i].size));
3025 checkGLcall("glFlushMappedBufferRangeAPPLE");
3029 wined3d_context_gl_bind_bo(context_gl, bo->binding, 0);
3030 checkGLcall("Flush buffer object");
3033 void wined3d_context_gl_unmap_bo_address(struct wined3d_context_gl *context_gl,
3034 const struct wined3d_bo_address *data, unsigned int range_count, const struct wined3d_range *ranges)
3036 struct wined3d_bo_gl *bo;
3038 if (!data->buffer_object)
3039 return;
3040 bo = wined3d_bo_gl(data->buffer_object);
3042 assert(bo->b.map_ptr);
3044 flush_bo_ranges(context_gl, wined3d_const_bo_address(data), range_count, ranges);
3045 wined3d_bo_gl_unmap(bo, context_gl);
3048 void wined3d_context_gl_flush_bo_address(struct wined3d_context_gl *context_gl,
3049 const struct wined3d_const_bo_address *data, size_t size)
3051 struct wined3d_range range;
3053 TRACE("context_gl %p, data %s, size %Iu.\n", context_gl, debug_const_bo_address(data), size);
3055 range.offset = (uintptr_t)data->addr;
3056 range.size = size;
3058 flush_bo_ranges(context_gl, data, 1, &range);
3061 void wined3d_context_gl_copy_bo_address(struct wined3d_context_gl *context_gl,
3062 const struct wined3d_bo_address *dst, const struct wined3d_bo_address *src,
3063 unsigned int range_count, const struct wined3d_range *ranges)
3065 uint32_t map_flags = WINED3D_MAP_WRITE;
3066 const struct wined3d_gl_info *gl_info;
3067 struct wined3d_bo_gl *src_bo, *dst_bo;
3068 BYTE *dst_ptr, *src_ptr;
3069 unsigned int i;
3071 gl_info = context_gl->gl_info;
3072 src_bo = src->buffer_object ? wined3d_bo_gl(src->buffer_object) : NULL;
3073 dst_bo = dst->buffer_object ? wined3d_bo_gl(dst->buffer_object) : NULL;
3075 if (dst_bo && !dst->addr && !ranges->offset && ranges->size == dst_bo->size)
3076 map_flags |= WINED3D_MAP_DISCARD;
3078 if (dst_bo && src_bo)
3080 if (gl_info->supported[ARB_COPY_BUFFER])
3082 GL_EXTCALL(glBindBuffer(GL_COPY_READ_BUFFER, src_bo->id));
3083 GL_EXTCALL(glBindBuffer(GL_COPY_WRITE_BUFFER, dst_bo->id));
3085 for (i = 0; i < range_count; ++i)
3086 GL_EXTCALL(glCopyBufferSubData(GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER,
3087 src_bo->b.buffer_offset + (GLintptr)src->addr + ranges[i].offset,
3088 dst_bo->b.buffer_offset + (GLintptr)dst->addr + ranges[i].offset, ranges[i].size));
3089 checkGLcall("direct buffer copy");
3091 wined3d_context_gl_reference_bo(context_gl, src_bo);
3092 wined3d_context_gl_reference_bo(context_gl, dst_bo);
3094 else
3096 src_ptr = wined3d_context_gl_map_bo_address(context_gl, src,
3097 src_bo->size - (uintptr_t)src->addr, WINED3D_MAP_READ);
3098 dst_ptr = wined3d_context_gl_map_bo_address(context_gl, dst,
3099 dst_bo->size - (uintptr_t)dst->addr, map_flags);
3101 for (i = 0; i < range_count; ++i)
3102 memcpy(dst_ptr + ranges[i].offset, src_ptr + ranges[i].offset, ranges[i].size);
3104 wined3d_context_gl_unmap_bo_address(context_gl, dst, range_count, ranges);
3105 wined3d_context_gl_unmap_bo_address(context_gl, src, 0, NULL);
3108 else if (!dst_bo && src_bo)
3110 wined3d_context_gl_bind_bo(context_gl, src_bo->binding, src_bo->id);
3111 for (i = 0; i < range_count; ++i)
3112 GL_EXTCALL(glGetBufferSubData(src_bo->binding,
3113 src_bo->b.buffer_offset + (GLintptr)src->addr + ranges[i].offset,
3114 ranges[i].size, dst->addr + ranges[i].offset));
3115 checkGLcall("buffer download");
3117 wined3d_context_gl_reference_bo(context_gl, src_bo);
3119 else if (dst_bo && !src_bo)
3121 if ((map_flags & WINED3D_MAP_DISCARD) && (dst_bo->flags & GL_MAP_WRITE_BIT))
3123 dst_ptr = wined3d_context_gl_map_bo_address(context_gl, dst, dst_bo->size, map_flags);
3124 memcpy(dst_ptr, src->addr, dst_bo->size);
3125 wined3d_context_gl_unmap_bo_address(context_gl, dst, range_count, ranges);
3127 else
3129 wined3d_context_gl_bind_bo(context_gl, dst_bo->binding, dst_bo->id);
3130 for (i = 0; i < range_count; ++i)
3131 GL_EXTCALL(glBufferSubData(dst_bo->binding,
3132 dst_bo->b.buffer_offset + (GLintptr)dst->addr + ranges[i].offset,
3133 ranges[i].size, src->addr + ranges[i].offset));
3134 checkGLcall("buffer upload");
3136 wined3d_context_gl_reference_bo(context_gl, dst_bo);
3139 else
3141 for (i = 0; i < range_count; ++i)
3142 memcpy(dst->addr + ranges[i].offset, src->addr + ranges[i].offset, ranges[i].size);
3146 void wined3d_context_gl_destroy_bo(struct wined3d_context_gl *context_gl, struct wined3d_bo_gl *bo)
3148 struct wined3d_device_gl *device_gl = wined3d_device_gl(context_gl->c.device);
3149 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
3151 TRACE("context_gl %p, bo %p.\n", context_gl, bo);
3153 if (bo->memory)
3155 unsigned int order = bo->memory->order;
3157 if (bo->b.map_ptr)
3158 wined3d_allocator_chunk_gl_unmap(wined3d_allocator_chunk_gl(bo->memory->chunk), context_gl);
3159 wined3d_context_gl_destroy_allocator_block(context_gl, bo->memory, bo->command_fence_id);
3161 if (bo->command_fence_id == device_gl->current_fence_id)
3163 device_gl->retired_bo_size += WINED3D_ALLOCATOR_CHUNK_SIZE >> order;
3164 if (device_gl->retired_bo_size > WINED3D_RETIRED_BO_SIZE_THRESHOLD)
3165 wined3d_context_gl_submit_command_fence(context_gl);
3168 bo->id = 0;
3169 return;
3172 if (bo->b.map_ptr)
3174 wined3d_context_gl_bind_bo(context_gl, bo->binding, bo->id);
3175 GL_EXTCALL(glUnmapBuffer(bo->binding));
3176 adapter_adjust_mapped_memory(context_gl->c.device->adapter, -bo->size);
3179 TRACE("Destroying GL buffer %u.\n", bo->id);
3181 GL_EXTCALL(glDeleteBuffers(1, &bo->id));
3182 checkGLcall("buffer object destruction");
3183 bo->id = 0;
3186 static void wined3d_context_gl_set_render_offscreen(struct wined3d_context_gl *context_gl, BOOL offscreen)
3188 if (context_gl->c.render_offscreen == offscreen)
3189 return;
3191 context_invalidate_state(&context_gl->c, STATE_VIEWPORT);
3192 context_invalidate_state(&context_gl->c, STATE_SCISSORRECT);
3193 if (!context_gl->gl_info->supported[ARB_CLIP_CONTROL])
3195 context_invalidate_state(&context_gl->c, STATE_RASTERIZER);
3196 context_invalidate_state(&context_gl->c, STATE_POINTSPRITECOORDORIGIN);
3197 context_invalidate_state(&context_gl->c, STATE_TRANSFORM(WINED3D_TS_PROJECTION));
3199 context_invalidate_state(&context_gl->c, STATE_SHADER(WINED3D_SHADER_TYPE_DOMAIN));
3200 if (context_gl->gl_info->supported[ARB_FRAGMENT_COORD_CONVENTIONS])
3201 context_invalidate_state(&context_gl->c, STATE_SHADER(WINED3D_SHADER_TYPE_PIXEL));
3202 context_gl->c.render_offscreen = offscreen;
3205 GLenum wined3d_context_gl_get_offscreen_gl_buffer(const struct wined3d_context_gl *context_gl)
3207 switch (wined3d_settings.offscreen_rendering_mode)
3209 case ORM_FBO:
3210 return GL_COLOR_ATTACHMENT0;
3212 case ORM_BACKBUFFER:
3213 return context_gl->aux_buffers > 0 ? GL_AUX0 : GL_BACK;
3215 default:
3216 FIXME("Unhandled offscreen rendering mode %#x.\n", wined3d_settings.offscreen_rendering_mode);
3217 return GL_BACK;
3221 static uint32_t wined3d_context_gl_generate_rt_mask_no_fbo(const struct wined3d_context_gl *context_gl,
3222 struct wined3d_resource *rt)
3224 if (!rt || rt->format->id == WINED3DFMT_NULL)
3225 return 0;
3226 else if (rt->type != WINED3D_RTYPE_BUFFER && texture_from_resource(rt)->swapchain)
3227 return context_generate_rt_mask_from_resource(rt);
3228 else
3229 return context_generate_rt_mask(wined3d_context_gl_get_offscreen_gl_buffer(context_gl));
3232 /* Context activation is done by the caller. */
3233 void wined3d_context_gl_apply_blit_state(struct wined3d_context_gl *context_gl, const struct wined3d_device *device)
3235 struct wined3d_context *context = &context_gl->c;
3236 const struct wined3d_gl_info *gl_info;
3237 uint32_t rt_mask, *cur_mask;
3238 struct wined3d_texture *rt;
3239 unsigned int sampler;
3240 SIZE rt_size;
3242 TRACE("Setting up context %p for blitting.\n", context);
3244 gl_info = context_gl->gl_info;
3245 rt = context->current_rt.texture;
3247 if (wined3d_settings.offscreen_rendering_mode == ORM_FBO)
3249 if (context->render_offscreen)
3251 wined3d_texture_load(rt, context, FALSE);
3253 wined3d_context_gl_apply_fbo_state_blit(context_gl, GL_FRAMEBUFFER, &rt->resource,
3254 context->current_rt.sub_resource_idx, NULL, 0, rt->resource.draw_binding);
3255 if (rt->resource.format->id != WINED3DFMT_NULL)
3256 rt_mask = 1;
3257 else
3258 rt_mask = 0;
3260 else
3262 context_gl->current_fbo = NULL;
3263 wined3d_context_gl_bind_fbo(context_gl, GL_FRAMEBUFFER, 0);
3264 rt_mask = context_generate_rt_mask_from_resource(&rt->resource);
3267 else
3269 rt_mask = wined3d_context_gl_generate_rt_mask_no_fbo(context_gl, &rt->resource);
3272 cur_mask = context_gl->current_fbo ? &context_gl->current_fbo->rt_mask : &context_gl->draw_buffers_mask;
3274 if (rt_mask != *cur_mask)
3276 wined3d_context_gl_apply_draw_buffers(context_gl, rt_mask);
3277 *cur_mask = rt_mask;
3280 if (wined3d_settings.offscreen_rendering_mode == ORM_FBO)
3281 wined3d_context_gl_check_fbo_status(context_gl, GL_FRAMEBUFFER);
3282 context_invalidate_state(context, STATE_FRAMEBUFFER);
3284 wined3d_context_gl_get_rt_size(context_gl, &rt_size);
3286 if (context->last_was_blit)
3288 if (context_gl->blit_size.cx != rt_size.cx || context_gl->blit_size.cy != rt_size.cy)
3290 gl_info->gl_ops.gl.p_glViewport(0, 0, rt_size.cx, rt_size.cy);
3291 context->viewport_count = WINED3D_MAX_VIEWPORTS;
3292 context_gl->blit_size = rt_size;
3293 /* No need to dirtify here, the states are still dirtified because
3294 * they weren't applied since the last context_apply_blit_state()
3295 * call. */
3297 checkGLcall("blit state application");
3298 TRACE("Context is already set up for blitting, nothing to do.\n");
3299 return;
3301 context->last_was_blit = TRUE;
3303 if (gl_info->supported[ARB_SAMPLER_OBJECTS])
3304 GL_EXTCALL(glBindSampler(0, 0));
3305 wined3d_context_gl_active_texture(context_gl, gl_info, 0);
3307 sampler = context_gl->rev_tex_unit_map[0];
3308 if (sampler != WINED3D_UNMAPPED_STAGE)
3310 if (sampler < WINED3D_MAX_TEXTURES)
3312 context_invalidate_state(context, STATE_TRANSFORM(WINED3D_TS_TEXTURE0 + sampler));
3313 context_invalidate_state(context, STATE_TEXTURESTAGE(sampler, WINED3D_TSS_COLOR_OP));
3315 context_invalidate_state(context, STATE_SAMPLER(sampler));
3317 context_invalidate_compute_state(context, STATE_COMPUTE_SHADER_RESOURCE_BINDING);
3318 context_invalidate_state(context, STATE_GRAPHICS_SHADER_RESOURCE_BINDING);
3320 if (gl_info->supported[WINED3D_GL_LEGACY_CONTEXT])
3322 gl_info->gl_ops.gl.p_glDisable(GL_ALPHA_TEST);
3323 context_invalidate_state(context, STATE_RENDER(WINED3D_RS_ALPHATESTENABLE));
3325 gl_info->gl_ops.gl.p_glDisable(GL_BLEND);
3326 gl_info->gl_ops.gl.p_glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
3327 context_invalidate_state(context, STATE_BLEND);
3328 gl_info->gl_ops.gl.p_glDisable(GL_CULL_FACE);
3329 gl_info->gl_ops.gl.p_glDisable(GL_SCISSOR_TEST);
3330 context_invalidate_state(context, STATE_RASTERIZER);
3331 gl_info->gl_ops.gl.p_glDisable(GL_DEPTH_TEST);
3332 gl_info->gl_ops.gl.p_glDisable(GL_STENCIL_TEST);
3333 context_invalidate_state(context, STATE_DEPTH_STENCIL);
3334 if (gl_info->supported[ARB_POINT_SPRITE])
3336 gl_info->gl_ops.gl.p_glDisable(GL_POINT_SPRITE_ARB);
3337 context_invalidate_state(context, STATE_RENDER(WINED3D_RS_POINTSPRITEENABLE));
3339 if (gl_info->supported[ARB_FRAMEBUFFER_SRGB])
3341 gl_info->gl_ops.gl.p_glDisable(GL_FRAMEBUFFER_SRGB);
3342 context_invalidate_state(context, STATE_RENDER(WINED3D_RS_SRGBWRITEENABLE));
3345 context->last_was_rhw = TRUE;
3346 context_invalidate_state(context, STATE_VDECL); /* because of last_was_rhw = TRUE */
3348 wined3d_context_gl_enable_clip_distances(context_gl, 0);
3349 context_invalidate_state(context, STATE_RENDER(WINED3D_RS_CLIPPING));
3351 /* FIXME: Make draw_textured_quad() able to work with a upper left origin. */
3352 if (gl_info->supported[ARB_CLIP_CONTROL])
3353 GL_EXTCALL(glClipControl(GL_LOWER_LEFT, GL_NEGATIVE_ONE_TO_ONE));
3354 gl_info->gl_ops.gl.p_glViewport(0, 0, rt_size.cx, rt_size.cy);
3355 context->viewport_count = WINED3D_MAX_VIEWPORTS;
3356 context_invalidate_state(context, STATE_VIEWPORT);
3358 device->shader_backend->shader_disable(device->shader_priv, context);
3360 context_gl->blit_size = rt_size;
3362 checkGLcall("blit state application");
3365 static void wined3d_context_gl_apply_blit_projection(const struct wined3d_context_gl *context_gl,
3366 unsigned int w, unsigned int h)
3368 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
3369 const GLdouble projection[] =
3371 2.0 / w, 0.0, 0.0, 0.0,
3372 0.0, 2.0 / h, 0.0, 0.0,
3373 0.0, 0.0, 2.0, 0.0,
3374 -1.0, -1.0, -1.0, 1.0,
3377 gl_info->gl_ops.gl.p_glMatrixMode(GL_PROJECTION);
3378 gl_info->gl_ops.gl.p_glLoadMatrixd(projection);
3381 /* Setup OpenGL states for fixed-function blitting. */
3382 /* Context activation is done by the caller. */
3383 void wined3d_context_gl_apply_ffp_blit_state(struct wined3d_context_gl *context_gl,
3384 const struct wined3d_device *device)
3386 struct wined3d_context *context = &context_gl->c;
3387 const struct wined3d_gl_info *gl_info;
3388 unsigned int i, sampler;
3390 gl_info = context_gl->gl_info;
3391 if (!gl_info->supported[WINED3D_GL_LEGACY_CONTEXT])
3392 ERR("Applying fixed-function state without legacy context support.\n");
3394 if (context->last_was_ffp_blit)
3396 SIZE rt_size;
3398 wined3d_context_gl_get_rt_size(context_gl, &rt_size);
3399 if (context_gl->blit_size.cx != rt_size.cx || context_gl->blit_size.cy != rt_size.cy)
3400 wined3d_context_gl_apply_blit_projection(context_gl, rt_size.cx, rt_size.cy);
3401 wined3d_context_gl_apply_blit_state(context_gl, device);
3403 checkGLcall("ffp blit state application");
3404 return;
3406 context->last_was_ffp_blit = TRUE;
3408 wined3d_context_gl_apply_blit_state(context_gl, device);
3410 /* Disable all textures. The caller can then bind a texture it wants to blit
3411 * from. */
3412 for (i = gl_info->limits.textures - 1; i > 0 ; --i)
3414 wined3d_context_gl_active_texture(context_gl, gl_info, i);
3416 if (gl_info->supported[ARB_TEXTURE_CUBE_MAP])
3417 gl_info->gl_ops.gl.p_glDisable(GL_TEXTURE_CUBE_MAP_ARB);
3418 gl_info->gl_ops.gl.p_glDisable(GL_TEXTURE_3D);
3419 if (gl_info->supported[ARB_TEXTURE_RECTANGLE])
3420 gl_info->gl_ops.gl.p_glDisable(GL_TEXTURE_RECTANGLE_ARB);
3421 gl_info->gl_ops.gl.p_glDisable(GL_TEXTURE_2D);
3423 gl_info->gl_ops.gl.p_glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
3425 sampler = context_gl->rev_tex_unit_map[i];
3426 if (sampler != WINED3D_UNMAPPED_STAGE)
3428 if (sampler < WINED3D_MAX_TEXTURES)
3429 context_invalidate_state(context, STATE_TEXTURESTAGE(sampler, WINED3D_TSS_COLOR_OP));
3430 context_invalidate_state(context, STATE_SAMPLER(sampler));
3434 wined3d_context_gl_active_texture(context_gl, gl_info, 0);
3436 if (gl_info->supported[ARB_TEXTURE_CUBE_MAP])
3437 gl_info->gl_ops.gl.p_glDisable(GL_TEXTURE_CUBE_MAP_ARB);
3438 gl_info->gl_ops.gl.p_glDisable(GL_TEXTURE_3D);
3439 if (gl_info->supported[ARB_TEXTURE_RECTANGLE])
3440 gl_info->gl_ops.gl.p_glDisable(GL_TEXTURE_RECTANGLE_ARB);
3441 gl_info->gl_ops.gl.p_glDisable(GL_TEXTURE_2D);
3443 gl_info->gl_ops.gl.p_glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
3444 if (gl_info->supported[EXT_TEXTURE_LOD_BIAS])
3445 gl_info->gl_ops.gl.p_glTexEnvf(GL_TEXTURE_FILTER_CONTROL_EXT, GL_TEXTURE_LOD_BIAS_EXT, 0.0f);
3447 gl_info->gl_ops.gl.p_glMatrixMode(GL_TEXTURE);
3448 gl_info->gl_ops.gl.p_glLoadIdentity();
3450 /* Setup transforms. */
3451 gl_info->gl_ops.gl.p_glMatrixMode(GL_MODELVIEW);
3452 gl_info->gl_ops.gl.p_glLoadIdentity();
3453 context_invalidate_state(context, STATE_TRANSFORM(WINED3D_TS_WORLD_MATRIX(0)));
3454 wined3d_context_gl_apply_blit_projection(context_gl, context_gl->blit_size.cx, context_gl->blit_size.cy);
3455 context_invalidate_state(context, STATE_TRANSFORM(WINED3D_TS_PROJECTION));
3457 /* Other misc states. */
3458 gl_info->gl_ops.gl.p_glDisable(GL_LIGHTING);
3459 context_invalidate_state(context, STATE_RENDER(WINED3D_RS_LIGHTING));
3460 gl_info->p_glDisableWINE(GL_FOG);
3461 context_invalidate_state(context, STATE_RENDER(WINED3D_RS_FOGENABLE));
3463 if (gl_info->supported[EXT_SECONDARY_COLOR])
3465 gl_info->gl_ops.gl.p_glDisable(GL_COLOR_SUM_EXT);
3466 context_invalidate_state(context, STATE_RENDER(WINED3D_RS_SPECULARENABLE));
3468 checkGLcall("ffp blit state application");
3471 static BOOL have_framebuffer_attachment(unsigned int rt_count, struct wined3d_rendertarget_view * const *rts,
3472 const struct wined3d_rendertarget_view *ds)
3474 unsigned int i;
3476 if (ds)
3477 return TRUE;
3479 for (i = 0; i < rt_count; ++i)
3481 if (rts[i] && rts[i]->format->id != WINED3DFMT_NULL)
3482 return TRUE;
3485 return FALSE;
3488 /* Context activation is done by the caller. */
3489 BOOL wined3d_context_gl_apply_clear_state(struct wined3d_context_gl *context_gl,
3490 const struct wined3d_state *state, unsigned int rt_count, const struct wined3d_fb_state *fb)
3492 struct wined3d_rendertarget_view * const *rts = fb->render_targets;
3493 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
3494 struct wined3d_rendertarget_view *dsv = fb->depth_stencil;
3495 uint32_t rt_mask = 0, *cur_mask;
3496 unsigned int i;
3498 if (isStateDirty(&context_gl->c, STATE_FRAMEBUFFER) || fb != &state->fb
3499 || rt_count != gl_info->limits.buffers)
3501 if (!have_framebuffer_attachment(rt_count, rts, dsv))
3503 WARN("Invalid render target config, need at least one attachment.\n");
3504 return FALSE;
3507 if (wined3d_settings.offscreen_rendering_mode == ORM_FBO)
3509 struct wined3d_rendertarget_info ds_info = {{0}};
3511 if (!rt_count || wined3d_resource_is_offscreen(rts[0]->resource))
3513 memset(context_gl->blit_targets, 0, sizeof(context_gl->blit_targets));
3514 for (i = 0; i < rt_count; ++i)
3516 if (rts[i])
3518 struct wined3d_rendertarget_view_gl *rtv_gl = wined3d_rendertarget_view_gl(rts[i]);
3519 context_gl->blit_targets[i].gl_view = rtv_gl->gl_view;
3520 context_gl->blit_targets[i].resource = rtv_gl->v.resource;
3521 context_gl->blit_targets[i].sub_resource_idx = rtv_gl->v.sub_resource_idx;
3522 context_gl->blit_targets[i].layer_count = rtv_gl->v.layer_count;
3524 if (rts[i] && rts[i]->format->id != WINED3DFMT_NULL)
3525 rt_mask |= (1u << i);
3528 if (dsv)
3530 struct wined3d_rendertarget_view_gl *dsv_gl = wined3d_rendertarget_view_gl(dsv);
3531 ds_info.gl_view = dsv_gl->gl_view;
3532 ds_info.resource = dsv_gl->v.resource;
3533 ds_info.sub_resource_idx = dsv_gl->v.sub_resource_idx;
3534 ds_info.layer_count = dsv_gl->v.layer_count;
3537 wined3d_context_gl_apply_fbo_state(context_gl, GL_FRAMEBUFFER, context_gl->blit_targets, &ds_info,
3538 rt_count ? rts[0]->resource->draw_binding : 0, dsv ? dsv->resource->draw_binding : 0);
3540 else
3542 wined3d_context_gl_apply_fbo_state(context_gl, GL_FRAMEBUFFER, NULL, &ds_info,
3543 WINED3D_LOCATION_DRAWABLE, WINED3D_LOCATION_DRAWABLE);
3544 rt_mask = context_generate_rt_mask_from_resource(rts[0]->resource);
3547 /* If the framebuffer is not the device's fb the device's fb has to be reapplied
3548 * next draw. Otherwise we could mark the framebuffer state clean here, once the
3549 * state management allows this */
3550 context_invalidate_state(&context_gl->c, STATE_FRAMEBUFFER);
3552 else
3554 rt_mask = wined3d_context_gl_generate_rt_mask_no_fbo(context_gl, rt_count ? rts[0]->resource : NULL);
3557 else if (wined3d_settings.offscreen_rendering_mode == ORM_FBO
3558 && (!rt_count || wined3d_resource_is_offscreen(rts[0]->resource)))
3560 for (i = 0; i < rt_count; ++i)
3562 if (rts[i] && rts[i]->format->id != WINED3DFMT_NULL)
3563 rt_mask |= (1u << i);
3566 else
3568 rt_mask = wined3d_context_gl_generate_rt_mask_no_fbo(context_gl, rt_count ? rts[0]->resource : NULL);
3571 cur_mask = context_gl->current_fbo ? &context_gl->current_fbo->rt_mask : &context_gl->draw_buffers_mask;
3573 if (rt_mask != *cur_mask)
3575 wined3d_context_gl_apply_draw_buffers(context_gl, rt_mask);
3576 *cur_mask = rt_mask;
3577 context_invalidate_state(&context_gl->c, STATE_FRAMEBUFFER);
3580 if (wined3d_settings.offscreen_rendering_mode == ORM_FBO)
3581 wined3d_context_gl_check_fbo_status(context_gl, GL_FRAMEBUFFER);
3583 context_gl->c.last_was_blit = FALSE;
3584 context_gl->c.last_was_ffp_blit = FALSE;
3586 /* Blending and clearing should be orthogonal, but tests on the nvidia
3587 * driver show that disabling blending when clearing improves the clearing
3588 * performance incredibly. */
3589 gl_info->gl_ops.gl.p_glDisable(GL_BLEND);
3590 gl_info->gl_ops.gl.p_glEnable(GL_SCISSOR_TEST);
3591 if (rt_count && gl_info->supported[ARB_FRAMEBUFFER_SRGB])
3593 if (needs_srgb_write(context_gl->c.d3d_info, state, fb))
3594 gl_info->gl_ops.gl.p_glEnable(GL_FRAMEBUFFER_SRGB);
3595 else
3596 gl_info->gl_ops.gl.p_glDisable(GL_FRAMEBUFFER_SRGB);
3597 context_invalidate_state(&context_gl->c, STATE_RENDER(WINED3D_RS_SRGBWRITEENABLE));
3599 checkGLcall("setting up state for clear");
3601 context_invalidate_state(&context_gl->c, STATE_BLEND);
3602 context_invalidate_state(&context_gl->c, STATE_RASTERIZER);
3603 context_invalidate_state(&context_gl->c, STATE_SCISSORRECT);
3605 return TRUE;
3608 static uint32_t find_draw_buffers_mask(const struct wined3d_context_gl *context_gl, const struct wined3d_state *state)
3610 struct wined3d_rendertarget_view * const *rts = state->fb.render_targets;
3611 struct wined3d_shader *ps = state->shader[WINED3D_SHADER_TYPE_PIXEL];
3612 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
3613 unsigned int rt_mask, mask;
3614 unsigned int i;
3616 if (wined3d_settings.offscreen_rendering_mode != ORM_FBO)
3617 return wined3d_context_gl_generate_rt_mask_no_fbo(context_gl, rts[0]->resource);
3618 else if (!context_gl->c.render_offscreen)
3619 return context_generate_rt_mask_from_resource(rts[0]->resource);
3621 rt_mask = ps ? ps->reg_maps.rt_mask : 1;
3622 rt_mask &= wined3d_mask_from_size(gl_info->limits.buffers);
3623 if (state->blend_state && state->blend_state->dual_source)
3624 rt_mask = 1;
3626 mask = rt_mask;
3627 while (mask)
3629 i = wined3d_bit_scan(&mask);
3630 if (!rts[i] || rts[i]->format->id == WINED3DFMT_NULL)
3631 rt_mask &= ~(1u << i);
3634 return rt_mask;
3637 void context_gl_apply_texture_draw_state(struct wined3d_context_gl *context_gl,
3638 struct wined3d_texture *texture, unsigned int sub_resource_idx, unsigned int location)
3640 const struct wined3d_format *format = texture->resource.format;
3641 GLenum buffer;
3643 if (wined3d_settings.offscreen_rendering_mode != ORM_FBO)
3644 return;
3646 if (format->depth_size || format->stencil_size)
3648 wined3d_context_gl_apply_fbo_state_blit(context_gl, GL_DRAW_FRAMEBUFFER,
3649 NULL, 0, &texture->resource, sub_resource_idx, location);
3651 buffer = GL_NONE;
3653 else
3655 wined3d_context_gl_apply_fbo_state_blit(context_gl, GL_DRAW_FRAMEBUFFER,
3656 &texture->resource, sub_resource_idx, NULL, 0, location);
3658 if (location == WINED3D_LOCATION_DRAWABLE)
3660 TRACE("Texture %p is onscreen.\n", texture);
3661 buffer = wined3d_texture_get_gl_buffer(texture);
3663 else
3665 TRACE("Texture %p is offscreen.\n", texture);
3666 buffer = GL_COLOR_ATTACHMENT0;
3670 wined3d_context_gl_set_draw_buffer(context_gl, buffer);
3671 wined3d_context_gl_check_fbo_status(context_gl, GL_DRAW_FRAMEBUFFER);
3672 context_invalidate_state(&context_gl->c, STATE_FRAMEBUFFER);
3675 /* Context activation is done by the caller. */
3676 void context_state_fb(struct wined3d_context *context, const struct wined3d_state *state, DWORD state_id)
3678 struct wined3d_context_gl *context_gl = wined3d_context_gl(context);
3679 uint32_t rt_mask = find_draw_buffers_mask(context_gl, state);
3680 const struct wined3d_fb_state *fb = &state->fb;
3681 DWORD color_location = 0;
3682 uint32_t *cur_mask;
3684 if (wined3d_settings.offscreen_rendering_mode == ORM_FBO)
3686 struct wined3d_rendertarget_info ds_info = {{0}};
3688 if (!context->render_offscreen)
3690 wined3d_context_gl_apply_fbo_state(context_gl, GL_FRAMEBUFFER, NULL, &ds_info,
3691 WINED3D_LOCATION_DRAWABLE, WINED3D_LOCATION_DRAWABLE);
3693 else
3695 const struct wined3d_rendertarget_view_gl *view_gl;
3696 unsigned int i;
3698 memset(context_gl->blit_targets, 0, sizeof(context_gl->blit_targets));
3699 for (i = 0; i < context_gl->gl_info->limits.buffers; ++i)
3701 if (!fb->render_targets[i])
3702 continue;
3704 view_gl = wined3d_rendertarget_view_gl(fb->render_targets[i]);
3705 context_gl->blit_targets[i].gl_view = view_gl->gl_view;
3706 context_gl->blit_targets[i].resource = view_gl->v.resource;
3707 context_gl->blit_targets[i].sub_resource_idx = view_gl->v.sub_resource_idx;
3708 context_gl->blit_targets[i].layer_count = view_gl->v.layer_count;
3710 if (!color_location)
3711 color_location = view_gl->v.resource->draw_binding;
3714 if (fb->depth_stencil)
3716 view_gl = wined3d_rendertarget_view_gl(fb->depth_stencil);
3717 ds_info.gl_view = view_gl->gl_view;
3718 ds_info.resource = view_gl->v.resource;
3719 ds_info.sub_resource_idx = view_gl->v.sub_resource_idx;
3720 ds_info.layer_count = view_gl->v.layer_count;
3723 wined3d_context_gl_apply_fbo_state(context_gl, GL_FRAMEBUFFER, context_gl->blit_targets, &ds_info,
3724 color_location, fb->depth_stencil ? fb->depth_stencil->resource->draw_binding : 0);
3728 cur_mask = context_gl->current_fbo ? &context_gl->current_fbo->rt_mask : &context_gl->draw_buffers_mask;
3729 if (rt_mask != *cur_mask)
3731 wined3d_context_gl_apply_draw_buffers(context_gl, rt_mask);
3732 *cur_mask = rt_mask;
3734 context->constant_update_mask |= WINED3D_SHADER_CONST_PS_Y_CORR;
3737 static void wined3d_context_gl_map_stage(struct wined3d_context_gl *context_gl, unsigned int stage, unsigned int unit)
3739 unsigned int i = context_gl->rev_tex_unit_map[unit];
3740 unsigned int j = context_gl->tex_unit_map[stage];
3742 TRACE("Mapping stage %u to unit %u.\n", stage, unit);
3743 context_gl->tex_unit_map[stage] = unit;
3744 if (i != WINED3D_UNMAPPED_STAGE && i != stage)
3745 context_gl->tex_unit_map[i] = WINED3D_UNMAPPED_STAGE;
3747 context_gl->rev_tex_unit_map[unit] = stage;
3748 if (j != WINED3D_UNMAPPED_STAGE && j != unit)
3749 context_gl->rev_tex_unit_map[j] = WINED3D_UNMAPPED_STAGE;
3752 static void context_invalidate_texture_stage(struct wined3d_context *context, DWORD stage)
3754 DWORD i;
3756 for (i = 0; i <= WINED3D_HIGHEST_TEXTURE_STATE; ++i)
3757 context_invalidate_state(context, STATE_TEXTURESTAGE(stage, i));
3760 static void context_update_fixed_function_usage_map(struct wined3d_context *context,
3761 const struct wined3d_state *state)
3763 UINT i, start, end;
3765 context->fixed_function_usage_map = 0;
3766 for (i = 0; i < WINED3D_MAX_TEXTURES; ++i)
3768 enum wined3d_texture_op color_op = state->texture_states[i][WINED3D_TSS_COLOR_OP];
3769 enum wined3d_texture_op alpha_op = state->texture_states[i][WINED3D_TSS_ALPHA_OP];
3770 DWORD color_arg1 = state->texture_states[i][WINED3D_TSS_COLOR_ARG1] & WINED3DTA_SELECTMASK;
3771 DWORD color_arg2 = state->texture_states[i][WINED3D_TSS_COLOR_ARG2] & WINED3DTA_SELECTMASK;
3772 DWORD color_arg3 = state->texture_states[i][WINED3D_TSS_COLOR_ARG0] & WINED3DTA_SELECTMASK;
3773 DWORD alpha_arg1 = state->texture_states[i][WINED3D_TSS_ALPHA_ARG1] & WINED3DTA_SELECTMASK;
3774 DWORD alpha_arg2 = state->texture_states[i][WINED3D_TSS_ALPHA_ARG2] & WINED3DTA_SELECTMASK;
3775 DWORD alpha_arg3 = state->texture_states[i][WINED3D_TSS_ALPHA_ARG0] & WINED3DTA_SELECTMASK;
3777 /* Not used, and disable higher stages. */
3778 if (color_op == WINED3D_TOP_DISABLE)
3779 break;
3781 if (((color_arg1 == WINED3DTA_TEXTURE) && color_op != WINED3D_TOP_SELECT_ARG2)
3782 || ((color_arg2 == WINED3DTA_TEXTURE) && color_op != WINED3D_TOP_SELECT_ARG1)
3783 || ((color_arg3 == WINED3DTA_TEXTURE)
3784 && (color_op == WINED3D_TOP_MULTIPLY_ADD || color_op == WINED3D_TOP_LERP))
3785 || ((alpha_arg1 == WINED3DTA_TEXTURE) && alpha_op != WINED3D_TOP_SELECT_ARG2)
3786 || ((alpha_arg2 == WINED3DTA_TEXTURE) && alpha_op != WINED3D_TOP_SELECT_ARG1)
3787 || ((alpha_arg3 == WINED3DTA_TEXTURE)
3788 && (alpha_op == WINED3D_TOP_MULTIPLY_ADD || alpha_op == WINED3D_TOP_LERP)))
3789 context->fixed_function_usage_map |= (1u << i);
3791 if ((color_op == WINED3D_TOP_BUMPENVMAP || color_op == WINED3D_TOP_BUMPENVMAP_LUMINANCE)
3792 && i < WINED3D_MAX_TEXTURES - 1)
3793 context->fixed_function_usage_map |= (1u << (i + 1));
3796 if (i < context->lowest_disabled_stage)
3798 start = i;
3799 end = context->lowest_disabled_stage;
3801 else
3803 start = context->lowest_disabled_stage;
3804 end = i;
3807 context->lowest_disabled_stage = i;
3808 for (i = start + 1; i < end; ++i)
3810 context_invalidate_state(context, STATE_TEXTURESTAGE(i, WINED3D_TSS_COLOR_OP));
3814 static void wined3d_context_gl_map_fixed_function_samplers(struct wined3d_context_gl *context_gl,
3815 const struct wined3d_state *state)
3817 const struct wined3d_d3d_info *d3d_info = context_gl->c.d3d_info;
3818 unsigned int i, tex;
3819 uint32_t ffu_map;
3821 ffu_map = context_gl->c.fixed_function_usage_map;
3823 if (d3d_info->limits.ffp_textures == d3d_info->limits.ffp_blend_stages
3824 || context_gl->c.lowest_disabled_stage <= d3d_info->limits.ffp_textures)
3826 while (ffu_map)
3828 i = wined3d_bit_scan(&ffu_map);
3829 if (context_gl->tex_unit_map[i] != i)
3831 wined3d_context_gl_map_stage(context_gl, i, i);
3832 context_invalidate_state(&context_gl->c, STATE_SAMPLER(i));
3833 context_invalidate_texture_stage(&context_gl->c, i);
3836 return;
3839 /* Now work out the mapping */
3840 tex = 0;
3841 while (ffu_map)
3843 i = wined3d_bit_scan(&ffu_map);
3844 if (context_gl->tex_unit_map[i] != tex)
3846 wined3d_context_gl_map_stage(context_gl, i, tex);
3847 context_invalidate_state(&context_gl->c, STATE_SAMPLER(i));
3848 context_invalidate_texture_stage(&context_gl->c, i);
3851 ++tex;
3855 static void wined3d_context_gl_map_psamplers(struct wined3d_context_gl *context_gl, const struct wined3d_state *state)
3857 const struct wined3d_d3d_info *d3d_info = context_gl->c.d3d_info;
3858 const struct wined3d_shader_resource_info *resource_info =
3859 state->shader[WINED3D_SHADER_TYPE_PIXEL]->reg_maps.resource_info;
3860 unsigned int i;
3862 for (i = 0; i < WINED3D_MAX_FRAGMENT_SAMPLERS; ++i)
3864 if (resource_info[i].type && context_gl->tex_unit_map[i] != i)
3866 wined3d_context_gl_map_stage(context_gl, i, i);
3867 context_invalidate_state(&context_gl->c, STATE_SAMPLER(i));
3868 if (i < d3d_info->limits.ffp_blend_stages)
3869 context_invalidate_texture_stage(&context_gl->c, i);
3874 static BOOL wined3d_context_gl_unit_free_for_vs(const struct wined3d_context_gl *context_gl,
3875 const struct wined3d_shader_resource_info *ps_resource_info, unsigned int unit)
3877 unsigned int current_mapping = context_gl->rev_tex_unit_map[unit];
3879 /* Not currently used */
3880 if (current_mapping == WINED3D_UNMAPPED_STAGE)
3881 return TRUE;
3883 if (current_mapping < WINED3D_MAX_FRAGMENT_SAMPLERS)
3885 /* Used by a fragment sampler */
3887 if (!ps_resource_info)
3889 /* No pixel shader, check fixed function */
3890 return current_mapping >= WINED3D_MAX_TEXTURES
3891 || !(context_gl->c.fixed_function_usage_map & (1u << current_mapping));
3894 /* Pixel shader, check the shader's sampler map */
3895 return !ps_resource_info[current_mapping].type;
3898 return TRUE;
3901 static void wined3d_context_gl_map_vsamplers(struct wined3d_context_gl *context_gl,
3902 BOOL ps, const struct wined3d_state *state)
3904 const struct wined3d_shader_resource_info *vs_resource_info =
3905 state->shader[WINED3D_SHADER_TYPE_VERTEX]->reg_maps.resource_info;
3906 const struct wined3d_shader_resource_info *ps_resource_info = NULL;
3907 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
3908 int start = min(WINED3D_MAX_COMBINED_SAMPLERS, gl_info->limits.graphics_samplers) - 1;
3909 int i;
3911 /* Note that we only care if a resource is used or not, not the
3912 * resource's specific type. Otherwise we'd need to call
3913 * shader_update_samplers() here for 1.x pixelshaders. */
3914 if (ps)
3915 ps_resource_info = state->shader[WINED3D_SHADER_TYPE_PIXEL]->reg_maps.resource_info;
3917 for (i = 0; i < WINED3D_MAX_VERTEX_SAMPLERS; ++i)
3919 DWORD vsampler_idx = i + WINED3D_MAX_FRAGMENT_SAMPLERS;
3920 if (vs_resource_info[i].type)
3922 while (start >= 0)
3924 if (wined3d_context_gl_unit_free_for_vs(context_gl, ps_resource_info, start))
3926 if (context_gl->tex_unit_map[vsampler_idx] != start)
3928 wined3d_context_gl_map_stage(context_gl, vsampler_idx, start);
3929 context_invalidate_state(&context_gl->c, STATE_SAMPLER(vsampler_idx));
3932 --start;
3933 break;
3936 --start;
3938 if (context_gl->tex_unit_map[vsampler_idx] == WINED3D_UNMAPPED_STAGE)
3939 WARN("Couldn't find a free texture unit for vertex sampler %u.\n", i);
3944 static void wined3d_context_gl_update_tex_unit_map(struct wined3d_context_gl *context_gl,
3945 const struct wined3d_state *state)
3947 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
3948 BOOL vs = use_vs(state);
3949 BOOL ps = use_ps(state);
3951 if (!ps)
3952 context_update_fixed_function_usage_map(&context_gl->c, state);
3954 /* Try to go for a 1:1 mapping of the samplers when possible. Pixel shaders
3955 * need a 1:1 map at the moment.
3956 * When the mapping of a stage is changed, sampler and ALL texture stage
3957 * states have to be reset. */
3959 if (gl_info->limits.graphics_samplers >= WINED3D_MAX_COMBINED_SAMPLERS)
3960 return;
3962 if (ps)
3963 wined3d_context_gl_map_psamplers(context_gl, state);
3964 else
3965 wined3d_context_gl_map_fixed_function_samplers(context_gl, state);
3967 if (vs)
3968 wined3d_context_gl_map_vsamplers(context_gl, ps, state);
3971 /* Context activation is done by the caller. */
3972 void context_state_drawbuf(struct wined3d_context *context, const struct wined3d_state *state, DWORD state_id)
3974 struct wined3d_context_gl *context_gl = wined3d_context_gl(context);
3975 uint32_t rt_mask, *cur_mask;
3977 if (isStateDirty(context, STATE_FRAMEBUFFER)) return;
3979 cur_mask = context_gl->current_fbo ? &context_gl->current_fbo->rt_mask : &context_gl->draw_buffers_mask;
3980 rt_mask = find_draw_buffers_mask(context_gl, state);
3981 if (rt_mask != *cur_mask)
3983 wined3d_context_gl_apply_draw_buffers(context_gl, rt_mask);
3984 *cur_mask = rt_mask;
3988 static void wined3d_context_gl_bind_shader_resources(struct wined3d_context_gl *context_gl,
3989 const struct wined3d_state *state, enum wined3d_shader_type shader_type)
3991 unsigned int bind_idx, shader_sampler_count, base, count, i;
3992 const struct wined3d_device *device = context_gl->c.device;
3993 struct wined3d_shader_sampler_map_entry *entry;
3994 struct wined3d_shader_resource_view *view;
3995 const struct wined3d_shader *shader;
3996 const unsigned int *tex_unit_map;
3997 struct wined3d_sampler *sampler;
3999 if (!(shader = state->shader[shader_type]))
4000 return;
4002 tex_unit_map = wined3d_context_gl_get_tex_unit_mapping(context_gl,
4003 &shader->reg_maps.shader_version, &base, &count);
4005 shader_sampler_count = shader->reg_maps.sampler_map.count;
4006 if (shader_sampler_count > count)
4007 FIXME("Shader %p needs %u samplers, but only %u are supported.\n",
4008 shader, shader_sampler_count, count);
4009 count = min(shader_sampler_count, count);
4011 for (i = 0; i < count; ++i)
4013 entry = &shader->reg_maps.sampler_map.entries[i];
4014 bind_idx = base + entry->bind_idx;
4015 if (tex_unit_map)
4016 bind_idx = tex_unit_map[bind_idx];
4018 if (!(view = state->shader_resource_view[shader_type][entry->resource_idx]))
4020 WARN("No resource view bound at index %u, %u.\n", shader_type, entry->resource_idx);
4021 continue;
4024 if (entry->sampler_idx == WINED3D_SAMPLER_DEFAULT)
4025 sampler = device->default_sampler;
4026 else if (!(sampler = state->sampler[shader_type][entry->sampler_idx]))
4027 sampler = device->null_sampler;
4028 wined3d_shader_resource_view_gl_bind(wined3d_shader_resource_view_gl(view),
4029 bind_idx, wined3d_sampler_gl(sampler), context_gl);
4033 static void wined3d_context_gl_bind_unordered_access_views(struct wined3d_context_gl *context_gl,
4034 const struct wined3d_shader *shader, struct wined3d_unordered_access_view * const *views)
4036 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
4037 struct wined3d_unordered_access_view_gl *view_gl;
4038 const struct wined3d_format_gl *format_gl;
4039 GLuint texture_name;
4040 unsigned int i;
4041 GLint level;
4043 if (!shader)
4044 return;
4046 for (i = 0; i < MAX_UNORDERED_ACCESS_VIEWS; ++i)
4048 if (!views[i])
4050 if (shader->reg_maps.uav_resource_info[i].type)
4051 WARN("No unordered access view bound at index %u.\n", i);
4052 GL_EXTCALL(glBindImageTexture(i, 0, 0, GL_FALSE, 0, GL_READ_WRITE, GL_R8));
4053 continue;
4056 view_gl = wined3d_unordered_access_view_gl(views[i]);
4057 if (view_gl->gl_view.name)
4059 texture_name = view_gl->gl_view.name;
4060 level = 0;
4062 else if (view_gl->v.resource->type != WINED3D_RTYPE_BUFFER)
4064 struct wined3d_texture_gl *texture_gl = wined3d_texture_gl(texture_from_resource(view_gl->v.resource));
4065 texture_name = wined3d_texture_gl_get_texture_name(texture_gl, &context_gl->c, FALSE);
4066 level = view_gl->v.desc.u.texture.level_idx;
4068 else
4070 FIXME("Unsupported buffer unordered access view.\n");
4071 GL_EXTCALL(glBindImageTexture(i, 0, 0, GL_FALSE, 0, GL_READ_WRITE, GL_R8));
4072 continue;
4075 format_gl = wined3d_format_gl(view_gl->v.format);
4076 GL_EXTCALL(glBindImageTexture(i, texture_name, level, GL_TRUE, 0, GL_READ_WRITE,
4077 format_gl->internal));
4079 if (view_gl->counter_bo.id)
4080 GL_EXTCALL(glBindBufferRange(GL_ATOMIC_COUNTER_BUFFER, i, view_gl->counter_bo.id,
4081 view_gl->counter_bo.b.buffer_offset, view_gl->counter_bo.size));
4083 checkGLcall("Bind unordered access views");
4086 static void context_gl_load_shader_resources(struct wined3d_context_gl *context_gl,
4087 const struct wined3d_state *state, unsigned int shader_mask)
4089 struct wined3d_shader_sampler_map_entry *entry;
4090 struct wined3d_shader_resource_view_gl *srv_gl;
4091 struct wined3d_shader_resource_view *view;
4092 struct wined3d_shader *shader;
4093 struct wined3d_buffer *buffer;
4094 unsigned int i, j;
4096 for (i = 0; i < WINED3D_SHADER_TYPE_COUNT; ++i)
4098 if (!(shader_mask & (1u << i)))
4099 continue;
4101 if (!(shader = state->shader[i]))
4102 continue;
4104 for (j = 0; j < WINED3D_MAX_CBS; ++j)
4106 if (!state->cb[i][j].buffer)
4107 continue;
4109 buffer = state->cb[i][j].buffer;
4110 wined3d_buffer_load(buffer, &context_gl->c, state);
4111 wined3d_context_gl_reference_buffer(context_gl, buffer);
4112 if (!buffer->bo_user.valid)
4113 device_invalidate_state(context_gl->c.device, STATE_CONSTANT_BUFFER(i));
4116 for (j = 0; j < shader->reg_maps.sampler_map.count; ++j)
4118 entry = &shader->reg_maps.sampler_map.entries[j];
4120 if (!(view = state->shader_resource_view[i][entry->resource_idx]))
4121 continue;
4123 if (view->resource->type == WINED3D_RTYPE_BUFFER)
4125 buffer = buffer_from_resource(view->resource);
4126 wined3d_buffer_load(buffer, &context_gl->c, state);
4127 wined3d_context_gl_reference_buffer(context_gl, buffer);
4129 srv_gl = wined3d_shader_resource_view_gl(view);
4130 if (!srv_gl->bo_user.valid)
4131 wined3d_shader_resource_view_gl_update(srv_gl, context_gl);
4133 else
4135 wined3d_texture_load(texture_from_resource(view->resource), &context_gl->c, FALSE);
4141 static void context_gl_load_unordered_access_resources(struct wined3d_context_gl *context_gl,
4142 const struct wined3d_shader *shader, struct wined3d_unordered_access_view * const *views)
4144 struct wined3d_unordered_access_view_gl *uav_gl;
4145 struct wined3d_unordered_access_view *view;
4146 struct wined3d_texture *texture;
4147 struct wined3d_buffer *buffer;
4148 unsigned int i;
4150 context_gl->c.uses_uavs = 0;
4152 if (!shader)
4153 return;
4155 for (i = 0; i < MAX_UNORDERED_ACCESS_VIEWS; ++i)
4157 if (!(view = views[i]))
4158 continue;
4160 if (view->resource->type == WINED3D_RTYPE_BUFFER)
4162 buffer = buffer_from_resource(view->resource);
4163 wined3d_buffer_load_location(buffer, &context_gl->c, WINED3D_LOCATION_BUFFER);
4164 wined3d_unordered_access_view_invalidate_location(view, ~WINED3D_LOCATION_BUFFER);
4165 wined3d_context_gl_reference_buffer(context_gl, buffer);
4167 uav_gl = wined3d_unordered_access_view_gl(view);
4168 if (!uav_gl->bo_user.valid)
4169 wined3d_unordered_access_view_gl_update(uav_gl, context_gl);
4171 else
4173 texture = texture_from_resource(view->resource);
4174 wined3d_texture_load(texture, &context_gl->c, FALSE);
4175 wined3d_unordered_access_view_invalidate_location(view, ~WINED3D_LOCATION_TEXTURE_RGB);
4178 context_gl->c.uses_uavs = 1;
4182 static void context_gl_load_stream_output_buffers(struct wined3d_context_gl *context_gl,
4183 const struct wined3d_state *state)
4185 struct wined3d_buffer *buffer;
4186 unsigned int i;
4188 for (i = 0; i < ARRAY_SIZE(state->stream_output); ++i)
4190 if (!(buffer = state->stream_output[i].buffer))
4191 continue;
4193 wined3d_buffer_load(buffer, &context_gl->c, state);
4194 wined3d_buffer_invalidate_location(buffer, ~WINED3D_LOCATION_BUFFER);
4195 wined3d_context_gl_reference_buffer(context_gl, buffer);
4196 if (!buffer->bo_user.valid)
4197 device_invalidate_state(context_gl->c.device, STATE_STREAM_OUTPUT);
4201 /* Context activation is done by the caller. */
4202 static BOOL context_apply_draw_state(struct wined3d_context *context,
4203 const struct wined3d_device *device, const struct wined3d_state *state, BOOL indexed)
4205 const struct wined3d_state_entry *state_table = context->state_table;
4206 struct wined3d_context_gl *context_gl = wined3d_context_gl(context);
4207 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
4208 const struct wined3d_fb_state *fb = &state->fb;
4209 unsigned int i, base;
4210 uint32_t map;
4212 context->uses_fbo_attached_resources = 0;
4214 if (!have_framebuffer_attachment(gl_info->limits.buffers, fb->render_targets, fb->depth_stencil))
4216 if (!gl_info->supported[ARB_FRAMEBUFFER_NO_ATTACHMENTS])
4218 FIXME("OpenGL implementation does not support framebuffers with no attachments.\n");
4219 return FALSE;
4222 wined3d_context_gl_set_render_offscreen(context_gl, TRUE);
4225 /* Preload resources before FBO setup. Texture preload in particular may
4226 * result in changes to the current FBO, due to using e.g. FBO blits for
4227 * updating a resource location. */
4228 wined3d_context_gl_update_tex_unit_map(context_gl, state);
4229 context_preload_textures(context, state);
4230 context_gl_load_shader_resources(context_gl, state, ~(1u << WINED3D_SHADER_TYPE_COMPUTE));
4231 context_gl_load_unordered_access_resources(context_gl, state->shader[WINED3D_SHADER_TYPE_PIXEL],
4232 state->unordered_access_view[WINED3D_PIPELINE_GRAPHICS]);
4233 context_gl_load_stream_output_buffers(context_gl, state);
4234 /* TODO: Right now the dependency on the vertex shader is necessary
4235 * since wined3d_stream_info_from_declaration() depends on the reg_maps of
4236 * the current VS but maybe it's possible to relax the coupling in some
4237 * situations at least. */
4238 if (isStateDirty(context, STATE_VDECL) || isStateDirty(context, STATE_STREAMSRC)
4239 || isStateDirty(context, STATE_SHADER(WINED3D_SHADER_TYPE_VERTEX)))
4241 context_update_stream_info(context, state);
4244 map = context->stream_info.use_map;
4245 while (map)
4247 const struct wined3d_stream_info_element *e;
4248 struct wined3d_buffer *buffer;
4250 e = &context->stream_info.elements[wined3d_bit_scan(&map)];
4251 buffer = state->streams[e->stream_idx].buffer;
4253 if (!buffer->bo_user.valid)
4254 device_invalidate_state(device, STATE_STREAMSRC);
4255 else
4256 wined3d_buffer_load(buffer, context, state);
4258 /* Loading the buffers above may have invalidated the stream info. */
4259 if (wined3d_context_is_graphics_state_dirty(context, STATE_STREAMSRC))
4260 context_update_stream_info(context, state);
4262 map = context->stream_info.use_map;
4263 while (map)
4265 const struct wined3d_stream_info_element *e;
4266 struct wined3d_buffer *buffer;
4268 e = &context->stream_info.elements[wined3d_bit_scan(&map)];
4269 buffer = state->streams[e->stream_idx].buffer;
4271 wined3d_context_gl_reference_buffer(context_gl, buffer);
4274 if (indexed && state->index_buffer)
4276 struct wined3d_buffer *buffer = state->index_buffer;
4278 if (context->stream_info.all_vbo)
4280 wined3d_buffer_load(buffer, context, state);
4281 if (!buffer->bo_user.valid)
4282 device_invalidate_state(device, STATE_INDEXBUFFER);
4283 wined3d_context_gl_reference_buffer(context_gl, buffer);
4285 else
4287 wined3d_buffer_load_sysmem(buffer, context);
4291 for (i = 0, base = 0; i < ARRAY_SIZE(context->dirty_graphics_states); ++i)
4293 uint32_t dirty_mask = context->dirty_graphics_states[i];
4295 while (dirty_mask)
4297 unsigned int state_id = base + wined3d_bit_scan(&dirty_mask);
4299 state_table[state_id].apply(context, state, state_id);
4301 base += sizeof(dirty_mask) * CHAR_BIT;
4304 memset(context->dirty_graphics_states, 0, sizeof(context->dirty_graphics_states));
4306 if (context->shader_update_mask & ~(1u << WINED3D_SHADER_TYPE_COMPUTE))
4308 device->shader_backend->shader_select(device->shader_priv, context, state);
4309 context->shader_update_mask &= 1u << WINED3D_SHADER_TYPE_COMPUTE;
4312 if (context->constant_update_mask)
4314 device->shader_backend->shader_load_constants(device->shader_priv, context, state);
4315 context->constant_update_mask = 0;
4318 if (context->update_shader_resource_bindings)
4320 for (i = 0; i < WINED3D_SHADER_TYPE_GRAPHICS_COUNT; ++i)
4321 wined3d_context_gl_bind_shader_resources(context_gl, state, i);
4322 context->update_shader_resource_bindings = 0;
4323 if (gl_info->limits.combined_samplers == gl_info->limits.graphics_samplers)
4324 context->update_compute_shader_resource_bindings = 1;
4327 if (context->update_unordered_access_view_bindings)
4329 wined3d_context_gl_bind_unordered_access_views(context_gl,
4330 state->shader[WINED3D_SHADER_TYPE_PIXEL],
4331 state->unordered_access_view[WINED3D_PIPELINE_GRAPHICS]);
4332 context->update_unordered_access_view_bindings = 0;
4333 context->update_compute_unordered_access_view_bindings = 1;
4336 if (wined3d_settings.offscreen_rendering_mode == ORM_FBO)
4337 wined3d_context_gl_check_fbo_status(context_gl, GL_FRAMEBUFFER);
4339 context->last_was_blit = FALSE;
4340 context->last_was_ffp_blit = FALSE;
4342 return TRUE;
4345 static void wined3d_context_gl_apply_compute_state(struct wined3d_context_gl *context_gl,
4346 const struct wined3d_device *device, const struct wined3d_state *state)
4348 const struct wined3d_state_entry *state_table = context_gl->c.state_table;
4349 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
4350 unsigned int state_id, i;
4352 context_gl_load_shader_resources(context_gl, state, 1u << WINED3D_SHADER_TYPE_COMPUTE);
4353 context_gl_load_unordered_access_resources(context_gl, state->shader[WINED3D_SHADER_TYPE_COMPUTE],
4354 state->unordered_access_view[WINED3D_PIPELINE_COMPUTE]);
4356 for (i = 0, state_id = STATE_COMPUTE_OFFSET; i < ARRAY_SIZE(context_gl->c.dirty_compute_states); ++i)
4358 unsigned int dirty_mask = context_gl->c.dirty_compute_states[i];
4360 while (dirty_mask)
4362 unsigned int current_state_id = state_id + wined3d_bit_scan(&dirty_mask);
4363 state_table[current_state_id].apply(&context_gl->c, state, current_state_id);
4365 state_id += sizeof(*context_gl->c.dirty_compute_states) * CHAR_BIT;
4367 memset(context_gl->c.dirty_compute_states, 0, sizeof(*context_gl->c.dirty_compute_states));
4369 if (context_gl->c.shader_update_mask & (1u << WINED3D_SHADER_TYPE_COMPUTE))
4371 device->shader_backend->shader_select_compute(device->shader_priv, &context_gl->c, state);
4372 context_gl->c.shader_update_mask &= ~(1u << WINED3D_SHADER_TYPE_COMPUTE);
4375 if (context_gl->c.update_compute_shader_resource_bindings)
4377 wined3d_context_gl_bind_shader_resources(context_gl, state, WINED3D_SHADER_TYPE_COMPUTE);
4378 context_gl->c.update_compute_shader_resource_bindings = 0;
4379 if (gl_info->limits.combined_samplers == gl_info->limits.graphics_samplers)
4380 context_gl->c.update_shader_resource_bindings = 1;
4383 if (context_gl->c.update_compute_unordered_access_view_bindings)
4385 wined3d_context_gl_bind_unordered_access_views(context_gl,
4386 state->shader[WINED3D_SHADER_TYPE_COMPUTE],
4387 state->unordered_access_view[WINED3D_PIPELINE_COMPUTE]);
4388 context_gl->c.update_compute_unordered_access_view_bindings = 0;
4389 context_gl->c.update_unordered_access_view_bindings = 1;
4392 /* Updates to currently bound render targets aren't necessarily coherent
4393 * between the graphics and compute pipelines. Unbind any currently bound
4394 * FBO here to ensure preceding updates to its attachments by the graphics
4395 * pipeline are visible to the compute pipeline.
4397 * Without this, the bloom effect in Nier:Automata is too bright on the
4398 * Mesa radeonsi driver, and presumably on other Mesa based drivers. */
4399 wined3d_context_gl_bind_fbo(context_gl, GL_FRAMEBUFFER, 0);
4400 context_invalidate_state(&context_gl->c, STATE_FRAMEBUFFER);
4402 context_gl->c.last_was_blit = FALSE;
4403 context_gl->c.last_was_ffp_blit = FALSE;
4406 void wined3d_context_gl_end_transform_feedback(struct wined3d_context_gl *context_gl)
4408 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
4410 if (context_gl->c.transform_feedback_active)
4412 GL_EXTCALL(glEndTransformFeedback());
4413 checkGLcall("glEndTransformFeedback");
4414 context_gl->c.transform_feedback_active = 0;
4415 context_gl->c.transform_feedback_paused = 0;
4419 static void wined3d_context_gl_pause_transform_feedback(struct wined3d_context_gl *context_gl, BOOL force)
4421 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
4423 if (!context_gl->c.transform_feedback_active || context_gl->c.transform_feedback_paused)
4424 return;
4426 if (gl_info->supported[ARB_TRANSFORM_FEEDBACK2])
4428 GL_EXTCALL(glPauseTransformFeedback());
4429 checkGLcall("glPauseTransformFeedback");
4430 context_gl->c.transform_feedback_paused = 1;
4431 return;
4434 WARN("Cannot pause transform feedback operations.\n");
4436 if (force)
4437 wined3d_context_gl_end_transform_feedback(context_gl);
4440 static void wined3d_context_gl_setup_target(struct wined3d_context_gl *context_gl,
4441 struct wined3d_texture *texture, unsigned int sub_resource_idx)
4443 BOOL old_render_offscreen = context_gl->c.render_offscreen, render_offscreen;
4445 render_offscreen = wined3d_resource_is_offscreen(&texture->resource);
4446 if (context_gl->c.current_rt.texture == texture
4447 && context_gl->c.current_rt.sub_resource_idx == sub_resource_idx
4448 && render_offscreen == old_render_offscreen)
4449 return;
4451 /* To compensate the lack of format switching with some offscreen rendering methods and on onscreen buffers
4452 * the alpha blend state changes with different render target formats. */
4453 if (!context_gl->c.current_rt.texture)
4455 context_invalidate_state(&context_gl->c, STATE_BLEND);
4457 else
4459 const struct wined3d_format *old = context_gl->c.current_rt.texture->resource.format;
4460 const struct wined3d_format *new = texture->resource.format;
4462 if (old->id != new->id)
4464 /* Disable blending when the alpha mask has changed and when a format doesn't support blending. */
4465 if ((old->alpha_size && !new->alpha_size) || (!old->alpha_size && new->alpha_size)
4466 || !(texture->resource.format_caps & WINED3D_FORMAT_CAP_POSTPIXELSHADER_BLENDING))
4467 context_invalidate_state(&context_gl->c, STATE_BLEND);
4470 /* When switching away from an offscreen render target, and we're not
4471 * using FBOs, we have to read the drawable into the texture. This is
4472 * done via PreLoad (and WINED3D_LOCATION_DRAWABLE set on the surface).
4473 * There are some things that need care though. PreLoad needs a GL context,
4474 * and FindContext is called before the context is activated. It also
4475 * has to be called with the old rendertarget active, otherwise a
4476 * wrong drawable is read. */
4477 if (wined3d_settings.offscreen_rendering_mode != ORM_FBO
4478 && old_render_offscreen && (context_gl->c.current_rt.texture != texture
4479 || context_gl->c.current_rt.sub_resource_idx != sub_resource_idx))
4481 struct wined3d_texture_gl *prev_texture = wined3d_texture_gl(context_gl->c.current_rt.texture);
4482 unsigned int prev_sub_resource_idx = context_gl->c.current_rt.sub_resource_idx;
4484 /* Read the back buffer of the old drawable into the destination texture. */
4485 if (prev_texture->texture_srgb.name)
4486 wined3d_texture_load(&prev_texture->t, &context_gl->c, TRUE);
4487 wined3d_texture_load(&prev_texture->t, &context_gl->c, FALSE);
4488 wined3d_texture_invalidate_location(&prev_texture->t, prev_sub_resource_idx, WINED3D_LOCATION_DRAWABLE);
4492 context_gl->c.current_rt.texture = texture;
4493 context_gl->c.current_rt.sub_resource_idx = sub_resource_idx;
4494 wined3d_context_gl_set_render_offscreen(context_gl, render_offscreen);
4497 static void wined3d_context_gl_activate(struct wined3d_context_gl *context_gl,
4498 struct wined3d_texture *texture, unsigned int sub_resource_idx)
4500 wined3d_context_gl_enter(context_gl);
4501 if (texture && texture->swapchain && texture->swapchain != context_gl->c.swapchain)
4503 TRACE("Switching context_gl %p from swapchain %p to swapchain %p.\n",
4504 context_gl, context_gl->c.swapchain, texture->swapchain);
4505 context_gl->c.swapchain = texture->swapchain;
4507 wined3d_context_gl_update_window(context_gl);
4508 wined3d_context_gl_setup_target(context_gl, texture, sub_resource_idx);
4509 if (!context_gl->valid)
4510 return;
4512 if (context_gl != wined3d_context_gl_get_current())
4514 if (!wined3d_context_gl_set_current(context_gl))
4515 ERR("Failed to activate the new context.\n");
4517 else if (context_gl->needs_set)
4519 wined3d_context_gl_set_gl_context(context_gl);
4523 struct wined3d_context *wined3d_context_gl_acquire(const struct wined3d_device *device,
4524 struct wined3d_texture *texture, unsigned int sub_resource_idx)
4526 struct wined3d_context_gl *current_context = wined3d_context_gl_get_current();
4527 struct wined3d_context_gl *context_gl;
4529 TRACE("device %p, texture %p, sub_resource_idx %u.\n", device, texture, sub_resource_idx);
4531 if (current_context && current_context->c.destroyed)
4532 current_context = NULL;
4534 if (!texture)
4536 if (current_context
4537 && current_context->c.current_rt.texture
4538 && current_context->c.device == device)
4540 texture = current_context->c.current_rt.texture;
4541 sub_resource_idx = current_context->c.current_rt.sub_resource_idx;
4543 else
4545 struct wined3d_swapchain *swapchain = device->swapchains[0];
4547 if (swapchain->back_buffers)
4548 texture = swapchain->back_buffers[0];
4549 else
4550 texture = swapchain->front_buffer;
4551 sub_resource_idx = 0;
4555 if (current_context && current_context->c.current_rt.texture == texture)
4557 context_gl = current_context;
4559 else if (!wined3d_resource_is_offscreen(&texture->resource))
4561 TRACE("Rendering onscreen.\n");
4563 if (!(context_gl = wined3d_swapchain_gl_get_context(wined3d_swapchain_gl(texture->swapchain))))
4564 return NULL;
4566 else
4568 TRACE("Rendering offscreen.\n");
4570 /* Stay with the current context if possible. Otherwise use the
4571 * context for the primary swapchain. */
4572 if (current_context && current_context->c.device == device)
4573 context_gl = current_context;
4574 else if (!(context_gl = wined3d_swapchain_gl_get_context(wined3d_swapchain_gl(device->swapchains[0]))))
4575 return NULL;
4578 wined3d_context_gl_activate(context_gl, texture, sub_resource_idx);
4580 return &context_gl->c;
4583 struct wined3d_context_gl *wined3d_context_gl_reacquire(struct wined3d_context_gl *context_gl)
4585 struct wined3d_context *acquired_context;
4586 struct wined3d_device *device;
4588 if (!context_gl || context_gl->tid != GetCurrentThreadId())
4589 return NULL;
4591 device = context_gl->c.device;
4592 wined3d_from_cs(device->cs);
4594 if (context_gl->c.current_rt.texture)
4596 wined3d_context_gl_activate(context_gl, context_gl->c.current_rt.texture,
4597 context_gl->c.current_rt.sub_resource_idx);
4598 return context_gl;
4601 acquired_context = context_acquire(device, NULL, 0);
4602 if (acquired_context != &context_gl->c)
4603 ERR("Acquired context %p instead of %p.\n", acquired_context, &context_gl->c);
4604 return wined3d_context_gl(acquired_context);
4607 void dispatch_compute(struct wined3d_device *device, const struct wined3d_state *state,
4608 const struct wined3d_dispatch_parameters *parameters)
4610 const struct wined3d_gl_info *gl_info;
4611 struct wined3d_context_gl *context_gl;
4613 context_gl = wined3d_context_gl(context_acquire(device, NULL, 0));
4614 if (!context_gl->valid)
4616 context_release(&context_gl->c);
4617 WARN("Invalid context, skipping dispatch.\n");
4618 return;
4620 gl_info = context_gl->gl_info;
4622 if (!gl_info->supported[ARB_COMPUTE_SHADER])
4624 context_release(&context_gl->c);
4625 FIXME("OpenGL implementation does not support compute shaders.\n");
4626 return;
4629 if (parameters->indirect)
4630 wined3d_buffer_load(parameters->u.indirect.buffer, &context_gl->c, state);
4632 wined3d_context_gl_apply_compute_state(context_gl, device, state);
4634 if (parameters->indirect)
4636 const struct wined3d_indirect_dispatch_parameters *indirect = &parameters->u.indirect;
4637 struct wined3d_bo_gl *bo_gl = wined3d_bo_gl(indirect->buffer->buffer_object);
4639 GL_EXTCALL(glBindBuffer(GL_DISPATCH_INDIRECT_BUFFER, bo_gl->id));
4640 GL_EXTCALL(glDispatchComputeIndirect(bo_gl->b.buffer_offset + (GLintptr)indirect->offset));
4641 GL_EXTCALL(glBindBuffer(GL_DISPATCH_INDIRECT_BUFFER, 0));
4642 wined3d_context_gl_reference_bo(context_gl, bo_gl);
4644 else
4646 const struct wined3d_direct_dispatch_parameters *direct = &parameters->u.direct;
4647 GL_EXTCALL(glDispatchCompute(direct->group_count_x, direct->group_count_y, direct->group_count_z));
4649 checkGLcall("dispatch compute");
4651 GL_EXTCALL(glMemoryBarrier(GL_ALL_BARRIER_BITS));
4652 checkGLcall("glMemoryBarrier");
4654 context_release(&context_gl->c);
4657 /* Context activation is done by the caller. */
4658 static void wined3d_context_gl_draw_primitive_arrays(struct wined3d_context_gl *context_gl,
4659 const struct wined3d_state *state, const void *idx_data, unsigned int idx_size, int base_vertex_idx,
4660 unsigned int start_idx, unsigned int count, unsigned int start_instance, unsigned int instance_count)
4662 const struct wined3d_ffp_attrib_ops *ops = &context_gl->c.d3d_info->ffp_attrib_ops;
4663 GLenum idx_type = idx_size == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT;
4664 const struct wined3d_stream_info *si = &context_gl->c.stream_info;
4665 GLenum mode = gl_primitive_type_from_d3d(state->primitive_type);
4666 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
4667 unsigned int instanced_elements[ARRAY_SIZE(si->elements)];
4668 unsigned int instanced_element_count = 0;
4669 const void *indices;
4670 unsigned int i, j;
4672 indices = (const char *)idx_data + idx_size * start_idx;
4674 if (!instance_count)
4676 if (!idx_size)
4678 gl_info->gl_ops.gl.p_glDrawArrays(mode, start_idx, count);
4679 checkGLcall("glDrawArrays");
4680 return;
4683 if (gl_info->supported[ARB_DRAW_ELEMENTS_BASE_VERTEX])
4685 GL_EXTCALL(glDrawElementsBaseVertex(mode, count, idx_type, indices, base_vertex_idx));
4686 checkGLcall("glDrawElementsBaseVertex");
4687 return;
4690 gl_info->gl_ops.gl.p_glDrawElements(mode, count, idx_type, indices);
4691 checkGLcall("glDrawElements");
4692 return;
4695 if (start_instance && !(gl_info->supported[ARB_BASE_INSTANCE] && gl_info->supported[ARB_INSTANCED_ARRAYS]))
4696 FIXME("Start instance (%u) not supported.\n", start_instance);
4698 if (gl_info->supported[ARB_INSTANCED_ARRAYS])
4700 if (!idx_size)
4702 if (gl_info->supported[ARB_BASE_INSTANCE])
4704 GL_EXTCALL(glDrawArraysInstancedBaseInstance(mode, start_idx, count, instance_count, start_instance));
4705 checkGLcall("glDrawArraysInstancedBaseInstance");
4706 return;
4709 GL_EXTCALL(glDrawArraysInstanced(mode, start_idx, count, instance_count));
4710 checkGLcall("glDrawArraysInstanced");
4711 return;
4714 if (gl_info->supported[ARB_BASE_INSTANCE])
4716 GL_EXTCALL(glDrawElementsInstancedBaseVertexBaseInstance(mode, count, idx_type,
4717 indices, instance_count, base_vertex_idx, start_instance));
4718 checkGLcall("glDrawElementsInstancedBaseVertexBaseInstance");
4719 return;
4721 if (gl_info->supported[ARB_DRAW_ELEMENTS_BASE_VERTEX])
4723 GL_EXTCALL(glDrawElementsInstancedBaseVertex(mode, count, idx_type,
4724 indices, instance_count, base_vertex_idx));
4725 checkGLcall("glDrawElementsInstancedBaseVertex");
4726 return;
4729 GL_EXTCALL(glDrawElementsInstanced(mode, count, idx_type, indices, instance_count));
4730 checkGLcall("glDrawElementsInstanced");
4731 return;
4734 /* Instancing emulation by mixing immediate mode and arrays. */
4736 /* This is a nasty thing. MSDN says no hardware supports this and
4737 * applications have to use software vertex processing. We don't support
4738 * this for now.
4740 * Shouldn't be too hard to support with OpenGL, in theory just call
4741 * glDrawArrays() instead of drawElements(). But the stream frequency value
4742 * has a different meaning in that situation. */
4743 if (!idx_size)
4745 FIXME("Non-indexed instanced drawing is not supported.\n");
4746 return;
4749 for (i = 0; i < ARRAY_SIZE(si->elements); ++i)
4751 if (!(si->use_map & (1u << i)))
4752 continue;
4754 if (state->streams[si->elements[i].stream_idx].flags & WINED3DSTREAMSOURCE_INSTANCEDATA)
4755 instanced_elements[instanced_element_count++] = i;
4758 for (i = 0; i < instance_count; ++i)
4760 /* Specify the instanced attributes using immediate mode calls. */
4761 for (j = 0; j < instanced_element_count; ++j)
4763 const struct wined3d_stream_info_element *element;
4764 unsigned int element_idx;
4765 const BYTE *ptr;
4767 element_idx = instanced_elements[j];
4768 element = &si->elements[element_idx];
4769 ptr = element->data.addr + element->stride * i;
4770 if (element->data.buffer_object)
4771 ptr += (ULONG_PTR)wined3d_buffer_load_sysmem(state->streams[element->stream_idx].buffer,
4772 &context_gl->c);
4773 ops->generic[element->format->emit_idx](element_idx, ptr);
4776 if (gl_info->supported[ARB_DRAW_ELEMENTS_BASE_VERTEX])
4778 GL_EXTCALL(glDrawElementsBaseVertex(mode, count, idx_type, indices, base_vertex_idx));
4779 checkGLcall("glDrawElementsBaseVertex");
4781 else
4783 gl_info->gl_ops.gl.p_glDrawElements(mode, count, idx_type, indices);
4784 checkGLcall("glDrawElements");
4789 static unsigned int get_stride_idx(const void *idx_data, unsigned int idx_size,
4790 unsigned int base_vertex_idx, unsigned int start_idx, unsigned int vertex_idx)
4792 if (!idx_data)
4793 return start_idx + vertex_idx;
4794 if (idx_size == 2)
4795 return ((const WORD *)idx_data)[start_idx + vertex_idx] + base_vertex_idx;
4796 return ((const DWORD *)idx_data)[start_idx + vertex_idx] + base_vertex_idx;
4799 /* Context activation is done by the caller. */
4800 static void draw_primitive_immediate_mode(struct wined3d_context_gl *context_gl, const struct wined3d_state *state,
4801 const struct wined3d_stream_info *si, const void *idx_data, unsigned int idx_size,
4802 int base_vertex_idx, unsigned int start_idx, unsigned int vertex_count, unsigned int instance_count)
4804 const BYTE *position = NULL, *normal = NULL, *diffuse = NULL, *specular = NULL;
4805 const struct wined3d_d3d_info *d3d_info = context_gl->c.d3d_info;
4806 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
4807 unsigned int coord_idx, stride_idx, texture_idx, vertex_idx;
4808 const struct wined3d_stream_info_element *element;
4809 const BYTE *tex_coords[WINED3DDP_MAXTEXCOORD];
4810 unsigned int texture_unit, texture_stages;
4811 const struct wined3d_ffp_attrib_ops *ops;
4812 unsigned int untracked_material_count;
4813 unsigned int tex_mask = 0;
4814 BOOL specular_fog = FALSE;
4815 BOOL ps = use_ps(state);
4816 const void *ptr;
4818 static unsigned int once;
4820 if (!once++)
4821 FIXME_(d3d_perf)("Drawing using immediate mode.\n");
4822 else
4823 WARN_(d3d_perf)("Drawing using immediate mode.\n");
4825 if (!idx_size && idx_data)
4826 ERR("Non-NULL idx_data with 0 idx_size, this should never happen.\n");
4828 if (instance_count)
4829 FIXME("Instancing not implemented.\n");
4831 /* Immediate mode drawing can't make use of indices in a VBO - get the
4832 * data from the index buffer. */
4833 if (idx_size)
4834 idx_data = wined3d_buffer_load_sysmem(state->index_buffer, &context_gl->c) + state->index_offset;
4836 ops = &d3d_info->ffp_attrib_ops;
4838 gl_info->gl_ops.gl.p_glBegin(gl_primitive_type_from_d3d(state->primitive_type));
4840 if (use_vs(state) || d3d_info->ffp_generic_attributes)
4842 for (vertex_idx = 0; vertex_idx < vertex_count; ++vertex_idx)
4844 unsigned int use_map = si->use_map;
4845 unsigned int element_idx;
4847 stride_idx = get_stride_idx(idx_data, idx_size, base_vertex_idx, start_idx, vertex_idx);
4848 for (element_idx = gl_info->limits.vertex_attribs - 1; use_map;
4849 use_map &= ~(1u << element_idx), --element_idx)
4851 if (!(use_map & 1u << element_idx))
4852 continue;
4854 ptr = si->elements[element_idx].data.addr + si->elements[element_idx].stride * stride_idx;
4855 ops->generic[si->elements[element_idx].format->emit_idx](element_idx, ptr);
4859 gl_info->gl_ops.gl.p_glEnd();
4860 return;
4863 if (si->use_map & (1u << WINED3D_FFP_POSITION))
4864 position = si->elements[WINED3D_FFP_POSITION].data.addr;
4866 if (si->use_map & (1u << WINED3D_FFP_NORMAL))
4867 normal = si->elements[WINED3D_FFP_NORMAL].data.addr;
4868 else
4869 gl_info->gl_ops.gl.p_glNormal3f(0.0f, 0.0f, 0.0f);
4871 untracked_material_count = context_gl->untracked_material_count;
4872 if (si->use_map & (1u << WINED3D_FFP_DIFFUSE))
4874 element = &si->elements[WINED3D_FFP_DIFFUSE];
4875 diffuse = element->data.addr;
4877 if (untracked_material_count && element->format->id != WINED3DFMT_B8G8R8A8_UNORM)
4878 FIXME("Implement diffuse color tracking from %s.\n", debug_d3dformat(element->format->id));
4880 else
4882 gl_info->gl_ops.gl.p_glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
4885 if (si->use_map & (1u << WINED3D_FFP_SPECULAR))
4887 element = &si->elements[WINED3D_FFP_SPECULAR];
4888 specular = element->data.addr;
4890 /* Special case where the fog density is stored in the specular alpha channel. */
4891 if (state->render_states[WINED3D_RS_FOGENABLE]
4892 && (state->render_states[WINED3D_RS_FOGVERTEXMODE] == WINED3D_FOG_NONE
4893 || si->elements[WINED3D_FFP_POSITION].format->id == WINED3DFMT_R32G32B32A32_FLOAT)
4894 && state->render_states[WINED3D_RS_FOGTABLEMODE] == WINED3D_FOG_NONE)
4896 if (gl_info->supported[EXT_FOG_COORD])
4898 if (element->format->id == WINED3DFMT_B8G8R8A8_UNORM)
4899 specular_fog = TRUE;
4900 else
4901 FIXME("Implement fog coordinates from %s.\n", debug_d3dformat(element->format->id));
4903 else
4905 static unsigned int once;
4907 if (!once++)
4908 FIXME("Implement fog for transformed vertices in software.\n");
4912 else if (gl_info->supported[EXT_SECONDARY_COLOR])
4914 GL_EXTCALL(glSecondaryColor3fEXT)(0.0f, 0.0f, 0.0f);
4917 texture_stages = d3d_info->limits.ffp_blend_stages;
4918 for (texture_idx = 0; texture_idx < texture_stages; ++texture_idx)
4920 if (!gl_info->supported[ARB_MULTITEXTURE] && texture_idx > 0)
4922 FIXME("Program using multiple concurrent textures which this OpenGL implementation doesn't support.\n");
4923 continue;
4926 if (!ps && !state->textures[texture_idx])
4927 continue;
4929 texture_unit = context_gl->tex_unit_map[texture_idx];
4930 if (texture_unit == WINED3D_UNMAPPED_STAGE)
4931 continue;
4933 coord_idx = state->texture_states[texture_idx][WINED3D_TSS_TEXCOORD_INDEX];
4934 if (coord_idx > 7)
4936 TRACE("Skipping generated coordinates (%#x) for texture %u.\n", coord_idx, texture_idx);
4937 continue;
4940 if (si->use_map & (1u << (WINED3D_FFP_TEXCOORD0 + coord_idx)))
4942 tex_coords[coord_idx] = si->elements[WINED3D_FFP_TEXCOORD0 + coord_idx].data.addr;
4943 tex_mask |= (1u << texture_idx);
4945 else
4947 TRACE("Setting default coordinates for texture %u.\n", texture_idx);
4948 if (gl_info->supported[ARB_MULTITEXTURE])
4949 GL_EXTCALL(glMultiTexCoord4fARB(GL_TEXTURE0_ARB + texture_unit, 0.0f, 0.0f, 0.0f, 1.0f));
4950 else
4951 gl_info->gl_ops.gl.p_glTexCoord4f(0.0f, 0.0f, 0.0f, 1.0f);
4955 /* Blending data and point sizes are not supported by this function. They
4956 * are not supported by the fixed function pipeline at all. A FIXME for
4957 * them is printed after decoding the vertex declaration. */
4958 for (vertex_idx = 0; vertex_idx < vertex_count; ++vertex_idx)
4960 uint32_t tmp_tex_mask;
4962 stride_idx = get_stride_idx(idx_data, idx_size, base_vertex_idx, start_idx, vertex_idx);
4964 if (normal)
4966 ptr = normal + stride_idx * si->elements[WINED3D_FFP_NORMAL].stride;
4967 ops->normal[si->elements[WINED3D_FFP_NORMAL].format->emit_idx](ptr);
4970 if (diffuse)
4972 ptr = diffuse + stride_idx * si->elements[WINED3D_FFP_DIFFUSE].stride;
4973 ops->diffuse[si->elements[WINED3D_FFP_DIFFUSE].format->emit_idx](ptr);
4975 if (untracked_material_count)
4977 struct wined3d_color color;
4978 unsigned int i;
4980 wined3d_color_from_d3dcolor(&color, *(const DWORD *)ptr);
4981 for (i = 0; i < untracked_material_count; ++i)
4983 gl_info->gl_ops.gl.p_glMaterialfv(GL_FRONT_AND_BACK,
4984 context_gl->untracked_materials[i], &color.r);
4989 if (specular)
4991 ptr = specular + stride_idx * si->elements[WINED3D_FFP_SPECULAR].stride;
4992 ops->specular[si->elements[WINED3D_FFP_SPECULAR].format->emit_idx](ptr);
4994 if (specular_fog)
4995 GL_EXTCALL(glFogCoordfEXT((float)(*(const DWORD *)ptr >> 24)));
4998 tmp_tex_mask = tex_mask;
4999 while (tmp_tex_mask)
5001 texture_idx = wined3d_bit_scan(&tmp_tex_mask);
5002 coord_idx = state->texture_states[texture_idx][WINED3D_TSS_TEXCOORD_INDEX];
5003 ptr = tex_coords[coord_idx] + (stride_idx * si->elements[WINED3D_FFP_TEXCOORD0 + coord_idx].stride);
5004 ops->texcoord[si->elements[WINED3D_FFP_TEXCOORD0 + coord_idx].format->emit_idx](
5005 GL_TEXTURE0_ARB + context_gl->tex_unit_map[texture_idx], ptr);
5008 if (position)
5010 ptr = position + stride_idx * si->elements[WINED3D_FFP_POSITION].stride;
5011 ops->position[si->elements[WINED3D_FFP_POSITION].format->emit_idx](ptr);
5015 gl_info->gl_ops.gl.p_glEnd();
5016 checkGLcall("draw immediate mode");
5019 static void wined3d_context_gl_draw_indirect(struct wined3d_context_gl *context_gl, const struct wined3d_state *state,
5020 const struct wined3d_indirect_draw_parameters *parameters, unsigned int idx_size)
5022 struct wined3d_bo_gl *bo_gl = wined3d_bo_gl(parameters->buffer->buffer_object);
5023 GLenum gl_primitive_type = gl_primitive_type_from_d3d(state->primitive_type);
5024 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
5025 const void *offset;
5027 if (!gl_info->supported[ARB_DRAW_INDIRECT])
5029 FIXME("OpenGL implementation does not support indirect draws.\n");
5030 return;
5033 GL_EXTCALL(glBindBuffer(GL_DRAW_INDIRECT_BUFFER, bo_gl->id));
5035 offset = (const uint8_t *)bo_gl->b.buffer_offset + parameters->offset;
5036 if (idx_size)
5038 GLenum idx_type = idx_size == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT;
5039 if (state->index_offset)
5040 FIXME("Ignoring index offset %u.\n", state->index_offset);
5041 GL_EXTCALL(glDrawElementsIndirect(gl_primitive_type, idx_type, offset));
5043 else
5045 GL_EXTCALL(glDrawArraysIndirect(gl_primitive_type, offset));
5048 GL_EXTCALL(glBindBuffer(GL_DRAW_INDIRECT_BUFFER, 0));
5049 wined3d_context_gl_reference_bo(context_gl, bo_gl);
5051 checkGLcall("draw indirect");
5054 static void remove_vbos(struct wined3d_context *context,
5055 const struct wined3d_state *state, struct wined3d_stream_info *s)
5057 unsigned int i;
5059 for (i = 0; i < ARRAY_SIZE(s->elements); ++i)
5061 struct wined3d_stream_info_element *e;
5063 if (!(s->use_map & (1u << i)))
5064 continue;
5066 e = &s->elements[i];
5067 if (e->data.buffer_object)
5069 struct wined3d_buffer *vb = state->streams[e->stream_idx].buffer;
5070 e->data.buffer_object = 0;
5071 e->data.addr += (ULONG_PTR)wined3d_buffer_load_sysmem(vb, context);
5076 static GLenum gl_tfb_primitive_type_from_d3d(enum wined3d_primitive_type primitive_type)
5078 GLenum gl_primitive_type = gl_primitive_type_from_d3d(primitive_type);
5079 switch (gl_primitive_type)
5081 case GL_POINTS:
5082 return GL_POINTS;
5084 case GL_LINE_STRIP:
5085 case GL_LINE_STRIP_ADJACENCY:
5086 case GL_LINES_ADJACENCY:
5087 case GL_LINES:
5088 return GL_LINES;
5090 case GL_TRIANGLE_FAN:
5091 case GL_TRIANGLE_STRIP:
5092 case GL_TRIANGLE_STRIP_ADJACENCY:
5093 case GL_TRIANGLES_ADJACENCY:
5094 case GL_TRIANGLES:
5095 return GL_TRIANGLES;
5097 default:
5098 return gl_primitive_type;
5102 /* Routine common to the draw primitive and draw indexed primitive routines */
5103 void draw_primitive(struct wined3d_device *device, const struct wined3d_state *state,
5104 const struct wined3d_draw_parameters *parameters)
5106 BOOL emulation = FALSE, rasterizer_discard = FALSE;
5107 const struct wined3d_fb_state *fb = &state->fb;
5108 const struct wined3d_stream_info *stream_info;
5109 struct wined3d_rendertarget_view *dsv, *rtv;
5110 struct wined3d_stream_info si_emulated;
5111 const struct wined3d_gl_info *gl_info;
5112 struct wined3d_context_gl *context_gl;
5113 struct wined3d_context *context;
5114 unsigned int i, idx_size = 0;
5115 const void *idx_data = NULL;
5117 TRACE("device %p, state %p, parameters %p.\n", device, state, parameters);
5119 if (!parameters->indirect && !parameters->u.direct.index_count)
5120 return;
5122 if (!parameters->indirect)
5123 TRACE("base_vertex_idx %d, start_idx %u, index_count %u, start_instance %u, instance_count %u.\n",
5124 parameters->u.direct.base_vertex_idx, parameters->u.direct.start_idx,
5125 parameters->u.direct.index_count, parameters->u.direct.start_instance,
5126 parameters->u.direct.instance_count);
5128 if (!(rtv = fb->render_targets[0]))
5129 rtv = fb->depth_stencil;
5131 if (rtv && rtv->resource->type == WINED3D_RTYPE_BUFFER)
5133 FIXME("Buffer render targets not implemented.\n");
5134 return;
5137 if (rtv)
5138 context = context_acquire(device, wined3d_texture_from_resource(rtv->resource), rtv->sub_resource_idx);
5139 else
5140 context = context_acquire(device, NULL, 0);
5141 context_gl = wined3d_context_gl(context);
5142 if (!context_gl->valid)
5144 context_release(context);
5145 WARN("Invalid context, skipping draw.\n");
5146 return;
5148 gl_info = context_gl->gl_info;
5150 if (!use_transform_feedback(state))
5151 wined3d_context_gl_pause_transform_feedback(context_gl, TRUE);
5153 for (i = 0; i < gl_info->limits.buffers; ++i)
5155 if (!(rtv = fb->render_targets[i]) || rtv->format->id == WINED3DFMT_NULL)
5156 continue;
5158 if (wined3d_blend_state_get_writemask(state->blend_state, i))
5160 wined3d_rendertarget_view_load_location(rtv, context, rtv->resource->draw_binding);
5161 wined3d_rendertarget_view_invalidate_location(rtv, ~rtv->resource->draw_binding);
5163 else
5165 wined3d_rendertarget_view_prepare_location(rtv, context, rtv->resource->draw_binding);
5169 if ((dsv = fb->depth_stencil))
5171 /* Note that this depends on the context_acquire() call above to set
5172 * context->render_offscreen properly. We don't currently take the
5173 * Z-compare function into account, but we could skip loading the
5174 * depthstencil for D3DCMP_NEVER and D3DCMP_ALWAYS as well. Also note
5175 * that we never copy the stencil data.*/
5176 DWORD location = context->render_offscreen ? dsv->resource->draw_binding : WINED3D_LOCATION_DRAWABLE;
5178 if (wined3d_state_uses_depth_buffer(state))
5179 wined3d_rendertarget_view_load_location(dsv, context, location);
5180 else
5181 wined3d_rendertarget_view_prepare_location(dsv, context, location);
5184 if (parameters->indirect)
5185 wined3d_buffer_load(parameters->u.indirect.buffer, context, state);
5187 if (!context_apply_draw_state(context, device, state, parameters->indexed))
5189 context_release(context);
5190 WARN("Unable to apply draw state, skipping draw.\n");
5191 return;
5194 if (dsv && (!state->depth_stencil_state || state->depth_stencil_state->writes_ds))
5196 DWORD location = context->render_offscreen ? dsv->resource->draw_binding : WINED3D_LOCATION_DRAWABLE;
5198 wined3d_rendertarget_view_validate_location(dsv, location);
5199 wined3d_rendertarget_view_invalidate_location(dsv, ~location);
5202 stream_info = &context->stream_info;
5204 if (parameters->indexed)
5206 struct wined3d_buffer *index_buffer = state->index_buffer;
5207 struct wined3d_bo *bo = index_buffer->buffer_object;
5209 if (!bo || !stream_info->all_vbo)
5210 idx_data = index_buffer->resource.heap_memory;
5211 else
5212 idx_data = (void *)bo->buffer_offset;
5213 idx_data = (const BYTE *)idx_data + state->index_offset;
5215 if (state->index_format == WINED3DFMT_R16_UINT)
5216 idx_size = 2;
5217 else
5218 idx_size = 4;
5221 if (!use_vs(state))
5223 if (!stream_info->position_transformed && context_gl->untracked_material_count
5224 && state->render_states[WINED3D_RS_LIGHTING])
5226 static BOOL warned;
5228 if (!warned++)
5229 FIXME("Using software emulation because not all material properties could be tracked.\n");
5230 else
5231 WARN_(d3d_perf)("Using software emulation because not all material properties could be tracked.\n");
5232 emulation = TRUE;
5234 else if (context->fog_coord && state->render_states[WINED3D_RS_FOGENABLE])
5236 static BOOL warned;
5238 /* Either write a pipeline replacement shader or convert the
5239 * specular alpha from unsigned byte to a float in the vertex
5240 * buffer. */
5241 if (!warned++)
5242 FIXME("Using software emulation because manual fog coordinates are provided.\n");
5243 else
5244 WARN_(d3d_perf)("Using software emulation because manual fog coordinates are provided.\n");
5245 emulation = TRUE;
5248 if (emulation)
5250 si_emulated = context->stream_info;
5251 remove_vbos(context, state, &si_emulated);
5252 stream_info = &si_emulated;
5256 if (use_transform_feedback(state))
5258 const struct wined3d_shader *shader = state->shader[WINED3D_SHADER_TYPE_GEOMETRY];
5260 if (is_rasterization_disabled(shader))
5262 glEnable(GL_RASTERIZER_DISCARD);
5263 checkGLcall("enable rasterizer discard");
5264 rasterizer_discard = TRUE;
5267 if (context->transform_feedback_paused)
5269 GL_EXTCALL(glResumeTransformFeedback());
5270 checkGLcall("glResumeTransformFeedback");
5271 context->transform_feedback_paused = 0;
5273 else if (!context->transform_feedback_active)
5275 enum wined3d_primitive_type primitive_type = shader->u.gs.output_type
5276 ? shader->u.gs.output_type : state->primitive_type;
5277 GLenum mode = gl_tfb_primitive_type_from_d3d(primitive_type);
5278 GL_EXTCALL(glBeginTransformFeedback(mode));
5279 checkGLcall("glBeginTransformFeedback");
5280 context->transform_feedback_active = 1;
5284 if (state->primitive_type == WINED3D_PT_PATCH)
5286 GL_EXTCALL(glPatchParameteri(GL_PATCH_VERTICES, state->patch_vertex_count));
5287 checkGLcall("glPatchParameteri");
5290 if (context->uses_fbo_attached_resources)
5292 static unsigned int fixme_once;
5294 if (gl_info->supported[ARB_TEXTURE_BARRIER])
5296 GL_EXTCALL(glTextureBarrier());
5298 else if (gl_info->supported[NV_TEXTURE_BARRIER])
5300 GL_EXTCALL(glTextureBarrierNV());
5302 else
5304 if (!fixme_once++)
5305 FIXME("Sampling attached render targets is not supported.\n");
5307 WARN("Sampling attached render targets is not supported, skipping draw.\n");
5308 context_release(context);
5309 return;
5311 checkGLcall("glTextureBarrier");
5314 if (parameters->indirect)
5316 if (!context->use_immediate_mode_draw && !emulation)
5317 wined3d_context_gl_draw_indirect(context_gl, state, &parameters->u.indirect, idx_size);
5318 else
5319 FIXME("Indirect draws with immediate mode/emulation are not supported.\n");
5321 else
5323 unsigned int instance_count = parameters->u.direct.instance_count;
5324 if (context->instance_count)
5325 instance_count = context->instance_count;
5327 if (context->use_immediate_mode_draw || emulation)
5328 draw_primitive_immediate_mode(wined3d_context_gl(context), state, stream_info, idx_data,
5329 idx_size, parameters->u.direct.base_vertex_idx,
5330 parameters->u.direct.start_idx, parameters->u.direct.index_count, instance_count);
5331 else
5332 wined3d_context_gl_draw_primitive_arrays(context_gl, state, idx_data, idx_size,
5333 parameters->u.direct.base_vertex_idx, parameters->u.direct.start_idx,
5334 parameters->u.direct.index_count, parameters->u.direct.start_instance, instance_count);
5337 if (context->uses_uavs)
5339 GL_EXTCALL(glMemoryBarrier(GL_ALL_BARRIER_BITS));
5340 checkGLcall("glMemoryBarrier");
5343 if (rasterizer_discard)
5345 glDisable(GL_RASTERIZER_DISCARD);
5346 checkGLcall("disable rasterizer discard");
5349 context_release(context);
5351 TRACE("Draw completed.\n");
5354 void wined3d_context_gl_unload_tex_coords(const struct wined3d_context_gl *context_gl)
5356 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
5357 unsigned int texture_idx;
5359 for (texture_idx = 0; texture_idx < gl_info->limits.texture_coords; ++texture_idx)
5361 gl_info->gl_ops.ext.p_glClientActiveTextureARB(GL_TEXTURE0_ARB + texture_idx);
5362 gl_info->gl_ops.gl.p_glDisableClientState(GL_TEXTURE_COORD_ARRAY);
5366 static const void *get_vertex_attrib_pointer(const struct wined3d_stream_info_element *element,
5367 const struct wined3d_state *state)
5369 const uint8_t *offset = element->data.addr + state->load_base_vertex_index * element->stride;
5371 if (element->data.buffer_object)
5372 offset += element->data.buffer_object->buffer_offset;
5373 return offset;
5376 void wined3d_context_gl_load_tex_coords(const struct wined3d_context_gl *context_gl,
5377 const struct wined3d_stream_info *si, GLuint *current_bo, const struct wined3d_state *state)
5379 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
5380 const struct wined3d_format_gl *format_gl;
5381 unsigned int mapped_stage = 0;
5382 unsigned int texture_idx;
5383 GLuint bo;
5385 for (texture_idx = 0; texture_idx < context_gl->c.d3d_info->limits.ffp_blend_stages; ++texture_idx)
5387 unsigned int coord_idx = state->texture_states[texture_idx][WINED3D_TSS_TEXCOORD_INDEX];
5389 if ((mapped_stage = context_gl->tex_unit_map[texture_idx]) == WINED3D_UNMAPPED_STAGE)
5390 continue;
5392 if (mapped_stage >= gl_info->limits.texture_coords)
5394 FIXME("Attempted to load unsupported texture coordinate %u.\n", mapped_stage);
5395 continue;
5398 if (coord_idx < WINED3D_MAX_TEXTURES && (si->use_map & (1u << (WINED3D_FFP_TEXCOORD0 + coord_idx))))
5400 const struct wined3d_stream_info_element *e = &si->elements[WINED3D_FFP_TEXCOORD0 + coord_idx];
5402 TRACE("Setting up texture %u, idx %u, coord_idx %u, data %s.\n",
5403 texture_idx, mapped_stage, coord_idx, debug_bo_address(&e->data));
5405 bo = wined3d_bo_gl_id(e->data.buffer_object);
5406 if (*current_bo != bo)
5408 GL_EXTCALL(glBindBuffer(GL_ARRAY_BUFFER, bo));
5409 checkGLcall("glBindBuffer");
5410 *current_bo = bo;
5413 GL_EXTCALL(glClientActiveTextureARB(GL_TEXTURE0_ARB + mapped_stage));
5414 checkGLcall("glClientActiveTextureARB");
5416 /* The coords to supply depend completely on the fvf/vertex shader. */
5417 format_gl = wined3d_format_gl(e->format);
5418 gl_info->gl_ops.gl.p_glTexCoordPointer(format_gl->vtx_format, format_gl->vtx_type, e->stride,
5419 get_vertex_attrib_pointer(e, state));
5420 gl_info->gl_ops.gl.p_glEnableClientState(GL_TEXTURE_COORD_ARRAY);
5421 state->streams[e->stream_idx].buffer->bo_user.valid = true;
5423 else
5425 GL_EXTCALL(glMultiTexCoord4fARB(GL_TEXTURE0_ARB + mapped_stage, 0, 0, 0, 1));
5428 if (gl_info->supported[NV_REGISTER_COMBINERS])
5430 /* The number of the mapped stages increases monotonically, so it's fine to use the last used one. */
5431 for (texture_idx = mapped_stage + 1; texture_idx < gl_info->limits.textures; ++texture_idx)
5433 GL_EXTCALL(glMultiTexCoord4fARB(GL_TEXTURE0_ARB + texture_idx, 0, 0, 0, 1));
5437 checkGLcall("loadTexCoords");
5440 /* This should match any arrays loaded in wined3d_context_gl_load_vertex_data(). */
5441 static void wined3d_context_gl_unload_vertex_data(struct wined3d_context_gl *context_gl)
5443 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
5445 if (!context_gl->c.namedArraysLoaded)
5446 return;
5447 gl_info->gl_ops.gl.p_glDisableClientState(GL_VERTEX_ARRAY);
5448 gl_info->gl_ops.gl.p_glDisableClientState(GL_NORMAL_ARRAY);
5449 gl_info->gl_ops.gl.p_glDisableClientState(GL_COLOR_ARRAY);
5450 if (gl_info->supported[EXT_SECONDARY_COLOR])
5451 gl_info->gl_ops.gl.p_glDisableClientState(GL_SECONDARY_COLOR_ARRAY_EXT);
5452 wined3d_context_gl_unload_tex_coords(context_gl);
5453 context_gl->c.namedArraysLoaded = FALSE;
5456 static void wined3d_context_gl_load_vertex_data(struct wined3d_context_gl *context_gl,
5457 const struct wined3d_stream_info *si, const struct wined3d_state *state)
5459 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
5460 const struct wined3d_stream_info_element *e;
5461 const struct wined3d_format_gl *format_gl;
5462 GLuint current_bo, bo;
5463 const void *offset;
5465 TRACE("context_gl %p, si %p, state %p.\n", context_gl, si, state);
5467 /* This is used for the fixed-function pipeline only, and the
5468 * fixed-function pipeline doesn't do instancing. */
5469 context_gl->c.instance_count = 0;
5470 current_bo = gl_info->supported[ARB_VERTEX_BUFFER_OBJECT] ? ~0u : 0;
5472 /* Blend data */
5473 if ((si->use_map & (1u << WINED3D_FFP_BLENDWEIGHT))
5474 || si->use_map & (1u << WINED3D_FFP_BLENDINDICES))
5476 /* TODO: Support vertex blending in immediate mode draws. No need to
5477 * write a FIXME here, this is done after the general vertex
5478 * declaration decoding. */
5479 WARN("Vertex blending not supported.\n");
5482 /* Point Size */
5483 if (si->use_map & (1u << WINED3D_FFP_PSIZE))
5485 /* No such functionality in the fixed-function GL pipeline. */
5486 WARN("Per-vertex point size not supported.\n");
5489 /* Position */
5490 if (si->use_map & (1u << WINED3D_FFP_POSITION))
5492 e = &si->elements[WINED3D_FFP_POSITION];
5493 format_gl = wined3d_format_gl(e->format);
5494 offset = get_vertex_attrib_pointer(e, state);
5496 bo = wined3d_bo_gl_id(e->data.buffer_object);
5497 if (current_bo != bo)
5499 GL_EXTCALL(glBindBuffer(GL_ARRAY_BUFFER, bo));
5500 checkGLcall("glBindBuffer");
5501 current_bo = bo;
5504 TRACE("glVertexPointer(%#x, %#x, %#x, %p);\n", format_gl->vtx_format, format_gl->vtx_type, e->stride, offset);
5505 gl_info->gl_ops.gl.p_glVertexPointer(format_gl->vtx_format, format_gl->vtx_type, e->stride, offset);
5506 checkGLcall("glVertexPointer(...)");
5507 gl_info->gl_ops.gl.p_glEnableClientState(GL_VERTEX_ARRAY);
5508 checkGLcall("glEnableClientState(GL_VERTEX_ARRAY)");
5509 state->streams[e->stream_idx].buffer->bo_user.valid = true;
5512 /* Normals */
5513 if (si->use_map & (1u << WINED3D_FFP_NORMAL))
5515 e = &si->elements[WINED3D_FFP_NORMAL];
5516 format_gl = wined3d_format_gl(e->format);
5517 offset = get_vertex_attrib_pointer(e, state);
5519 bo = wined3d_bo_gl_id(e->data.buffer_object);
5520 if (current_bo != bo)
5522 GL_EXTCALL(glBindBuffer(GL_ARRAY_BUFFER, bo));
5523 checkGLcall("glBindBuffer");
5524 current_bo = bo;
5527 TRACE("glNormalPointer(%#x, %#x, %p);\n", format_gl->vtx_type, e->stride, offset);
5528 gl_info->gl_ops.gl.p_glNormalPointer(format_gl->vtx_type, e->stride, offset);
5529 checkGLcall("glNormalPointer(...)");
5530 gl_info->gl_ops.gl.p_glEnableClientState(GL_NORMAL_ARRAY);
5531 checkGLcall("glEnableClientState(GL_NORMAL_ARRAY)");
5532 state->streams[e->stream_idx].buffer->bo_user.valid = true;
5534 else
5536 gl_info->gl_ops.gl.p_glNormal3f(0, 0, 0);
5537 checkGLcall("glNormal3f(0, 0, 0)");
5540 /* Diffuse colour */
5541 if (si->use_map & (1u << WINED3D_FFP_DIFFUSE))
5543 e = &si->elements[WINED3D_FFP_DIFFUSE];
5544 format_gl = wined3d_format_gl(e->format);
5545 offset = get_vertex_attrib_pointer(e, state);
5547 bo = wined3d_bo_gl_id(e->data.buffer_object);
5548 if (current_bo != bo)
5550 GL_EXTCALL(glBindBuffer(GL_ARRAY_BUFFER, bo));
5551 checkGLcall("glBindBuffer");
5552 current_bo = bo;
5555 TRACE("glColorPointer(%#x, %#x %#x, %p);\n",
5556 format_gl->vtx_format, format_gl->vtx_type, e->stride, offset);
5557 gl_info->gl_ops.gl.p_glColorPointer(format_gl->vtx_format, format_gl->vtx_type, e->stride, offset);
5558 checkGLcall("glColorPointer(4, GL_UNSIGNED_BYTE, ...)");
5559 gl_info->gl_ops.gl.p_glEnableClientState(GL_COLOR_ARRAY);
5560 checkGLcall("glEnableClientState(GL_COLOR_ARRAY)");
5561 state->streams[e->stream_idx].buffer->bo_user.valid = true;
5563 else
5565 gl_info->gl_ops.gl.p_glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
5566 checkGLcall("glColor4f(1, 1, 1, 1)");
5569 /* Specular colour */
5570 if (si->use_map & (1u << WINED3D_FFP_SPECULAR))
5572 TRACE("Setting specular colour.\n");
5574 e = &si->elements[WINED3D_FFP_SPECULAR];
5575 offset = get_vertex_attrib_pointer(e, state);
5577 if (gl_info->supported[EXT_SECONDARY_COLOR])
5579 GLint format;
5580 GLenum type;
5582 format_gl = wined3d_format_gl(e->format);
5583 type = format_gl->vtx_type;
5584 format = format_gl->vtx_format;
5586 bo = wined3d_bo_gl_id(e->data.buffer_object);
5587 if (current_bo != bo)
5589 GL_EXTCALL(glBindBuffer(GL_ARRAY_BUFFER, bo));
5590 checkGLcall("glBindBuffer");
5591 current_bo = bo;
5594 if (format != 4 || (gl_info->quirks & WINED3D_QUIRK_ALLOWS_SPECULAR_ALPHA))
5596 /* Usually specular colors only allow 3 components, since they have no alpha. In D3D, the specular alpha
5597 * contains the fog coordinate, which is passed to GL with GL_EXT_fog_coord. However, the fixed function
5598 * vertex pipeline can pass the specular alpha through, and pixel shaders can read it. So it GL accepts
5599 * 4 component secondary colors use it
5601 TRACE("glSecondaryColorPointer(%#x, %#x, %#x, %p);\n", format, type, e->stride, offset);
5602 GL_EXTCALL(glSecondaryColorPointerEXT(format, type, e->stride, offset));
5603 checkGLcall("glSecondaryColorPointerEXT(format, type, ...)");
5605 else
5607 switch (type)
5609 case GL_UNSIGNED_BYTE:
5610 TRACE("glSecondaryColorPointer(3, GL_UNSIGNED_BYTE, %#x, %p);\n", e->stride, offset);
5611 GL_EXTCALL(glSecondaryColorPointerEXT(3, GL_UNSIGNED_BYTE, e->stride, offset));
5612 checkGLcall("glSecondaryColorPointerEXT(3, GL_UNSIGNED_BYTE, ...)");
5613 break;
5615 default:
5616 FIXME("Add 4 component specular colour pointers for type %#x.\n", type);
5617 /* Make sure that the right colour component is dropped. */
5618 TRACE("glSecondaryColorPointer(3, %#x, %#x, %p);\n", type, e->stride, offset);
5619 GL_EXTCALL(glSecondaryColorPointerEXT(3, type, e->stride, offset));
5620 checkGLcall("glSecondaryColorPointerEXT(3, type, ...)");
5623 gl_info->gl_ops.gl.p_glEnableClientState(GL_SECONDARY_COLOR_ARRAY_EXT);
5624 checkGLcall("glEnableClientState(GL_SECONDARY_COLOR_ARRAY_EXT)");
5625 state->streams[e->stream_idx].buffer->bo_user.valid = true;
5627 else
5629 WARN("Specular colour is not supported in this GL implementation.\n");
5632 else
5634 if (gl_info->supported[EXT_SECONDARY_COLOR])
5636 GL_EXTCALL(glSecondaryColor3fEXT)(0, 0, 0);
5637 checkGLcall("glSecondaryColor3fEXT(0, 0, 0)");
5639 else
5641 WARN("Specular colour is not supported in this GL implementation.\n");
5645 /* Texture coordinates */
5646 wined3d_context_gl_load_tex_coords(context_gl, si, &current_bo, state);
5649 static void wined3d_context_gl_unload_numbered_array(struct wined3d_context_gl *context_gl, unsigned int i)
5651 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
5653 GL_EXTCALL(glDisableVertexAttribArray(i));
5654 checkGLcall("glDisableVertexAttribArray");
5655 if (gl_info->supported[ARB_INSTANCED_ARRAYS])
5656 GL_EXTCALL(glVertexAttribDivisor(i, 0));
5658 context_gl->c.numbered_array_mask &= ~(1u << i);
5661 static void wined3d_context_gl_unload_numbered_arrays(struct wined3d_context_gl *context_gl)
5663 uint32_t mask = context_gl->c.numbered_array_mask;
5664 unsigned int i;
5666 while (mask)
5668 i = wined3d_bit_scan(&mask);
5669 wined3d_context_gl_unload_numbered_array(context_gl, i);
5673 static void wined3d_context_gl_load_numbered_arrays(struct wined3d_context_gl *context_gl,
5674 const struct wined3d_stream_info *stream_info, const struct wined3d_state *state)
5676 struct wined3d_context *context = &context_gl->c;
5677 const struct wined3d_shader *vs = state->shader[WINED3D_SHADER_TYPE_VERTEX];
5678 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
5679 GLuint current_bo, bo;
5680 unsigned int i;
5682 /* Default to no instancing. */
5683 context->instance_count = 0;
5684 current_bo = gl_info->supported[ARB_VERTEX_BUFFER_OBJECT] ? ~0u : 0;
5686 if (stream_info->use_map & ~wined3d_mask_from_size(gl_info->limits.vertex_attribs))
5688 static unsigned int once;
5690 if (!once++)
5691 FIXME("More than the supported %u vertex attributes are in use.\n", gl_info->limits.vertex_attribs);
5694 for (i = 0; i < gl_info->limits.vertex_attribs; ++i)
5696 const struct wined3d_stream_info_element *element = &stream_info->elements[i];
5697 const struct wined3d_stream_state *stream;
5698 const struct wined3d_format_gl *format_gl;
5700 if (!(stream_info->use_map & (1u << i)))
5702 if (context->numbered_array_mask & (1u << i))
5703 wined3d_context_gl_unload_numbered_array(context_gl, i);
5704 if (!use_vs(state) && i == WINED3D_FFP_DIFFUSE)
5706 if (!(context_gl->default_attrib_value_set & (1u << i)) || !context_gl->diffuse_attrib_to_1)
5708 GL_EXTCALL(glVertexAttrib4f(i, 1.0f, 1.0f, 1.0f, 1.0f));
5709 context_gl->diffuse_attrib_to_1 = 1;
5712 else
5714 if (!(context_gl->default_attrib_value_set & (1u << i)))
5716 GL_EXTCALL(glVertexAttrib4f(i, 0.0f, 0.0f, 0.0f, 0.0f));
5717 if (i == WINED3D_FFP_DIFFUSE)
5718 context_gl->diffuse_attrib_to_1 = 0;
5721 context_gl->default_attrib_value_set |= 1u << i;
5722 continue;
5725 format_gl = wined3d_format_gl(element->format);
5726 stream = &state->streams[element->stream_idx];
5727 stream->buffer->bo_user.valid = true;
5729 if ((stream->flags & WINED3DSTREAMSOURCE_INSTANCEDATA) && !context->instance_count)
5730 context->instance_count = state->streams[0].frequency;
5732 if (gl_info->supported[ARB_INSTANCED_ARRAYS])
5734 unsigned int divisor = 0;
5736 if (element->instanced)
5737 divisor = element->divisor ? element->divisor : UINT_MAX;
5738 GL_EXTCALL(glVertexAttribDivisor(i, divisor));
5740 else if (element->divisor)
5742 /* Unload instanced arrays, they will be loaded using immediate
5743 * mode instead. */
5744 if (context->numbered_array_mask & (1u << i))
5745 wined3d_context_gl_unload_numbered_array(context_gl, i);
5746 context_gl->default_attrib_value_set &= ~(1u << i);
5747 continue;
5750 TRACE("Loading array %u %s.\n", i, debug_bo_address(&element->data));
5752 if (element->stride)
5754 const void *offset = get_vertex_attrib_pointer(element, state);
5755 unsigned int format_attrs = format_gl->f.attrs;
5757 bo = wined3d_bo_gl_id(element->data.buffer_object);
5758 if (current_bo != bo)
5760 GL_EXTCALL(glBindBuffer(GL_ARRAY_BUFFER, bo));
5761 checkGLcall("glBindBuffer");
5762 current_bo = bo;
5764 /* Use the VBO to find out if a vertex buffer exists, not the vb
5765 * pointer. vb can point to a user pointer data blob. In that case
5766 * current_bo will be 0. If there is a vertex buffer but no vbo we
5767 * won't be load converted attributes anyway. */
5768 if (vs && vs->reg_maps.shader_version.major >= 4 && (format_attrs & WINED3D_FORMAT_ATTR_INTEGER))
5770 GL_EXTCALL(glVertexAttribIPointer(i, format_gl->vtx_format,
5771 format_gl->vtx_type, element->stride, offset));
5773 else
5775 GL_EXTCALL(glVertexAttribPointer(i, format_gl->vtx_format, format_gl->vtx_type,
5776 !!(format_attrs & WINED3D_FORMAT_ATTR_NORMALISED), element->stride, offset));
5779 if (!(context->numbered_array_mask & (1u << i)))
5781 GL_EXTCALL(glEnableVertexAttribArray(i));
5782 context->numbered_array_mask |= (1u << i);
5785 else
5787 /* Stride = 0 means always the same values.
5788 * glVertexAttribPointer() doesn't do that. Instead disable the
5789 * pointer and set up the attribute statically. But we have to
5790 * figure out the system memory address. */
5791 const BYTE *ptr = element->data.addr;
5792 if (element->data.buffer_object)
5793 ptr += (ULONG_PTR)wined3d_buffer_load_sysmem(stream->buffer, context);
5795 if (context->numbered_array_mask & (1u << i))
5796 wined3d_context_gl_unload_numbered_array(context_gl, i);
5798 switch (format_gl->f.id)
5800 case WINED3DFMT_R32_FLOAT:
5801 GL_EXTCALL(glVertexAttrib1fv(i, (const GLfloat *)ptr));
5802 break;
5803 case WINED3DFMT_R32G32_FLOAT:
5804 GL_EXTCALL(glVertexAttrib2fv(i, (const GLfloat *)ptr));
5805 break;
5806 case WINED3DFMT_R32G32B32_FLOAT:
5807 GL_EXTCALL(glVertexAttrib3fv(i, (const GLfloat *)ptr));
5808 break;
5809 case WINED3DFMT_R32G32B32A32_FLOAT:
5810 GL_EXTCALL(glVertexAttrib4fv(i, (const GLfloat *)ptr));
5811 break;
5812 case WINED3DFMT_R8G8B8A8_UINT:
5813 GL_EXTCALL(glVertexAttrib4ubv(i, ptr));
5814 break;
5815 case WINED3DFMT_B8G8R8A8_UNORM:
5816 if (gl_info->supported[ARB_VERTEX_ARRAY_BGRA])
5818 const DWORD *src = (const DWORD *)ptr;
5819 DWORD c = *src & 0xff00ff00u;
5820 c |= (*src & 0xff0000u) >> 16;
5821 c |= (*src & 0xffu) << 16;
5822 GL_EXTCALL(glVertexAttrib4Nubv(i, (GLubyte *)&c));
5823 break;
5825 /* else fallthrough */
5826 case WINED3DFMT_R8G8B8A8_UNORM:
5827 GL_EXTCALL(glVertexAttrib4Nubv(i, ptr));
5828 break;
5829 case WINED3DFMT_R16G16_SINT:
5830 GL_EXTCALL(glVertexAttrib2sv(i, (const GLshort *)ptr));
5831 break;
5832 case WINED3DFMT_R16G16B16A16_SINT:
5833 GL_EXTCALL(glVertexAttrib4sv(i, (const GLshort *)ptr));
5834 break;
5835 case WINED3DFMT_R16G16_SNORM:
5837 const GLshort s[4] = {((const GLshort *)ptr)[0], ((const GLshort *)ptr)[1], 0, 1};
5838 GL_EXTCALL(glVertexAttrib4Nsv(i, s));
5839 break;
5841 case WINED3DFMT_R16G16_UNORM:
5843 const GLushort s[4] = {((const GLushort *)ptr)[0], ((const GLushort *)ptr)[1], 0, 1};
5844 GL_EXTCALL(glVertexAttrib4Nusv(i, s));
5845 break;
5847 case WINED3DFMT_R16G16B16A16_SNORM:
5848 GL_EXTCALL(glVertexAttrib4Nsv(i, (const GLshort *)ptr));
5849 break;
5850 case WINED3DFMT_R16G16B16A16_UNORM:
5851 GL_EXTCALL(glVertexAttrib4Nusv(i, (const GLushort *)ptr));
5852 break;
5853 case WINED3DFMT_R10G10B10X2_UINT:
5854 FIXME("Unsure about WINED3DDECLTYPE_UDEC3.\n");
5855 /*glVertexAttrib3usvARB(i, (const GLushort *)ptr); Does not exist */
5856 break;
5857 case WINED3DFMT_R10G10B10X2_SNORM:
5858 FIXME("Unsure about WINED3DDECLTYPE_DEC3N.\n");
5859 /*glVertexAttrib3NusvARB(i, (const GLushort *)ptr); Does not exist */
5860 break;
5861 case WINED3DFMT_R16G16_FLOAT:
5862 if (gl_info->supported[NV_HALF_FLOAT] && gl_info->supported[NV_VERTEX_PROGRAM])
5864 /* Not supported by GL_ARB_half_float_vertex. */
5865 GL_EXTCALL(glVertexAttrib2hvNV(i, (const GLhalfNV *)ptr));
5867 else
5869 float x = float_16_to_32(((const unsigned short *)ptr) + 0);
5870 float y = float_16_to_32(((const unsigned short *)ptr) + 1);
5871 GL_EXTCALL(glVertexAttrib2f(i, x, y));
5873 break;
5874 case WINED3DFMT_R16G16B16A16_FLOAT:
5875 if (gl_info->supported[NV_HALF_FLOAT] && gl_info->supported[NV_VERTEX_PROGRAM])
5877 /* Not supported by GL_ARB_half_float_vertex. */
5878 GL_EXTCALL(glVertexAttrib4hvNV(i, (const GLhalfNV *)ptr));
5880 else
5882 float x = float_16_to_32(((const unsigned short *)ptr) + 0);
5883 float y = float_16_to_32(((const unsigned short *)ptr) + 1);
5884 float z = float_16_to_32(((const unsigned short *)ptr) + 2);
5885 float w = float_16_to_32(((const unsigned short *)ptr) + 3);
5886 GL_EXTCALL(glVertexAttrib4f(i, x, y, z, w));
5888 break;
5889 default:
5890 ERR("Unexpected declaration in stride 0 attributes.\n");
5891 break;
5894 context_gl->default_attrib_value_set &= ~(1u << i);
5897 checkGLcall("Loading numbered arrays");
5900 void wined3d_context_gl_update_stream_sources(struct wined3d_context_gl *context_gl,
5901 const struct wined3d_state *state)
5903 if (context_gl->c.use_immediate_mode_draw)
5904 return;
5906 wined3d_context_gl_unload_vertex_data(context_gl);
5907 if (context_gl->c.d3d_info->ffp_generic_attributes || use_vs(state))
5909 TRACE("Loading numbered arrays.\n");
5910 wined3d_context_gl_load_numbered_arrays(context_gl, &context_gl->c.stream_info, state);
5911 return;
5914 TRACE("Loading named arrays.\n");
5915 wined3d_context_gl_unload_numbered_arrays(context_gl);
5916 wined3d_context_gl_load_vertex_data(context_gl, &context_gl->c.stream_info, state);
5917 context_gl->c.namedArraysLoaded = TRUE;
5920 static void apply_texture_blit_state(const struct wined3d_gl_info *gl_info, struct gl_texture *texture,
5921 GLenum target, unsigned int level, enum wined3d_texture_filter_type filter)
5923 gl_info->gl_ops.gl.p_glTexParameteri(target, GL_TEXTURE_MAG_FILTER, wined3d_gl_mag_filter(filter));
5924 gl_info->gl_ops.gl.p_glTexParameteri(target, GL_TEXTURE_MIN_FILTER,
5925 wined3d_gl_min_mip_filter(filter, WINED3D_TEXF_NONE));
5926 gl_info->gl_ops.gl.p_glTexParameteri(target, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
5927 gl_info->gl_ops.gl.p_glTexParameteri(target, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
5928 if (gl_info->supported[EXT_TEXTURE_SRGB_DECODE])
5929 gl_info->gl_ops.gl.p_glTexParameteri(target, GL_TEXTURE_SRGB_DECODE_EXT, GL_SKIP_DECODE_EXT);
5930 gl_info->gl_ops.gl.p_glTexParameteri(target, GL_TEXTURE_BASE_LEVEL, level);
5932 /* We changed the filtering settings on the texture. Make sure they get
5933 * reset on subsequent draws. */
5934 texture->sampler_desc.mag_filter = WINED3D_TEXF_POINT;
5935 texture->sampler_desc.min_filter = WINED3D_TEXF_POINT;
5936 texture->sampler_desc.mip_filter = WINED3D_TEXF_NONE;
5937 texture->sampler_desc.address_u = WINED3D_TADDRESS_CLAMP;
5938 texture->sampler_desc.address_v = WINED3D_TADDRESS_CLAMP;
5939 texture->sampler_desc.srgb_decode = FALSE;
5940 texture->base_level = level;
5943 /* Context activation is done by the caller. */
5944 void wined3d_context_gl_draw_shaded_quad(struct wined3d_context_gl *context_gl, struct wined3d_texture_gl *texture_gl,
5945 unsigned int sub_resource_idx, const RECT *src_rect, const RECT *dst_rect,
5946 enum wined3d_texture_filter_type filter)
5948 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
5949 struct wined3d_blt_info info;
5950 unsigned int level, w, h, i;
5951 SIZE dst_size;
5952 struct blit_vertex
5954 float x, y;
5955 struct wined3d_vec3 texcoord;
5957 quad[4];
5959 texture2d_get_blt_info(texture_gl, sub_resource_idx, src_rect, &info);
5961 level = sub_resource_idx % texture_gl->t.level_count;
5962 wined3d_context_gl_bind_texture(context_gl, info.bind_target, texture_gl->texture_rgb.name);
5963 apply_texture_blit_state(gl_info, &texture_gl->texture_rgb, info.bind_target, level, filter);
5964 gl_info->gl_ops.gl.p_glTexParameteri(info.bind_target, GL_TEXTURE_MAX_LEVEL, level);
5966 wined3d_context_gl_pause_transform_feedback(context_gl, FALSE);
5968 wined3d_context_gl_get_rt_size(context_gl, &dst_size);
5969 w = dst_size.cx;
5970 h = dst_size.cy;
5972 quad[0].x = dst_rect->left * 2.0f / w - 1.0f;
5973 quad[0].y = dst_rect->top * 2.0f / h - 1.0f;
5974 quad[0].texcoord = info.texcoords[0];
5976 quad[1].x = dst_rect->right * 2.0f / w - 1.0f;
5977 quad[1].y = dst_rect->top * 2.0f / h - 1.0f;
5978 quad[1].texcoord = info.texcoords[1];
5980 quad[2].x = dst_rect->left * 2.0f / w - 1.0f;
5981 quad[2].y = dst_rect->bottom * 2.0f / h - 1.0f;
5982 quad[2].texcoord = info.texcoords[2];
5984 quad[3].x = dst_rect->right * 2.0f / w - 1.0f;
5985 quad[3].y = dst_rect->bottom * 2.0f / h - 1.0f;
5986 quad[3].texcoord = info.texcoords[3];
5988 /* Draw a quad. */
5989 if (gl_info->supported[ARB_VERTEX_BUFFER_OBJECT])
5991 if (!context_gl->blit_vbo)
5992 GL_EXTCALL(glGenBuffers(1, &context_gl->blit_vbo));
5993 GL_EXTCALL(glBindBuffer(GL_ARRAY_BUFFER, context_gl->blit_vbo));
5995 wined3d_context_gl_unload_vertex_data(context_gl);
5996 wined3d_context_gl_unload_numbered_arrays(context_gl);
5998 GL_EXTCALL(glBufferData(GL_ARRAY_BUFFER, sizeof(quad), quad, GL_STREAM_DRAW));
5999 GL_EXTCALL(glVertexAttribPointer(0, 2, GL_FLOAT, FALSE, sizeof(*quad), NULL));
6000 GL_EXTCALL(glVertexAttribPointer(1, 3, GL_FLOAT, FALSE, sizeof(*quad),
6001 (void *)FIELD_OFFSET(struct blit_vertex, texcoord)));
6003 GL_EXTCALL(glEnableVertexAttribArray(0));
6004 GL_EXTCALL(glEnableVertexAttribArray(1));
6006 gl_info->gl_ops.gl.p_glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
6008 GL_EXTCALL(glBindBuffer(GL_ARRAY_BUFFER, 0));
6009 GL_EXTCALL(glDisableVertexAttribArray(1));
6010 GL_EXTCALL(glDisableVertexAttribArray(0));
6012 else
6014 gl_info->gl_ops.gl.p_glBegin(GL_TRIANGLE_STRIP);
6016 for (i = 0; i < ARRAY_SIZE(quad); ++i)
6018 GL_EXTCALL(glVertexAttrib3fv(1, &quad[i].texcoord.x));
6019 GL_EXTCALL(glVertexAttrib2fv(0, &quad[i].x));
6022 gl_info->gl_ops.gl.p_glEnd();
6024 checkGLcall("draw");
6026 gl_info->gl_ops.gl.p_glTexParameteri(info.bind_target, GL_TEXTURE_MAX_LEVEL, texture_gl->t.level_count - 1);
6027 wined3d_context_gl_bind_texture(context_gl, info.bind_target, 0);
6030 /* Context activation is done by the caller. */
6031 void wined3d_context_gl_draw_textured_quad(struct wined3d_context_gl *context_gl,
6032 struct wined3d_texture_gl *texture_gl, unsigned int sub_resource_idx,
6033 const RECT *src_rect, const RECT *dst_rect, enum wined3d_texture_filter_type filter)
6035 const struct wined3d_gl_info *gl_info = context_gl->gl_info;
6036 struct wined3d_blt_info info;
6037 unsigned int level;
6039 texture2d_get_blt_info(texture_gl, sub_resource_idx, src_rect, &info);
6041 gl_info->gl_ops.gl.p_glEnable(info.bind_target);
6042 checkGLcall("glEnable(bind_target)");
6044 level = sub_resource_idx % texture_gl->t.level_count;
6045 wined3d_context_gl_bind_texture(context_gl, info.bind_target, texture_gl->texture_rgb.name);
6046 apply_texture_blit_state(gl_info, &texture_gl->texture_rgb, info.bind_target, level, filter);
6047 gl_info->gl_ops.gl.p_glTexParameteri(info.bind_target, GL_TEXTURE_MAX_LEVEL, level);
6048 gl_info->gl_ops.gl.p_glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
6049 checkGLcall("glTexEnvi");
6051 wined3d_context_gl_pause_transform_feedback(context_gl, FALSE);
6053 /* Draw a quad. */
6054 gl_info->gl_ops.gl.p_glBegin(GL_TRIANGLE_STRIP);
6055 gl_info->gl_ops.gl.p_glTexCoord3fv(&info.texcoords[0].x);
6056 gl_info->gl_ops.gl.p_glVertex2i(dst_rect->left, dst_rect->top);
6058 gl_info->gl_ops.gl.p_glTexCoord3fv(&info.texcoords[1].x);
6059 gl_info->gl_ops.gl.p_glVertex2i(dst_rect->right, dst_rect->top);
6061 gl_info->gl_ops.gl.p_glTexCoord3fv(&info.texcoords[2].x);
6062 gl_info->gl_ops.gl.p_glVertex2i(dst_rect->left, dst_rect->bottom);
6064 gl_info->gl_ops.gl.p_glTexCoord3fv(&info.texcoords[3].x);
6065 gl_info->gl_ops.gl.p_glVertex2i(dst_rect->right, dst_rect->bottom);
6066 gl_info->gl_ops.gl.p_glEnd();
6068 gl_info->gl_ops.gl.p_glTexParameteri(info.bind_target, GL_TEXTURE_MAX_LEVEL, texture_gl->t.level_count - 1);
6069 wined3d_context_gl_bind_texture(context_gl, info.bind_target, 0);