wined3d: Support the full amount of constants in GLSL.
[wine/hacks.git] / dlls / wined3d / glsl_shader.c
blob6aca4da0ff1094e490b472c36c28ea16a2e1cc7c
1 /*
2 * GLSL pixel and vertex shader implementation
4 * Copyright 2006 Jason Green
5 * Copyright 2006-2007 Henri Verbeet
6 * Copyright 2007-2008 Stefan Dösinger for CodeWeavers
7 * Copyright 2009 Henri Verbeet for CodeWeavers
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 * D3D shader asm has swizzles on source parameters, and write masks for
26 * destination parameters. GLSL uses swizzles for both. The result of this is
27 * that for example "mov dst.xw, src.zyxw" becomes "dst.xw = src.zw" in GLSL.
28 * Ie, to generate a proper GLSL source swizzle, we need to take the D3D write
29 * mask for the destination parameter into account.
32 #include "config.h"
33 #include <limits.h>
34 #include <stdio.h>
35 #include "wined3d_private.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(d3d_shader);
38 WINE_DECLARE_DEBUG_CHANNEL(d3d_constants);
39 WINE_DECLARE_DEBUG_CHANNEL(d3d_caps);
40 WINE_DECLARE_DEBUG_CHANNEL(d3d);
42 #define GLINFO_LOCATION (*gl_info)
44 #define WINED3D_GLSL_SAMPLE_PROJECTED 0x1
45 #define WINED3D_GLSL_SAMPLE_RECT 0x2
46 #define WINED3D_GLSL_SAMPLE_LOD 0x4
48 typedef struct {
49 char reg_name[150];
50 char mask_str[6];
51 } glsl_dst_param_t;
53 typedef struct {
54 char reg_name[150];
55 char param_str[100];
56 } glsl_src_param_t;
58 typedef struct {
59 const char *name;
60 DWORD coord_mask;
61 } glsl_sample_function_t;
63 enum heap_node_op
65 HEAP_NODE_TRAVERSE_LEFT,
66 HEAP_NODE_TRAVERSE_RIGHT,
67 HEAP_NODE_POP,
70 struct constant_entry
72 unsigned int idx;
73 unsigned int version;
76 struct constant_heap
78 struct constant_entry *entries;
79 unsigned int *positions;
80 unsigned int size;
83 /* GLSL shader private data */
84 struct shader_glsl_priv {
85 struct hash_table_t *glsl_program_lookup;
86 struct glsl_shader_prog_link *glsl_program;
87 struct constant_heap vconst_heap;
88 struct constant_heap pconst_heap;
89 unsigned char *stack;
90 GLhandleARB depth_blt_program[tex_type_count];
91 UINT next_constant_version;
94 /* Struct to maintain data about a linked GLSL program */
95 struct glsl_shader_prog_link {
96 struct list vshader_entry;
97 struct list pshader_entry;
98 GLhandleARB programId;
99 GLint *vuniformF_locations;
100 GLint *puniformF_locations;
101 GLint vuniformI_locations[MAX_CONST_I];
102 GLint puniformI_locations[MAX_CONST_I];
103 GLint posFixup_location;
104 GLint np2Fixup_location[MAX_FRAGMENT_SAMPLERS];
105 GLint bumpenvmat_location[MAX_TEXTURES];
106 GLint luminancescale_location[MAX_TEXTURES];
107 GLint luminanceoffset_location[MAX_TEXTURES];
108 GLint ycorrection_location;
109 GLenum vertex_color_clamp;
110 IWineD3DVertexShader *vshader;
111 IWineD3DPixelShader *pshader;
112 struct vs_compile_args vs_args;
113 struct ps_compile_args ps_args;
114 UINT constant_version;
117 typedef struct {
118 IWineD3DVertexShader *vshader;
119 IWineD3DPixelShader *pshader;
120 struct ps_compile_args ps_args;
121 struct vs_compile_args vs_args;
122 } glsl_program_key_t;
125 /** Prints the GLSL info log which will contain error messages if they exist */
126 static void print_glsl_info_log(const WineD3D_GL_Info *gl_info, GLhandleARB obj)
128 int infologLength = 0;
129 char *infoLog;
130 unsigned int i;
131 BOOL is_spam;
133 static const char * const spam[] =
135 "Vertex shader was successfully compiled to run on hardware.\n", /* fglrx */
136 "Fragment shader was successfully compiled to run on hardware.\n", /* fglrx */
137 "Fragment shader(s) linked, vertex shader(s) linked. \n ", /* fglrx, with \n */
138 "Fragment shader(s) linked, vertex shader(s) linked.", /* fglrx, no \n */
139 "Vertex shader(s) linked, no fragment shader(s) defined. \n ", /* fglrx, with \n */
140 "Vertex shader(s) linked, no fragment shader(s) defined.", /* fglrx, no \n */
141 "Fragment shader was successfully compiled to run on hardware.\n"
142 "WARNING: 0:2: extension 'GL_ARB_draw_buffers' is not supported",
143 "Fragment shader(s) linked, no vertex shader(s) defined.", /* fglrx, no \n */
144 "Fragment shader(s) linked, no vertex shader(s) defined. \n ", /* fglrx, with \n */
145 "WARNING: 0:2: extension 'GL_ARB_draw_buffers' is not supported\n" /* MacOS ati */
148 if (!TRACE_ON(d3d_shader) && !FIXME_ON(d3d_shader)) return;
150 GL_EXTCALL(glGetObjectParameterivARB(obj,
151 GL_OBJECT_INFO_LOG_LENGTH_ARB,
152 &infologLength));
154 /* A size of 1 is just a null-terminated string, so the log should be bigger than
155 * that if there are errors. */
156 if (infologLength > 1)
158 /* Fglrx doesn't terminate the string properly, but it tells us the proper length.
159 * So use HEAP_ZERO_MEMORY to avoid uninitialized bytes
161 infoLog = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, infologLength);
162 GL_EXTCALL(glGetInfoLogARB(obj, infologLength, NULL, infoLog));
163 is_spam = FALSE;
165 for(i = 0; i < sizeof(spam) / sizeof(spam[0]); i++) {
166 if(strcmp(infoLog, spam[i]) == 0) {
167 is_spam = TRUE;
168 break;
171 if(is_spam) {
172 TRACE("Spam received from GLSL shader #%u: %s\n", obj, debugstr_a(infoLog));
173 } else {
174 FIXME("Error received from GLSL shader #%u: %s\n", obj, debugstr_a(infoLog));
176 HeapFree(GetProcessHeap(), 0, infoLog);
181 * Loads (pixel shader) samplers
183 static void shader_glsl_load_psamplers(const WineD3D_GL_Info *gl_info, DWORD *tex_unit_map, GLhandleARB programId)
185 GLint name_loc;
186 int i;
187 char sampler_name[20];
189 for (i = 0; i < MAX_FRAGMENT_SAMPLERS; ++i) {
190 snprintf(sampler_name, sizeof(sampler_name), "Psampler%d", i);
191 name_loc = GL_EXTCALL(glGetUniformLocationARB(programId, sampler_name));
192 if (name_loc != -1) {
193 DWORD mapped_unit = tex_unit_map[i];
194 if (mapped_unit != WINED3D_UNMAPPED_STAGE && mapped_unit < GL_LIMITS(fragment_samplers))
196 TRACE("Loading %s for texture %d\n", sampler_name, mapped_unit);
197 GL_EXTCALL(glUniform1iARB(name_loc, mapped_unit));
198 checkGLcall("glUniform1iARB");
199 } else {
200 ERR("Trying to load sampler %s on unsupported unit %d\n", sampler_name, mapped_unit);
206 static void shader_glsl_load_vsamplers(const WineD3D_GL_Info *gl_info, DWORD *tex_unit_map, GLhandleARB programId)
208 GLint name_loc;
209 char sampler_name[20];
210 int i;
212 for (i = 0; i < MAX_VERTEX_SAMPLERS; ++i) {
213 snprintf(sampler_name, sizeof(sampler_name), "Vsampler%d", i);
214 name_loc = GL_EXTCALL(glGetUniformLocationARB(programId, sampler_name));
215 if (name_loc != -1) {
216 DWORD mapped_unit = tex_unit_map[MAX_FRAGMENT_SAMPLERS + i];
217 if (mapped_unit != WINED3D_UNMAPPED_STAGE && mapped_unit < GL_LIMITS(combined_samplers))
219 TRACE("Loading %s for texture %d\n", sampler_name, mapped_unit);
220 GL_EXTCALL(glUniform1iARB(name_loc, mapped_unit));
221 checkGLcall("glUniform1iARB");
222 } else {
223 ERR("Trying to load sampler %s on unsupported unit %d\n", sampler_name, mapped_unit);
229 static inline void walk_constant_heap(const WineD3D_GL_Info *gl_info, const float *constants,
230 const GLint *constant_locations, const struct constant_heap *heap, unsigned char *stack, DWORD version)
232 int stack_idx = 0;
233 unsigned int heap_idx = 1;
234 unsigned int idx;
236 if (heap->entries[heap_idx].version <= version) return;
238 idx = heap->entries[heap_idx].idx;
239 if (constant_locations[idx] != -1) GL_EXTCALL(glUniform4fvARB(constant_locations[idx], 1, &constants[idx * 4]));
240 stack[stack_idx] = HEAP_NODE_TRAVERSE_LEFT;
242 while (stack_idx >= 0)
244 /* Note that we fall through to the next case statement. */
245 switch(stack[stack_idx])
247 case HEAP_NODE_TRAVERSE_LEFT:
249 unsigned int left_idx = heap_idx << 1;
250 if (left_idx < heap->size && heap->entries[left_idx].version > version)
252 heap_idx = left_idx;
253 idx = heap->entries[heap_idx].idx;
254 if (constant_locations[idx] != -1)
255 GL_EXTCALL(glUniform4fvARB(constant_locations[idx], 1, &constants[idx * 4]));
257 stack[stack_idx++] = HEAP_NODE_TRAVERSE_RIGHT;
258 stack[stack_idx] = HEAP_NODE_TRAVERSE_LEFT;
259 break;
263 case HEAP_NODE_TRAVERSE_RIGHT:
265 unsigned int right_idx = (heap_idx << 1) + 1;
266 if (right_idx < heap->size && heap->entries[right_idx].version > version)
268 heap_idx = right_idx;
269 idx = heap->entries[heap_idx].idx;
270 if (constant_locations[idx] != -1)
271 GL_EXTCALL(glUniform4fvARB(constant_locations[idx], 1, &constants[idx * 4]));
273 stack[stack_idx++] = HEAP_NODE_POP;
274 stack[stack_idx] = HEAP_NODE_TRAVERSE_LEFT;
275 break;
279 case HEAP_NODE_POP:
281 heap_idx >>= 1;
282 --stack_idx;
283 break;
287 checkGLcall("walk_constant_heap()");
290 static inline void apply_clamped_constant(const WineD3D_GL_Info *gl_info, GLint location, const GLfloat *data)
292 GLfloat clamped_constant[4];
294 if (location == -1) return;
296 clamped_constant[0] = data[0] < -1.0f ? -1.0f : data[0] > 1.0 ? 1.0 : data[0];
297 clamped_constant[1] = data[1] < -1.0f ? -1.0f : data[1] > 1.0 ? 1.0 : data[1];
298 clamped_constant[2] = data[2] < -1.0f ? -1.0f : data[2] > 1.0 ? 1.0 : data[2];
299 clamped_constant[3] = data[3] < -1.0f ? -1.0f : data[3] > 1.0 ? 1.0 : data[3];
301 GL_EXTCALL(glUniform4fvARB(location, 1, clamped_constant));
304 static inline void walk_constant_heap_clamped(const WineD3D_GL_Info *gl_info, const float *constants,
305 const GLint *constant_locations, const struct constant_heap *heap, unsigned char *stack, DWORD version)
307 int stack_idx = 0;
308 unsigned int heap_idx = 1;
309 unsigned int idx;
311 if (heap->entries[heap_idx].version <= version) return;
313 idx = heap->entries[heap_idx].idx;
314 apply_clamped_constant(gl_info, constant_locations[idx], &constants[idx * 4]);
315 stack[stack_idx] = HEAP_NODE_TRAVERSE_LEFT;
317 while (stack_idx >= 0)
319 /* Note that we fall through to the next case statement. */
320 switch(stack[stack_idx])
322 case HEAP_NODE_TRAVERSE_LEFT:
324 unsigned int left_idx = heap_idx << 1;
325 if (left_idx < heap->size && heap->entries[left_idx].version > version)
327 heap_idx = left_idx;
328 idx = heap->entries[heap_idx].idx;
329 apply_clamped_constant(gl_info, constant_locations[idx], &constants[idx * 4]);
331 stack[stack_idx++] = HEAP_NODE_TRAVERSE_RIGHT;
332 stack[stack_idx] = HEAP_NODE_TRAVERSE_LEFT;
333 break;
337 case HEAP_NODE_TRAVERSE_RIGHT:
339 unsigned int right_idx = (heap_idx << 1) + 1;
340 if (right_idx < heap->size && heap->entries[right_idx].version > version)
342 heap_idx = right_idx;
343 idx = heap->entries[heap_idx].idx;
344 apply_clamped_constant(gl_info, constant_locations[idx], &constants[idx * 4]);
346 stack[stack_idx++] = HEAP_NODE_POP;
347 stack[stack_idx] = HEAP_NODE_TRAVERSE_LEFT;
348 break;
352 case HEAP_NODE_POP:
354 heap_idx >>= 1;
355 --stack_idx;
356 break;
360 checkGLcall("walk_constant_heap_clamped()");
363 /* Loads floating point constants (aka uniforms) into the currently set GLSL program. */
364 static void shader_glsl_load_constantsF(IWineD3DBaseShaderImpl *This, const WineD3D_GL_Info *gl_info,
365 const float *constants, const GLint *constant_locations, const struct constant_heap *heap,
366 unsigned char *stack, UINT version)
368 const local_constant *lconst;
370 /* 1.X pshaders have the constants clamped to [-1;1] implicitly. */
371 if (WINED3DSHADER_VERSION_MAJOR(This->baseShader.reg_maps.shader_version) == 1
372 && shader_is_pshader_version(This->baseShader.reg_maps.shader_version))
373 walk_constant_heap_clamped(gl_info, constants, constant_locations, heap, stack, version);
374 else
375 walk_constant_heap(gl_info, constants, constant_locations, heap, stack, version);
377 if (!This->baseShader.load_local_constsF)
379 TRACE("No need to load local float constants for this shader\n");
380 return;
383 /* Immediate constants are clamped to [-1;1] at shader creation time if needed */
384 LIST_FOR_EACH_ENTRY(lconst, &This->baseShader.constantsF, local_constant, entry)
386 GLint location = constant_locations[lconst->idx];
387 /* We found this uniform name in the program - go ahead and send the data */
388 if (location != -1) GL_EXTCALL(glUniform4fvARB(location, 1, (const GLfloat *)lconst->value));
390 checkGLcall("glUniform4fvARB()");
393 /* Loads integer constants (aka uniforms) into the currently set GLSL program. */
394 static void shader_glsl_load_constantsI(IWineD3DBaseShaderImpl *This, const WineD3D_GL_Info *gl_info,
395 const GLint locations[MAX_CONST_I], const int *constants, WORD constants_set)
397 unsigned int i;
398 struct list* ptr;
400 for (i = 0; constants_set; constants_set >>= 1, ++i)
402 if (!(constants_set & 1)) continue;
404 TRACE_(d3d_constants)("Loading constants %u: %i, %i, %i, %i\n",
405 i, constants[i*4], constants[i*4+1], constants[i*4+2], constants[i*4+3]);
407 /* We found this uniform name in the program - go ahead and send the data */
408 GL_EXTCALL(glUniform4ivARB(locations[i], 1, &constants[i*4]));
409 checkGLcall("glUniform4ivARB");
412 /* Load immediate constants */
413 ptr = list_head(&This->baseShader.constantsI);
414 while (ptr) {
415 const struct local_constant *lconst = LIST_ENTRY(ptr, const struct local_constant, entry);
416 unsigned int idx = lconst->idx;
417 const GLint *values = (const GLint *)lconst->value;
419 TRACE_(d3d_constants)("Loading local constants %i: %i, %i, %i, %i\n", idx,
420 values[0], values[1], values[2], values[3]);
422 /* We found this uniform name in the program - go ahead and send the data */
423 GL_EXTCALL(glUniform4ivARB(locations[idx], 1, values));
424 checkGLcall("glUniform4ivARB");
425 ptr = list_next(&This->baseShader.constantsI, ptr);
429 /* Loads boolean constants (aka uniforms) into the currently set GLSL program. */
430 static void shader_glsl_load_constantsB(IWineD3DBaseShaderImpl *This, const WineD3D_GL_Info *gl_info,
431 GLhandleARB programId, const BOOL *constants, WORD constants_set)
433 GLint tmp_loc;
434 unsigned int i;
435 char tmp_name[8];
436 char is_pshader = shader_is_pshader_version(This->baseShader.reg_maps.shader_version);
437 const char* prefix = is_pshader? "PB":"VB";
438 struct list* ptr;
440 /* TODO: Benchmark and see if it would be beneficial to store the
441 * locations of the constants to avoid looking up each time */
442 for (i = 0; constants_set; constants_set >>= 1, ++i)
444 if (!(constants_set & 1)) continue;
446 TRACE_(d3d_constants)("Loading constants %i: %i;\n", i, constants[i]);
448 /* TODO: Benchmark and see if it would be beneficial to store the
449 * locations of the constants to avoid looking up each time */
450 snprintf(tmp_name, sizeof(tmp_name), "%s[%i]", prefix, i);
451 tmp_loc = GL_EXTCALL(glGetUniformLocationARB(programId, tmp_name));
452 if (tmp_loc != -1)
454 /* We found this uniform name in the program - go ahead and send the data */
455 GL_EXTCALL(glUniform1ivARB(tmp_loc, 1, &constants[i]));
456 checkGLcall("glUniform1ivARB");
460 /* Load immediate constants */
461 ptr = list_head(&This->baseShader.constantsB);
462 while (ptr) {
463 const struct local_constant *lconst = LIST_ENTRY(ptr, const struct local_constant, entry);
464 unsigned int idx = lconst->idx;
465 const GLint *values = (const GLint *)lconst->value;
467 TRACE_(d3d_constants)("Loading local constants %i: %i\n", idx, values[0]);
469 snprintf(tmp_name, sizeof(tmp_name), "%s[%i]", prefix, idx);
470 tmp_loc = GL_EXTCALL(glGetUniformLocationARB(programId, tmp_name));
471 if (tmp_loc != -1) {
472 /* We found this uniform name in the program - go ahead and send the data */
473 GL_EXTCALL(glUniform1ivARB(tmp_loc, 1, values));
474 checkGLcall("glUniform1ivARB");
476 ptr = list_next(&This->baseShader.constantsB, ptr);
480 static void reset_program_constant_version(void *value, void *context)
482 struct glsl_shader_prog_link *entry = value;
483 entry->constant_version = 0;
487 * Loads the texture dimensions for NP2 fixup into the currently set GLSL program.
489 static void shader_glsl_load_np2fixup_constants(
490 IWineD3DDevice* device,
491 char usePixelShader,
492 char useVertexShader) {
494 const IWineD3DDeviceImpl* deviceImpl = (const IWineD3DDeviceImpl*) device;
495 const struct glsl_shader_prog_link* prog = ((struct shader_glsl_priv *)(deviceImpl->shader_priv))->glsl_program;
497 if (!prog) {
498 /* No GLSL program set - nothing to do. */
499 return;
502 if (!usePixelShader) {
503 /* NP2 texcoord fixup is (currently) only done for pixelshaders. */
504 return;
507 if (prog->ps_args.np2_fixup) {
508 UINT i;
509 UINT fixup = prog->ps_args.np2_fixup;
510 const WineD3D_GL_Info* gl_info = &deviceImpl->adapter->gl_info;
511 const IWineD3DStateBlockImpl* stateBlock = (const IWineD3DStateBlockImpl*) deviceImpl->stateBlock;
513 for (i = 0; fixup; fixup >>= 1, ++i) {
514 if (-1 != prog->np2Fixup_location[i]) {
515 const IWineD3DBaseTextureImpl* const tex = (const IWineD3DBaseTextureImpl*) stateBlock->textures[i];
516 if (!tex) {
517 FIXME("Nonexistent texture is flagged for NP2 texcoord fixup\n");
518 continue;
519 } else {
520 const float tex_dim[2] = {tex->baseTexture.pow2Matrix[0], tex->baseTexture.pow2Matrix[5]};
521 GL_EXTCALL(glUniform2fvARB(prog->np2Fixup_location[i], 1, tex_dim));
529 * Loads the app-supplied constants into the currently set GLSL program.
531 static void shader_glsl_load_constants(
532 IWineD3DDevice* device,
533 char usePixelShader,
534 char useVertexShader) {
536 IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) device;
537 struct shader_glsl_priv *priv = deviceImpl->shader_priv;
538 IWineD3DStateBlockImpl* stateBlock = deviceImpl->stateBlock;
539 const WineD3D_GL_Info *gl_info = &deviceImpl->adapter->gl_info;
541 GLhandleARB programId;
542 struct glsl_shader_prog_link *prog = priv->glsl_program;
543 UINT constant_version;
544 int i;
546 if (!prog) {
547 /* No GLSL program set - nothing to do. */
548 return;
550 programId = prog->programId;
551 constant_version = prog->constant_version;
553 if (useVertexShader) {
554 IWineD3DBaseShaderImpl* vshader = (IWineD3DBaseShaderImpl*) stateBlock->vertexShader;
556 /* Load DirectX 9 float constants/uniforms for vertex shader */
557 shader_glsl_load_constantsF(vshader, gl_info, stateBlock->vertexShaderConstantF,
558 prog->vuniformF_locations, &priv->vconst_heap, priv->stack, constant_version);
560 /* Load DirectX 9 integer constants/uniforms for vertex shader */
561 if(vshader->baseShader.num_int_consts) {
562 shader_glsl_load_constantsI(vshader, gl_info, prog->vuniformI_locations,
563 stateBlock->vertexShaderConstantI, stateBlock->changed.vertexShaderConstantsI);
566 /* Load DirectX 9 boolean constants/uniforms for vertex shader */
567 if(vshader->baseShader.num_bool_consts) {
568 shader_glsl_load_constantsB(vshader, gl_info, programId,
569 stateBlock->vertexShaderConstantB, stateBlock->changed.vertexShaderConstantsB);
572 /* Upload the position fixup params */
573 GL_EXTCALL(glUniform4fvARB(prog->posFixup_location, 1, &deviceImpl->posFixup[0]));
574 checkGLcall("glUniform4fvARB");
577 if (usePixelShader) {
579 IWineD3DBaseShaderImpl* pshader = (IWineD3DBaseShaderImpl*) stateBlock->pixelShader;
581 /* Load DirectX 9 float constants/uniforms for pixel shader */
582 shader_glsl_load_constantsF(pshader, gl_info, stateBlock->pixelShaderConstantF,
583 prog->puniformF_locations, &priv->pconst_heap, priv->stack, constant_version);
585 /* Load DirectX 9 integer constants/uniforms for pixel shader */
586 if(pshader->baseShader.num_int_consts) {
587 shader_glsl_load_constantsI(pshader, gl_info, prog->puniformI_locations,
588 stateBlock->pixelShaderConstantI, stateBlock->changed.pixelShaderConstantsI);
591 /* Load DirectX 9 boolean constants/uniforms for pixel shader */
592 if(pshader->baseShader.num_bool_consts) {
593 shader_glsl_load_constantsB(pshader, gl_info, programId,
594 stateBlock->pixelShaderConstantB, stateBlock->changed.pixelShaderConstantsB);
597 /* Upload the environment bump map matrix if needed. The needsbumpmat member specifies the texture stage to load the matrix from.
598 * It can't be 0 for a valid texbem instruction.
600 for(i = 0; i < ((IWineD3DPixelShaderImpl *) pshader)->numbumpenvmatconsts; i++) {
601 IWineD3DPixelShaderImpl *ps = (IWineD3DPixelShaderImpl *) pshader;
602 int stage = ps->luminanceconst[i].texunit;
604 const float *data = (const float *)&stateBlock->textureState[(int)ps->bumpenvmatconst[i].texunit][WINED3DTSS_BUMPENVMAT00];
605 GL_EXTCALL(glUniformMatrix2fvARB(prog->bumpenvmat_location[i], 1, 0, data));
606 checkGLcall("glUniformMatrix2fvARB");
608 /* texbeml needs the luminance scale and offset too. If texbeml is used, needsbumpmat
609 * is set too, so we can check that in the needsbumpmat check
611 if(ps->baseShader.reg_maps.luminanceparams[stage]) {
612 const GLfloat *scale = (const GLfloat *)&stateBlock->textureState[stage][WINED3DTSS_BUMPENVLSCALE];
613 const GLfloat *offset = (const GLfloat *)&stateBlock->textureState[stage][WINED3DTSS_BUMPENVLOFFSET];
615 GL_EXTCALL(glUniform1fvARB(prog->luminancescale_location[i], 1, scale));
616 checkGLcall("glUniform1fvARB");
617 GL_EXTCALL(glUniform1fvARB(prog->luminanceoffset_location[i], 1, offset));
618 checkGLcall("glUniform1fvARB");
622 if(((IWineD3DPixelShaderImpl *) pshader)->vpos_uniform) {
623 float correction_params[4];
624 if(deviceImpl->render_offscreen) {
625 correction_params[0] = 0.0;
626 correction_params[1] = 1.0;
627 } else {
628 /* position is window relative, not viewport relative */
629 correction_params[0] = ((IWineD3DSurfaceImpl *) deviceImpl->render_targets[0])->currentDesc.Height;
630 correction_params[1] = -1.0;
632 GL_EXTCALL(glUniform4fvARB(prog->ycorrection_location, 1, correction_params));
636 if (priv->next_constant_version == UINT_MAX)
638 TRACE("Max constant version reached, resetting to 0.\n");
639 hash_table_for_each_entry(priv->glsl_program_lookup, reset_program_constant_version, NULL);
640 priv->next_constant_version = 1;
642 else
644 prog->constant_version = priv->next_constant_version++;
648 static inline void update_heap_entry(struct constant_heap *heap, unsigned int idx,
649 unsigned int heap_idx, DWORD new_version)
651 struct constant_entry *entries = heap->entries;
652 unsigned int *positions = heap->positions;
653 unsigned int parent_idx;
655 while (heap_idx > 1)
657 parent_idx = heap_idx >> 1;
659 if (new_version <= entries[parent_idx].version) break;
661 entries[heap_idx] = entries[parent_idx];
662 positions[entries[parent_idx].idx] = heap_idx;
663 heap_idx = parent_idx;
666 entries[heap_idx].version = new_version;
667 entries[heap_idx].idx = idx;
668 positions[idx] = heap_idx;
671 static void shader_glsl_update_float_vertex_constants(IWineD3DDevice *iface, UINT start, UINT count)
673 IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
674 struct shader_glsl_priv *priv = This->shader_priv;
675 struct constant_heap *heap = &priv->vconst_heap;
676 UINT i;
678 for (i = start; i < count + start; ++i)
680 if (!This->stateBlock->changed.vertexShaderConstantsF[i])
681 update_heap_entry(heap, i, heap->size++, priv->next_constant_version);
682 else
683 update_heap_entry(heap, i, heap->positions[i], priv->next_constant_version);
687 static void shader_glsl_update_float_pixel_constants(IWineD3DDevice *iface, UINT start, UINT count)
689 IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
690 struct shader_glsl_priv *priv = This->shader_priv;
691 struct constant_heap *heap = &priv->pconst_heap;
692 UINT i;
694 for (i = start; i < count + start; ++i)
696 if (!This->stateBlock->changed.pixelShaderConstantsF[i])
697 update_heap_entry(heap, i, heap->size++, priv->next_constant_version);
698 else
699 update_heap_entry(heap, i, heap->positions[i], priv->next_constant_version);
703 /** Generate the variable & register declarations for the GLSL output target */
704 static void shader_generate_glsl_declarations(IWineD3DBaseShader *iface, const shader_reg_maps *reg_maps,
705 SHADER_BUFFER *buffer, const WineD3D_GL_Info *gl_info,
706 const struct ps_compile_args *ps_args)
708 IWineD3DBaseShaderImpl* This = (IWineD3DBaseShaderImpl*) iface;
709 IWineD3DDeviceImpl *device = (IWineD3DDeviceImpl *) This->baseShader.device;
710 DWORD shader_version = reg_maps->shader_version;
711 unsigned int i, extra_constants_needed = 0;
712 const local_constant *lconst;
714 /* There are some minor differences between pixel and vertex shaders */
715 char pshader = shader_is_pshader_version(shader_version);
716 char prefix = pshader ? 'P' : 'V';
718 /* Prototype the subroutines */
719 for (i = 0; i < This->baseShader.limits.label; i++) {
720 if (reg_maps->labels[i])
721 shader_addline(buffer, "void subroutine%u();\n", i);
724 /* Declare the constants (aka uniforms) */
725 if (This->baseShader.limits.constant_float > 0) {
726 unsigned max_constantsF;
727 /* Unless the shader uses indirect addressing, always declare the maximum array size and ignore that we need some
728 * uniforms privately. E.g. if GL supports 256 uniforms, and we need 2 for the pos fixup and immediate values, still
729 * declare VC[256]. If the shader needs more uniforms than we have it won't work in any case. If it uses less, the
730 * compiler will figure out which uniforms are really used and strip them out. This allows a shader to use c255 on
731 * a dx9 card, as long as it doesn't also use all the other constants.
733 * If the shader uses indirect addressing the compiler must assume that all declared uniforms are used. In this case,
734 * declare only the amount that we're assured to have.
736 * Thus we run into problems in these two cases:
737 * 1) The shader really uses more uniforms than supported
738 * 2) The shader uses indirect addressing, less constants than supported, but uses a constant index > #supported consts
740 if(pshader) {
741 /* No indirect addressing here */
742 max_constantsF = GL_LIMITS(pshader_constantsF);
743 } else {
744 if(This->baseShader.reg_maps.usesrelconstF) {
745 /* Subtract the other potential uniforms from the max available (bools, ints, and 1 row of projection matrix).
746 * Subtract another uniform for immediate values, which have to be loaded via uniform by the driver as well.
747 * The shader code only uses 0.5, 2.0, 1.0, 128 and -128 in vertex shader code, so one vec4 should be enough
748 * (Unfortunately the Nvidia driver doesn't store 128 and -128 in one float
750 max_constantsF = GL_LIMITS(vshader_constantsF) - 3;
751 max_constantsF -= This->baseShader.num_int_consts;
752 /* Strictly speaking a bool only uses one scalar, but the nvidia(Linux) compiler doesn't pack them properly,
753 * so each scalar requires a full vec4. We could work around this by packing the booleans ourselves, but
754 * for now take this into account when calculating the number of available constants
756 max_constantsF -= This->baseShader.num_bool_consts;
757 /* Set by driver quirks in directx.c */
758 max_constantsF -= GLINFO_LOCATION.reserved_glsl_constants;
759 } else {
760 max_constantsF = GL_LIMITS(vshader_constantsF);
763 max_constantsF = min(This->baseShader.limits.constant_float, max_constantsF);
764 shader_addline(buffer, "uniform vec4 %cC[%u];\n", prefix, max_constantsF);
767 /* Always declare the full set of constants, the compiler can remove the unused ones because d3d doesn't(yet)
768 * support indirect int and bool constant addressing. This avoids problems if the app uses e.g. i0 and i9.
770 if (This->baseShader.limits.constant_int > 0 && This->baseShader.num_int_consts)
771 shader_addline(buffer, "uniform ivec4 %cI[%u];\n", prefix, This->baseShader.limits.constant_int);
773 if (This->baseShader.limits.constant_bool > 0 && This->baseShader.num_bool_consts)
774 shader_addline(buffer, "uniform bool %cB[%u];\n", prefix, This->baseShader.limits.constant_bool);
776 if(!pshader) {
777 shader_addline(buffer, "uniform vec4 posFixup;\n");
778 /* Predeclaration; This function is added at link time based on the pixel shader.
779 * VS 3.0 shaders have an array OUT[] the shader writes to, earlier versions don't have
780 * that. We know the input to the reorder function at vertex shader compile time, so
781 * we can deal with that. The reorder function for a 1.x and 2.x vertex shader can just
782 * read gl_FrontColor. The output depends on the pixel shader. The reorder function for a
783 * 1.x and 2.x pshader or for fixed function will write gl_FrontColor, and for a 3.0 shader
784 * it will write to the varying array. Here we depend on the shader optimizer on sorting that
785 * out. The nvidia driver only does that if the parameter is inout instead of out, hence the
786 * inout.
788 if (shader_version >= WINED3DVS_VERSION(3, 0))
790 shader_addline(buffer, "void order_ps_input(in vec4[%u]);\n", MAX_REG_OUTPUT);
791 } else {
792 shader_addline(buffer, "void order_ps_input();\n");
794 } else {
795 IWineD3DPixelShaderImpl *ps_impl = (IWineD3DPixelShaderImpl *) This;
797 ps_impl->numbumpenvmatconsts = 0;
798 for(i = 0; i < (sizeof(reg_maps->bumpmat) / sizeof(reg_maps->bumpmat[0])); i++) {
799 if(!reg_maps->bumpmat[i]) {
800 continue;
803 ps_impl->bumpenvmatconst[(int) ps_impl->numbumpenvmatconsts].texunit = i;
804 shader_addline(buffer, "uniform mat2 bumpenvmat%d;\n", i);
806 if(reg_maps->luminanceparams) {
807 ps_impl->luminanceconst[(int) ps_impl->numbumpenvmatconsts].texunit = i;
808 shader_addline(buffer, "uniform float luminancescale%d;\n", i);
809 shader_addline(buffer, "uniform float luminanceoffset%d;\n", i);
810 extra_constants_needed++;
811 } else {
812 ps_impl->luminanceconst[(int) ps_impl->numbumpenvmatconsts].texunit = -1;
815 extra_constants_needed++;
816 ps_impl->numbumpenvmatconsts++;
819 if(ps_args->srgb_correction) {
820 shader_addline(buffer, "const vec4 srgb_mul_low = vec4(%f, %f, %f, %f);\n",
821 srgb_mul_low, srgb_mul_low, srgb_mul_low, srgb_mul_low);
822 shader_addline(buffer, "const vec4 srgb_comparison = vec4(%f, %f, %f, %f);\n",
823 srgb_cmp, srgb_cmp, srgb_cmp, srgb_cmp);
825 if(reg_maps->vpos || reg_maps->usesdsy) {
826 if(This->baseShader.limits.constant_float + extra_constants_needed + 1 < GL_LIMITS(pshader_constantsF)) {
827 shader_addline(buffer, "uniform vec4 ycorrection;\n");
828 ((IWineD3DPixelShaderImpl *) This)->vpos_uniform = 1;
829 extra_constants_needed++;
830 } else {
831 /* This happens because we do not have proper tracking of the constant registers that are
832 * actually used, only the max limit of the shader version
834 FIXME("Cannot find a free uniform for vpos correction params\n");
835 shader_addline(buffer, "const vec4 ycorrection = vec4(%f, %f, 0.0, 0.0);\n",
836 device->render_offscreen ? 0.0 : ((IWineD3DSurfaceImpl *) device->render_targets[0])->currentDesc.Height,
837 device->render_offscreen ? 1.0 : -1.0);
839 shader_addline(buffer, "vec4 vpos;\n");
843 /* Declare texture samplers */
844 for (i = 0; i < This->baseShader.limits.sampler; i++) {
845 if (reg_maps->samplers[i]) {
847 DWORD stype = reg_maps->samplers[i] & WINED3DSP_TEXTURETYPE_MASK;
848 switch (stype) {
850 case WINED3DSTT_1D:
851 shader_addline(buffer, "uniform sampler1D %csampler%u;\n", prefix, i);
852 break;
853 case WINED3DSTT_2D:
854 if(device->stateBlock->textures[i] &&
855 IWineD3DBaseTexture_GetTextureDimensions(device->stateBlock->textures[i]) == GL_TEXTURE_RECTANGLE_ARB) {
856 shader_addline(buffer, "uniform sampler2DRect %csampler%u;\n", prefix, i);
857 } else {
858 shader_addline(buffer, "uniform sampler2D %csampler%u;\n", prefix, i);
861 if (pshader && ps_args->np2_fixup & (1 << i))
863 /* NP2/RECT textures in OpenGL use texcoords in the range [0,width]x[0,height]
864 * while D3D has them in the (normalized) [0,1]x[0,1] range.
865 * samplerNP2Fixup stores texture dimensions and is updated through
866 * shader_glsl_load_np2fixup_constants when the sampler changes. */
867 shader_addline(buffer, "uniform vec2 %csamplerNP2Fixup%u;\n", prefix, i);
869 break;
870 case WINED3DSTT_CUBE:
871 shader_addline(buffer, "uniform samplerCube %csampler%u;\n", prefix, i);
872 break;
873 case WINED3DSTT_VOLUME:
874 shader_addline(buffer, "uniform sampler3D %csampler%u;\n", prefix, i);
875 break;
876 default:
877 shader_addline(buffer, "uniform unsupported_sampler %csampler%u;\n", prefix, i);
878 FIXME("Unrecognized sampler type: %#x\n", stype);
879 break;
884 /* Declare address variables */
885 for (i = 0; i < This->baseShader.limits.address; i++) {
886 if (reg_maps->address[i])
887 shader_addline(buffer, "ivec4 A%d;\n", i);
890 /* Declare texture coordinate temporaries and initialize them */
891 for (i = 0; i < This->baseShader.limits.texcoord; i++) {
892 if (reg_maps->texcoord[i])
893 shader_addline(buffer, "vec4 T%u = gl_TexCoord[%u];\n", i, i);
896 /* Declare input register varyings. Only pixel shader, vertex shaders have that declared in the
897 * helper function shader that is linked in at link time
899 if (pshader && shader_version >= WINED3DPS_VERSION(3, 0))
901 if (use_vs(device->stateBlock))
903 shader_addline(buffer, "varying vec4 IN[%u];\n", GL_LIMITS(glsl_varyings) / 4);
904 } else {
905 /* TODO: Write a replacement shader for the fixed function vertex pipeline, so this isn't needed.
906 * For fixed function vertex processing + 3.0 pixel shader we need a separate function in the
907 * pixel shader that reads the fixed function color into the packed input registers.
909 shader_addline(buffer, "vec4 IN[%u];\n", GL_LIMITS(glsl_varyings) / 4);
913 /* Declare output register temporaries */
914 if(This->baseShader.limits.packed_output) {
915 shader_addline(buffer, "vec4 OUT[%u];\n", This->baseShader.limits.packed_output);
918 /* Declare temporary variables */
919 for(i = 0; i < This->baseShader.limits.temporary; i++) {
920 if (reg_maps->temporary[i])
921 shader_addline(buffer, "vec4 R%u;\n", i);
924 /* Declare attributes */
925 for (i = 0; i < This->baseShader.limits.attributes; i++) {
926 if (reg_maps->attributes[i])
927 shader_addline(buffer, "attribute vec4 attrib%i;\n", i);
930 /* Declare loop registers aLx */
931 for (i = 0; i < reg_maps->loop_depth; i++) {
932 shader_addline(buffer, "int aL%u;\n", i);
933 shader_addline(buffer, "int tmpInt%u;\n", i);
936 /* Temporary variables for matrix operations */
937 shader_addline(buffer, "vec4 tmp0;\n");
938 shader_addline(buffer, "vec4 tmp1;\n");
940 /* Local constants use a different name so they can be loaded once at shader link time
941 * They can't be hardcoded into the shader text via LC = {x, y, z, w}; because the
942 * float -> string conversion can cause precision loss.
944 if(!This->baseShader.load_local_constsF) {
945 LIST_FOR_EACH_ENTRY(lconst, &This->baseShader.constantsF, local_constant, entry) {
946 shader_addline(buffer, "uniform vec4 %cLC%u;\n", prefix, lconst->idx);
950 /* Start the main program */
951 shader_addline(buffer, "void main() {\n");
952 if(pshader && reg_maps->vpos) {
953 /* DirectX apps expect integer values, while OpenGL drivers add approximately 0.5. This causes
954 * off-by-one problems as spotted by the vPos d3d9 visual test. Unfortunately the ATI cards do
955 * not add exactly 0.5, but rather something like 0.49999999 or 0.50000001, which still causes
956 * precision troubles when we just substract 0.5.
958 * To deal with that just floor() the position. This will eliminate the fraction on all cards.
960 * TODO: Test how that behaves with multisampling once we can enable multisampling in winex11.
962 * An advantage of floor is that it works even if the driver doesn't add 1/2. It is somewhat
963 * questionable if 1.5, 2.5, ... are the proper values to return in gl_FragCoord, even though
964 * coordinates specify the pixel centers instead of the pixel corners. This code will behave
965 * correctly on drivers that returns integer values.
967 shader_addline(buffer, "vpos = floor(vec4(0, ycorrection[0], 0, 0) + gl_FragCoord * vec4(1, ycorrection[1], 1, 1));\n");
971 /*****************************************************************************
972 * Functions to generate GLSL strings from DirectX Shader bytecode begin here.
974 * For more information, see http://wiki.winehq.org/DirectX-Shaders
975 ****************************************************************************/
977 /* Prototypes */
978 static void shader_glsl_add_src_param(const struct wined3d_shader_instruction *ins,
979 const struct wined3d_shader_src_param *wined3d_src, DWORD mask, glsl_src_param_t *glsl_src);
981 /** Used for opcode modifiers - They multiply the result by the specified amount */
982 static const char * const shift_glsl_tab[] = {
983 "", /* 0 (none) */
984 "2.0 * ", /* 1 (x2) */
985 "4.0 * ", /* 2 (x4) */
986 "8.0 * ", /* 3 (x8) */
987 "16.0 * ", /* 4 (x16) */
988 "32.0 * ", /* 5 (x32) */
989 "", /* 6 (x64) */
990 "", /* 7 (x128) */
991 "", /* 8 (d256) */
992 "", /* 9 (d128) */
993 "", /* 10 (d64) */
994 "", /* 11 (d32) */
995 "0.0625 * ", /* 12 (d16) */
996 "0.125 * ", /* 13 (d8) */
997 "0.25 * ", /* 14 (d4) */
998 "0.5 * " /* 15 (d2) */
1001 /* Generate a GLSL parameter that does the input modifier computation and return the input register/mask to use */
1002 static void shader_glsl_gen_modifier(DWORD src_modifier, const char *in_reg, const char *in_regswizzle, char *out_str)
1004 out_str[0] = 0;
1006 switch (src_modifier)
1008 case WINED3DSPSM_DZ: /* Need to handle this in the instructions itself (texld & texcrd). */
1009 case WINED3DSPSM_DW:
1010 case WINED3DSPSM_NONE:
1011 sprintf(out_str, "%s%s", in_reg, in_regswizzle);
1012 break;
1013 case WINED3DSPSM_NEG:
1014 sprintf(out_str, "-%s%s", in_reg, in_regswizzle);
1015 break;
1016 case WINED3DSPSM_NOT:
1017 sprintf(out_str, "!%s%s", in_reg, in_regswizzle);
1018 break;
1019 case WINED3DSPSM_BIAS:
1020 sprintf(out_str, "(%s%s - vec4(0.5)%s)", in_reg, in_regswizzle, in_regswizzle);
1021 break;
1022 case WINED3DSPSM_BIASNEG:
1023 sprintf(out_str, "-(%s%s - vec4(0.5)%s)", in_reg, in_regswizzle, in_regswizzle);
1024 break;
1025 case WINED3DSPSM_SIGN:
1026 sprintf(out_str, "(2.0 * (%s%s - 0.5))", in_reg, in_regswizzle);
1027 break;
1028 case WINED3DSPSM_SIGNNEG:
1029 sprintf(out_str, "-(2.0 * (%s%s - 0.5))", in_reg, in_regswizzle);
1030 break;
1031 case WINED3DSPSM_COMP:
1032 sprintf(out_str, "(1.0 - %s%s)", in_reg, in_regswizzle);
1033 break;
1034 case WINED3DSPSM_X2:
1035 sprintf(out_str, "(2.0 * %s%s)", in_reg, in_regswizzle);
1036 break;
1037 case WINED3DSPSM_X2NEG:
1038 sprintf(out_str, "-(2.0 * %s%s)", in_reg, in_regswizzle);
1039 break;
1040 case WINED3DSPSM_ABS:
1041 sprintf(out_str, "abs(%s%s)", in_reg, in_regswizzle);
1042 break;
1043 case WINED3DSPSM_ABSNEG:
1044 sprintf(out_str, "-abs(%s%s)", in_reg, in_regswizzle);
1045 break;
1046 default:
1047 FIXME("Unhandled modifier %u\n", src_modifier);
1048 sprintf(out_str, "%s%s", in_reg, in_regswizzle);
1052 /** Writes the GLSL variable name that corresponds to the register that the
1053 * DX opcode parameter is trying to access */
1054 static void shader_glsl_get_register_name(WINED3DSHADER_PARAM_REGISTER_TYPE register_type, UINT register_idx,
1055 const struct wined3d_shader_src_param *rel_addr, char *register_name, BOOL *is_color,
1056 const struct wined3d_shader_instruction *ins)
1058 /* oPos, oFog and oPts in D3D */
1059 static const char * const hwrastout_reg_names[] = { "gl_Position", "gl_FogFragCoord", "gl_PointSize" };
1061 IWineD3DBaseShaderImpl *This = (IWineD3DBaseShaderImpl *)ins->ctx->shader;
1062 IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
1063 const WineD3D_GL_Info* gl_info = &deviceImpl->adapter->gl_info;
1064 DWORD shader_version = This->baseShader.reg_maps.shader_version;
1065 char pshader = shader_is_pshader_version(shader_version);
1067 *is_color = FALSE;
1069 switch (register_type)
1071 case WINED3DSPR_TEMP:
1072 sprintf(register_name, "R%u", register_idx);
1073 break;
1074 case WINED3DSPR_INPUT:
1075 if (pshader) {
1076 /* Pixel shaders >= 3.0 */
1077 if (WINED3DSHADER_VERSION_MAJOR(shader_version) >= 3)
1079 DWORD in_count = GL_LIMITS(glsl_varyings) / 4;
1081 if (rel_addr)
1083 glsl_src_param_t rel_param;
1084 shader_glsl_add_src_param(ins, rel_addr, WINED3DSP_WRITEMASK_0, &rel_param);
1086 /* Removing a + 0 would be an obvious optimization, but macos doesn't see the NOP
1087 * operation there
1089 if (((IWineD3DPixelShaderImpl *)This)->input_reg_map[register_idx])
1091 if (((IWineD3DPixelShaderImpl *)This)->declared_in_count > in_count) {
1092 sprintf(register_name, "((%s + %u) > %d ? (%s + %u) > %d ? gl_SecondaryColor : gl_Color : IN[%s + %u])",
1093 rel_param.param_str, ((IWineD3DPixelShaderImpl *)This)->input_reg_map[register_idx], in_count - 1,
1094 rel_param.param_str, ((IWineD3DPixelShaderImpl *)This)->input_reg_map[register_idx], in_count,
1095 rel_param.param_str, ((IWineD3DPixelShaderImpl *)This)->input_reg_map[register_idx]);
1096 } else {
1097 sprintf(register_name, "IN[%s + %u]", rel_param.param_str,
1098 ((IWineD3DPixelShaderImpl *)This)->input_reg_map[register_idx]);
1100 } else {
1101 if (((IWineD3DPixelShaderImpl *)This)->declared_in_count > in_count) {
1102 sprintf(register_name, "((%s) > %d ? (%s) > %d ? gl_SecondaryColor : gl_Color : IN[%s])",
1103 rel_param.param_str, in_count - 1,
1104 rel_param.param_str, in_count,
1105 rel_param.param_str);
1106 } else {
1107 sprintf(register_name, "IN[%s]", rel_param.param_str);
1110 } else {
1111 DWORD idx = ((IWineD3DPixelShaderImpl *) This)->input_reg_map[register_idx];
1112 if (idx == in_count) {
1113 sprintf(register_name, "gl_Color");
1114 } else if (idx == in_count + 1) {
1115 sprintf(register_name, "gl_SecondaryColor");
1116 } else {
1117 sprintf(register_name, "IN[%u]", idx);
1120 } else {
1121 if (register_idx == 0)
1122 strcpy(register_name, "gl_Color");
1123 else
1124 strcpy(register_name, "gl_SecondaryColor");
1126 } else {
1127 if (((IWineD3DVertexShaderImpl *)This)->cur_args->swizzle_map & (1 << register_idx)) *is_color = TRUE;
1128 sprintf(register_name, "attrib%u", register_idx);
1130 break;
1131 case WINED3DSPR_CONST:
1133 const char prefix = pshader? 'P':'V';
1135 /* Relative addressing */
1136 if (rel_addr)
1138 glsl_src_param_t rel_param;
1139 shader_glsl_add_src_param(ins, rel_addr, WINED3DSP_WRITEMASK_0, &rel_param);
1140 if (register_idx)
1141 sprintf(register_name, "%cC[%s + %u]", prefix, rel_param.param_str, register_idx);
1142 else
1143 sprintf(register_name, "%cC[%s]", prefix, rel_param.param_str);
1144 } else {
1145 if (shader_constant_is_local(This, register_idx))
1147 sprintf(register_name, "%cLC%u", prefix, register_idx);
1148 } else {
1149 sprintf(register_name, "%cC[%u]", prefix, register_idx);
1153 break;
1155 case WINED3DSPR_CONSTINT:
1156 if (pshader)
1157 sprintf(register_name, "PI[%u]", register_idx);
1158 else
1159 sprintf(register_name, "VI[%u]", register_idx);
1160 break;
1161 case WINED3DSPR_CONSTBOOL:
1162 if (pshader)
1163 sprintf(register_name, "PB[%u]", register_idx);
1164 else
1165 sprintf(register_name, "VB[%u]", register_idx);
1166 break;
1167 case WINED3DSPR_TEXTURE: /* case WINED3DSPR_ADDR: */
1168 if (pshader) {
1169 sprintf(register_name, "T%u", register_idx);
1170 } else {
1171 sprintf(register_name, "A%u", register_idx);
1173 break;
1174 case WINED3DSPR_LOOP:
1175 sprintf(register_name, "aL%u", This->baseShader.cur_loop_regno - 1);
1176 break;
1177 case WINED3DSPR_SAMPLER:
1178 if (pshader)
1179 sprintf(register_name, "Psampler%u", register_idx);
1180 else
1181 sprintf(register_name, "Vsampler%u", register_idx);
1182 break;
1183 case WINED3DSPR_COLOROUT:
1184 if (register_idx >= GL_LIMITS(buffers))
1185 WARN("Write to render target %u, only %d supported\n", register_idx, 4);
1187 if (GL_SUPPORT(ARB_DRAW_BUFFERS)) {
1188 sprintf(register_name, "gl_FragData[%u]", register_idx);
1189 } else { /* On older cards with GLSL support like the GeforceFX there's only one buffer. */
1190 sprintf(register_name, "gl_FragColor");
1192 break;
1193 case WINED3DSPR_RASTOUT:
1194 sprintf(register_name, "%s", hwrastout_reg_names[register_idx]);
1195 break;
1196 case WINED3DSPR_DEPTHOUT:
1197 sprintf(register_name, "gl_FragDepth");
1198 break;
1199 case WINED3DSPR_ATTROUT:
1200 if (register_idx == 0)
1202 sprintf(register_name, "gl_FrontColor");
1203 } else {
1204 sprintf(register_name, "gl_FrontSecondaryColor");
1206 break;
1207 case WINED3DSPR_TEXCRDOUT:
1208 /* Vertex shaders >= 3.0: WINED3DSPR_OUTPUT */
1209 if (WINED3DSHADER_VERSION_MAJOR(shader_version) >= 3) sprintf(register_name, "OUT[%u]", register_idx);
1210 else sprintf(register_name, "gl_TexCoord[%u]", register_idx);
1211 break;
1212 case WINED3DSPR_MISCTYPE:
1213 if (register_idx == 0)
1215 /* vPos */
1216 sprintf(register_name, "vpos");
1218 else if (register_idx == 1)
1220 /* Note that gl_FrontFacing is a bool, while vFace is
1221 * a float for which the sign determines front/back
1223 sprintf(register_name, "(gl_FrontFacing ? 1.0 : -1.0)");
1224 } else {
1225 FIXME("Unhandled misctype register %d\n", register_idx);
1226 sprintf(register_name, "unrecognized_register");
1228 break;
1229 default:
1230 FIXME("Unhandled register name Type(%d)\n", register_type);
1231 sprintf(register_name, "unrecognized_register");
1232 break;
1236 static void shader_glsl_write_mask_to_str(DWORD write_mask, char *str)
1238 *str++ = '.';
1239 if (write_mask & WINED3DSP_WRITEMASK_0) *str++ = 'x';
1240 if (write_mask & WINED3DSP_WRITEMASK_1) *str++ = 'y';
1241 if (write_mask & WINED3DSP_WRITEMASK_2) *str++ = 'z';
1242 if (write_mask & WINED3DSP_WRITEMASK_3) *str++ = 'w';
1243 *str = '\0';
1246 /* Get the GLSL write mask for the destination register */
1247 static DWORD shader_glsl_get_write_mask(const struct wined3d_shader_dst_param *param, char *write_mask)
1249 DWORD mask = param->write_mask;
1251 if (shader_is_scalar(param->register_type, param->register_idx))
1253 mask = WINED3DSP_WRITEMASK_0;
1254 *write_mask = '\0';
1256 else
1258 shader_glsl_write_mask_to_str(mask, write_mask);
1261 return mask;
1264 static unsigned int shader_glsl_get_write_mask_size(DWORD write_mask) {
1265 unsigned int size = 0;
1267 if (write_mask & WINED3DSP_WRITEMASK_0) ++size;
1268 if (write_mask & WINED3DSP_WRITEMASK_1) ++size;
1269 if (write_mask & WINED3DSP_WRITEMASK_2) ++size;
1270 if (write_mask & WINED3DSP_WRITEMASK_3) ++size;
1272 return size;
1275 static void shader_glsl_swizzle_to_str(const DWORD swizzle, BOOL fixup, DWORD mask, char *str)
1277 /* For registers of type WINED3DDECLTYPE_D3DCOLOR, data is stored as "bgra",
1278 * but addressed as "rgba". To fix this we need to swap the register's x
1279 * and z components. */
1280 const char *swizzle_chars = fixup ? "zyxw" : "xyzw";
1282 *str++ = '.';
1283 /* swizzle bits fields: wwzzyyxx */
1284 if (mask & WINED3DSP_WRITEMASK_0) *str++ = swizzle_chars[swizzle & 0x03];
1285 if (mask & WINED3DSP_WRITEMASK_1) *str++ = swizzle_chars[(swizzle >> 2) & 0x03];
1286 if (mask & WINED3DSP_WRITEMASK_2) *str++ = swizzle_chars[(swizzle >> 4) & 0x03];
1287 if (mask & WINED3DSP_WRITEMASK_3) *str++ = swizzle_chars[(swizzle >> 6) & 0x03];
1288 *str = '\0';
1291 static void shader_glsl_get_swizzle(const struct wined3d_shader_src_param *param,
1292 BOOL fixup, DWORD mask, char *swizzle_str)
1294 if (shader_is_scalar(param->register_type, param->register_idx))
1295 *swizzle_str = '\0';
1296 else
1297 shader_glsl_swizzle_to_str(param->swizzle, fixup, mask, swizzle_str);
1300 /* From a given parameter token, generate the corresponding GLSL string.
1301 * Also, return the actual register name and swizzle in case the
1302 * caller needs this information as well. */
1303 static void shader_glsl_add_src_param(const struct wined3d_shader_instruction *ins,
1304 const struct wined3d_shader_src_param *wined3d_src, DWORD mask, glsl_src_param_t *glsl_src)
1306 BOOL is_color = FALSE;
1307 char swizzle_str[6];
1309 glsl_src->reg_name[0] = '\0';
1310 glsl_src->param_str[0] = '\0';
1311 swizzle_str[0] = '\0';
1313 shader_glsl_get_register_name(wined3d_src->register_type, wined3d_src->register_idx,
1314 wined3d_src->rel_addr, glsl_src->reg_name, &is_color, ins);
1316 shader_glsl_get_swizzle(wined3d_src, is_color, mask, swizzle_str);
1317 shader_glsl_gen_modifier(wined3d_src->modifiers, glsl_src->reg_name, swizzle_str, glsl_src->param_str);
1320 /* From a given parameter token, generate the corresponding GLSL string.
1321 * Also, return the actual register name and swizzle in case the
1322 * caller needs this information as well. */
1323 static DWORD shader_glsl_add_dst_param(const struct wined3d_shader_instruction *ins,
1324 const struct wined3d_shader_dst_param *wined3d_dst, glsl_dst_param_t *glsl_dst)
1326 BOOL is_color = FALSE;
1328 glsl_dst->mask_str[0] = '\0';
1329 glsl_dst->reg_name[0] = '\0';
1331 shader_glsl_get_register_name(wined3d_dst->register_type, wined3d_dst->register_idx,
1332 wined3d_dst->rel_addr, glsl_dst->reg_name, &is_color, ins);
1333 return shader_glsl_get_write_mask(wined3d_dst, glsl_dst->mask_str);
1336 /* Append the destination part of the instruction to the buffer, return the effective write mask */
1337 static DWORD shader_glsl_append_dst_ext(SHADER_BUFFER *buffer,
1338 const struct wined3d_shader_instruction *ins, const struct wined3d_shader_dst_param *dst)
1340 glsl_dst_param_t glsl_dst;
1341 DWORD mask;
1343 mask = shader_glsl_add_dst_param(ins, dst, &glsl_dst);
1344 if (mask) shader_addline(buffer, "%s%s = %s(", glsl_dst.reg_name, glsl_dst.mask_str, shift_glsl_tab[dst->shift]);
1346 return mask;
1349 /* Append the destination part of the instruction to the buffer, return the effective write mask */
1350 static DWORD shader_glsl_append_dst(SHADER_BUFFER *buffer, const struct wined3d_shader_instruction *ins)
1352 return shader_glsl_append_dst_ext(buffer, ins, &ins->dst[0]);
1355 /** Process GLSL instruction modifiers */
1356 void shader_glsl_add_instruction_modifiers(const struct wined3d_shader_instruction *ins)
1358 glsl_dst_param_t dst_param;
1359 DWORD modifiers;
1361 if (!ins->dst_count) return;
1363 modifiers = ins->dst[0].modifiers;
1364 if (!modifiers) return;
1366 shader_glsl_add_dst_param(ins, &ins->dst[0], &dst_param);
1368 if (modifiers & WINED3DSPDM_SATURATE)
1370 /* _SAT means to clamp the value of the register to between 0 and 1 */
1371 shader_addline(ins->ctx->buffer, "%s%s = clamp(%s%s, 0.0, 1.0);\n", dst_param.reg_name,
1372 dst_param.mask_str, dst_param.reg_name, dst_param.mask_str);
1375 if (modifiers & WINED3DSPDM_MSAMPCENTROID)
1377 FIXME("_centroid modifier not handled\n");
1380 if (modifiers & WINED3DSPDM_PARTIALPRECISION)
1382 /* MSDN says this modifier can be safely ignored, so that's what we'll do. */
1386 static inline const char *shader_get_comp_op(DWORD op)
1388 switch (op) {
1389 case COMPARISON_GT: return ">";
1390 case COMPARISON_EQ: return "==";
1391 case COMPARISON_GE: return ">=";
1392 case COMPARISON_LT: return "<";
1393 case COMPARISON_NE: return "!=";
1394 case COMPARISON_LE: return "<=";
1395 default:
1396 FIXME("Unrecognized comparison value: %u\n", op);
1397 return "(\?\?)";
1401 static void shader_glsl_get_sample_function(DWORD sampler_type, DWORD flags, glsl_sample_function_t *sample_function)
1403 BOOL projected = flags & WINED3D_GLSL_SAMPLE_PROJECTED;
1404 BOOL texrect = flags & WINED3D_GLSL_SAMPLE_RECT;
1405 BOOL lod = flags & WINED3D_GLSL_SAMPLE_LOD;
1407 /* Note that there's no such thing as a projected cube texture. */
1408 switch(sampler_type) {
1409 case WINED3DSTT_1D:
1410 if(lod) {
1411 sample_function->name = projected ? "texture1DProjLod" : "texture1DLod";
1412 } else {
1413 sample_function->name = projected ? "texture1DProj" : "texture1D";
1415 sample_function->coord_mask = WINED3DSP_WRITEMASK_0;
1416 break;
1417 case WINED3DSTT_2D:
1418 if(texrect) {
1419 if(lod) {
1420 sample_function->name = projected ? "texture2DRectProjLod" : "texture2DRectLod";
1421 } else {
1422 sample_function->name = projected ? "texture2DRectProj" : "texture2DRect";
1424 } else {
1425 if(lod) {
1426 sample_function->name = projected ? "texture2DProjLod" : "texture2DLod";
1427 } else {
1428 sample_function->name = projected ? "texture2DProj" : "texture2D";
1431 sample_function->coord_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1;
1432 break;
1433 case WINED3DSTT_CUBE:
1434 if(lod) {
1435 sample_function->name = "textureCubeLod";
1436 } else {
1437 sample_function->name = "textureCube";
1439 sample_function->coord_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
1440 break;
1441 case WINED3DSTT_VOLUME:
1442 if(lod) {
1443 sample_function->name = projected ? "texture3DProjLod" : "texture3DLod";
1444 } else {
1445 sample_function->name = projected ? "texture3DProj" : "texture3D";
1447 sample_function->coord_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
1448 break;
1449 default:
1450 sample_function->name = "";
1451 sample_function->coord_mask = 0;
1452 FIXME("Unrecognized sampler type: %#x;\n", sampler_type);
1453 break;
1457 static void shader_glsl_append_fixup_arg(char *arguments, const char *reg_name,
1458 BOOL sign_fixup, enum fixup_channel_source channel_source)
1460 switch(channel_source)
1462 case CHANNEL_SOURCE_ZERO:
1463 strcat(arguments, "0.0");
1464 break;
1466 case CHANNEL_SOURCE_ONE:
1467 strcat(arguments, "1.0");
1468 break;
1470 case CHANNEL_SOURCE_X:
1471 strcat(arguments, reg_name);
1472 strcat(arguments, ".x");
1473 break;
1475 case CHANNEL_SOURCE_Y:
1476 strcat(arguments, reg_name);
1477 strcat(arguments, ".y");
1478 break;
1480 case CHANNEL_SOURCE_Z:
1481 strcat(arguments, reg_name);
1482 strcat(arguments, ".z");
1483 break;
1485 case CHANNEL_SOURCE_W:
1486 strcat(arguments, reg_name);
1487 strcat(arguments, ".w");
1488 break;
1490 default:
1491 FIXME("Unhandled channel source %#x\n", channel_source);
1492 strcat(arguments, "undefined");
1493 break;
1496 if (sign_fixup) strcat(arguments, " * 2.0 - 1.0");
1499 static void shader_glsl_color_correction(const struct wined3d_shader_instruction *ins, struct color_fixup_desc fixup)
1501 struct wined3d_shader_dst_param dst;
1502 unsigned int mask_size, remaining;
1503 glsl_dst_param_t dst_param;
1504 char arguments[256];
1505 DWORD mask;
1507 mask = 0;
1508 if (fixup.x_sign_fixup || fixup.x_source != CHANNEL_SOURCE_X) mask |= WINED3DSP_WRITEMASK_0;
1509 if (fixup.y_sign_fixup || fixup.y_source != CHANNEL_SOURCE_Y) mask |= WINED3DSP_WRITEMASK_1;
1510 if (fixup.z_sign_fixup || fixup.z_source != CHANNEL_SOURCE_Z) mask |= WINED3DSP_WRITEMASK_2;
1511 if (fixup.w_sign_fixup || fixup.w_source != CHANNEL_SOURCE_W) mask |= WINED3DSP_WRITEMASK_3;
1512 mask &= ins->dst[0].write_mask;
1514 if (!mask) return; /* Nothing to do */
1516 if (is_yuv_fixup(fixup))
1518 enum yuv_fixup yuv_fixup = get_yuv_fixup(fixup);
1519 FIXME("YUV fixup (%#x) not supported\n", yuv_fixup);
1520 return;
1523 mask_size = shader_glsl_get_write_mask_size(mask);
1525 dst = ins->dst[0];
1526 dst.write_mask = mask;
1527 shader_glsl_add_dst_param(ins, &dst, &dst_param);
1529 arguments[0] = '\0';
1530 remaining = mask_size;
1531 if (mask & WINED3DSP_WRITEMASK_0)
1533 shader_glsl_append_fixup_arg(arguments, dst_param.reg_name, fixup.x_sign_fixup, fixup.x_source);
1534 if (--remaining) strcat(arguments, ", ");
1536 if (mask & WINED3DSP_WRITEMASK_1)
1538 shader_glsl_append_fixup_arg(arguments, dst_param.reg_name, fixup.y_sign_fixup, fixup.y_source);
1539 if (--remaining) strcat(arguments, ", ");
1541 if (mask & WINED3DSP_WRITEMASK_2)
1543 shader_glsl_append_fixup_arg(arguments, dst_param.reg_name, fixup.z_sign_fixup, fixup.z_source);
1544 if (--remaining) strcat(arguments, ", ");
1546 if (mask & WINED3DSP_WRITEMASK_3)
1548 shader_glsl_append_fixup_arg(arguments, dst_param.reg_name, fixup.w_sign_fixup, fixup.w_source);
1549 if (--remaining) strcat(arguments, ", ");
1552 if (mask_size > 1)
1554 shader_addline(ins->ctx->buffer, "%s%s = vec%u(%s);\n",
1555 dst_param.reg_name, dst_param.mask_str, mask_size, arguments);
1557 else
1559 shader_addline(ins->ctx->buffer, "%s%s = %s;\n", dst_param.reg_name, dst_param.mask_str, arguments);
1563 static void PRINTF_ATTR(6, 7) shader_glsl_gen_sample_code(const struct wined3d_shader_instruction *ins,
1564 DWORD sampler, const glsl_sample_function_t *sample_function, DWORD swizzle,
1565 const char *bias, const char *coord_reg_fmt, ...)
1567 const char *sampler_base;
1568 char dst_swizzle[6];
1569 struct color_fixup_desc fixup;
1570 BOOL np2_fixup = FALSE;
1571 va_list args;
1573 shader_glsl_swizzle_to_str(swizzle, FALSE, ins->dst[0].write_mask, dst_swizzle);
1575 if (shader_is_pshader_version(ins->ctx->reg_maps->shader_version))
1577 IWineD3DPixelShaderImpl *This = (IWineD3DPixelShaderImpl *)ins->ctx->shader;
1578 fixup = This->cur_args->color_fixup[sampler];
1579 sampler_base = "Psampler";
1581 if(This->cur_args->np2_fixup & (1 << sampler)) {
1582 if(bias) {
1583 FIXME("Biased sampling from NP2 textures is unsupported\n");
1584 } else {
1585 np2_fixup = TRUE;
1588 } else {
1589 sampler_base = "Vsampler";
1590 fixup = COLOR_FIXUP_IDENTITY; /* FIXME: Vshader color fixup */
1593 shader_glsl_append_dst(ins->ctx->buffer, ins);
1595 shader_addline(ins->ctx->buffer, "%s(%s%u, ", sample_function->name, sampler_base, sampler);
1597 va_start(args, coord_reg_fmt);
1598 shader_vaddline(ins->ctx->buffer, coord_reg_fmt, args);
1599 va_end(args);
1601 if(bias) {
1602 shader_addline(ins->ctx->buffer, ", %s)%s);\n", bias, dst_swizzle);
1603 } else {
1604 if (np2_fixup) {
1605 shader_addline(ins->ctx->buffer, " * PsamplerNP2Fixup%u)%s);\n", sampler, dst_swizzle);
1606 } else {
1607 shader_addline(ins->ctx->buffer, ")%s);\n", dst_swizzle);
1611 if(!is_identity_fixup(fixup)) {
1612 shader_glsl_color_correction(ins, fixup);
1616 /*****************************************************************************
1618 * Begin processing individual instruction opcodes
1620 ****************************************************************************/
1622 /* Generate GLSL arithmetic functions (dst = src1 + src2) */
1623 static void shader_glsl_arith(const struct wined3d_shader_instruction *ins)
1625 SHADER_BUFFER *buffer = ins->ctx->buffer;
1626 glsl_src_param_t src0_param;
1627 glsl_src_param_t src1_param;
1628 DWORD write_mask;
1629 char op;
1631 /* Determine the GLSL operator to use based on the opcode */
1632 switch (ins->handler_idx)
1634 case WINED3DSIH_MUL: op = '*'; break;
1635 case WINED3DSIH_ADD: op = '+'; break;
1636 case WINED3DSIH_SUB: op = '-'; break;
1637 default:
1638 op = ' ';
1639 FIXME("Opcode %#x not yet handled in GLSL\n", ins->handler_idx);
1640 break;
1643 write_mask = shader_glsl_append_dst(buffer, ins);
1644 shader_glsl_add_src_param(ins, &ins->src[0], write_mask, &src0_param);
1645 shader_glsl_add_src_param(ins, &ins->src[1], write_mask, &src1_param);
1646 shader_addline(buffer, "%s %c %s);\n", src0_param.param_str, op, src1_param.param_str);
1649 /* Process the WINED3DSIO_MOV opcode using GLSL (dst = src) */
1650 static void shader_glsl_mov(const struct wined3d_shader_instruction *ins)
1652 SHADER_BUFFER *buffer = ins->ctx->buffer;
1653 glsl_src_param_t src0_param;
1654 DWORD write_mask;
1656 write_mask = shader_glsl_append_dst(buffer, ins);
1657 shader_glsl_add_src_param(ins, &ins->src[0], write_mask, &src0_param);
1659 /* In vs_1_1 WINED3DSIO_MOV can write to the address register. In later
1660 * shader versions WINED3DSIO_MOVA is used for this. */
1661 if ((WINED3DSHADER_VERSION_MAJOR(ins->ctx->reg_maps->shader_version) == 1
1662 && !shader_is_pshader_version(ins->ctx->reg_maps->shader_version)
1663 && ins->dst[0].register_type == WINED3DSPR_ADDR))
1665 /* This is a simple floor() */
1666 unsigned int mask_size = shader_glsl_get_write_mask_size(write_mask);
1667 if (mask_size > 1) {
1668 shader_addline(buffer, "ivec%d(floor(%s)));\n", mask_size, src0_param.param_str);
1669 } else {
1670 shader_addline(buffer, "int(floor(%s)));\n", src0_param.param_str);
1673 else if(ins->handler_idx == WINED3DSIH_MOVA)
1675 /* We need to *round* to the nearest int here. */
1676 unsigned int mask_size = shader_glsl_get_write_mask_size(write_mask);
1677 if (mask_size > 1) {
1678 shader_addline(buffer, "ivec%d(floor(abs(%s) + vec%d(0.5)) * sign(%s)));\n", mask_size, src0_param.param_str, mask_size, src0_param.param_str);
1679 } else {
1680 shader_addline(buffer, "int(floor(abs(%s) + 0.5) * sign(%s)));\n", src0_param.param_str, src0_param.param_str);
1682 } else {
1683 shader_addline(buffer, "%s);\n", src0_param.param_str);
1687 /* Process the dot product operators DP3 and DP4 in GLSL (dst = dot(src0, src1)) */
1688 static void shader_glsl_dot(const struct wined3d_shader_instruction *ins)
1690 SHADER_BUFFER *buffer = ins->ctx->buffer;
1691 glsl_src_param_t src0_param;
1692 glsl_src_param_t src1_param;
1693 DWORD dst_write_mask, src_write_mask;
1694 unsigned int dst_size = 0;
1696 dst_write_mask = shader_glsl_append_dst(buffer, ins);
1697 dst_size = shader_glsl_get_write_mask_size(dst_write_mask);
1699 /* dp3 works on vec3, dp4 on vec4 */
1700 if (ins->handler_idx == WINED3DSIH_DP4)
1702 src_write_mask = WINED3DSP_WRITEMASK_ALL;
1703 } else {
1704 src_write_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
1707 shader_glsl_add_src_param(ins, &ins->src[0], src_write_mask, &src0_param);
1708 shader_glsl_add_src_param(ins, &ins->src[1], src_write_mask, &src1_param);
1710 if (dst_size > 1) {
1711 shader_addline(buffer, "vec%d(dot(%s, %s)));\n", dst_size, src0_param.param_str, src1_param.param_str);
1712 } else {
1713 shader_addline(buffer, "dot(%s, %s));\n", src0_param.param_str, src1_param.param_str);
1717 /* Note that this instruction has some restrictions. The destination write mask
1718 * can't contain the w component, and the source swizzles have to be .xyzw */
1719 static void shader_glsl_cross(const struct wined3d_shader_instruction *ins)
1721 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
1722 glsl_src_param_t src0_param;
1723 glsl_src_param_t src1_param;
1724 char dst_mask[6];
1726 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
1727 shader_glsl_append_dst(ins->ctx->buffer, ins);
1728 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
1729 shader_glsl_add_src_param(ins, &ins->src[1], src_mask, &src1_param);
1730 shader_addline(ins->ctx->buffer, "cross(%s, %s)%s);\n", src0_param.param_str, src1_param.param_str, dst_mask);
1733 /* Process the WINED3DSIO_POW instruction in GLSL (dst = |src0|^src1)
1734 * Src0 and src1 are scalars. Note that D3D uses the absolute of src0, while
1735 * GLSL uses the value as-is. */
1736 static void shader_glsl_pow(const struct wined3d_shader_instruction *ins)
1738 SHADER_BUFFER *buffer = ins->ctx->buffer;
1739 glsl_src_param_t src0_param;
1740 glsl_src_param_t src1_param;
1741 DWORD dst_write_mask;
1742 unsigned int dst_size;
1744 dst_write_mask = shader_glsl_append_dst(buffer, ins);
1745 dst_size = shader_glsl_get_write_mask_size(dst_write_mask);
1747 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0, &src0_param);
1748 shader_glsl_add_src_param(ins, &ins->src[1], WINED3DSP_WRITEMASK_0, &src1_param);
1750 if (dst_size > 1) {
1751 shader_addline(buffer, "vec%d(pow(abs(%s), %s)));\n", dst_size, src0_param.param_str, src1_param.param_str);
1752 } else {
1753 shader_addline(buffer, "pow(abs(%s), %s));\n", src0_param.param_str, src1_param.param_str);
1757 /* Process the WINED3DSIO_LOG instruction in GLSL (dst = log2(|src0|))
1758 * Src0 is a scalar. Note that D3D uses the absolute of src0, while
1759 * GLSL uses the value as-is. */
1760 static void shader_glsl_log(const struct wined3d_shader_instruction *ins)
1762 SHADER_BUFFER *buffer = ins->ctx->buffer;
1763 glsl_src_param_t src0_param;
1764 DWORD dst_write_mask;
1765 unsigned int dst_size;
1767 dst_write_mask = shader_glsl_append_dst(buffer, ins);
1768 dst_size = shader_glsl_get_write_mask_size(dst_write_mask);
1770 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0, &src0_param);
1772 if (dst_size > 1) {
1773 shader_addline(buffer, "vec%d(log2(abs(%s))));\n", dst_size, src0_param.param_str);
1774 } else {
1775 shader_addline(buffer, "log2(abs(%s)));\n", src0_param.param_str);
1779 /* Map the opcode 1-to-1 to the GL code (arg->dst = instruction(src0, src1, ...) */
1780 static void shader_glsl_map2gl(const struct wined3d_shader_instruction *ins)
1782 SHADER_BUFFER *buffer = ins->ctx->buffer;
1783 glsl_src_param_t src_param;
1784 const char *instruction;
1785 DWORD write_mask;
1786 unsigned i;
1788 /* Determine the GLSL function to use based on the opcode */
1789 /* TODO: Possibly make this a table for faster lookups */
1790 switch (ins->handler_idx)
1792 case WINED3DSIH_MIN: instruction = "min"; break;
1793 case WINED3DSIH_MAX: instruction = "max"; break;
1794 case WINED3DSIH_ABS: instruction = "abs"; break;
1795 case WINED3DSIH_FRC: instruction = "fract"; break;
1796 case WINED3DSIH_NRM: instruction = "normalize"; break;
1797 case WINED3DSIH_EXP: instruction = "exp2"; break;
1798 case WINED3DSIH_SGN: instruction = "sign"; break;
1799 case WINED3DSIH_DSX: instruction = "dFdx"; break;
1800 case WINED3DSIH_DSY: instruction = "ycorrection.y * dFdy"; break;
1801 default: instruction = "";
1802 FIXME("Opcode %#x not yet handled in GLSL\n", ins->handler_idx);
1803 break;
1806 write_mask = shader_glsl_append_dst(buffer, ins);
1808 shader_addline(buffer, "%s(", instruction);
1810 if (ins->src_count)
1812 shader_glsl_add_src_param(ins, &ins->src[0], write_mask, &src_param);
1813 shader_addline(buffer, "%s", src_param.param_str);
1814 for (i = 1; i < ins->src_count; ++i)
1816 shader_glsl_add_src_param(ins, &ins->src[i], write_mask, &src_param);
1817 shader_addline(buffer, ", %s", src_param.param_str);
1821 shader_addline(buffer, "));\n");
1824 /** Process the WINED3DSIO_EXPP instruction in GLSL:
1825 * For shader model 1.x, do the following (and honor the writemask, so use a temporary variable):
1826 * dst.x = 2^(floor(src))
1827 * dst.y = src - floor(src)
1828 * dst.z = 2^src (partial precision is allowed, but optional)
1829 * dst.w = 1.0;
1830 * For 2.0 shaders, just do this (honoring writemask and swizzle):
1831 * dst = 2^src; (partial precision is allowed, but optional)
1833 static void shader_glsl_expp(const struct wined3d_shader_instruction *ins)
1835 glsl_src_param_t src_param;
1837 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0, &src_param);
1839 if (ins->ctx->reg_maps->shader_version < WINED3DPS_VERSION(2,0))
1841 char dst_mask[6];
1843 shader_addline(ins->ctx->buffer, "tmp0.x = exp2(floor(%s));\n", src_param.param_str);
1844 shader_addline(ins->ctx->buffer, "tmp0.y = %s - floor(%s);\n", src_param.param_str, src_param.param_str);
1845 shader_addline(ins->ctx->buffer, "tmp0.z = exp2(%s);\n", src_param.param_str);
1846 shader_addline(ins->ctx->buffer, "tmp0.w = 1.0;\n");
1848 shader_glsl_append_dst(ins->ctx->buffer, ins);
1849 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
1850 shader_addline(ins->ctx->buffer, "tmp0%s);\n", dst_mask);
1851 } else {
1852 DWORD write_mask;
1853 unsigned int mask_size;
1855 write_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
1856 mask_size = shader_glsl_get_write_mask_size(write_mask);
1858 if (mask_size > 1) {
1859 shader_addline(ins->ctx->buffer, "vec%d(exp2(%s)));\n", mask_size, src_param.param_str);
1860 } else {
1861 shader_addline(ins->ctx->buffer, "exp2(%s));\n", src_param.param_str);
1866 /** Process the RCP (reciprocal or inverse) opcode in GLSL (dst = 1 / src) */
1867 static void shader_glsl_rcp(const struct wined3d_shader_instruction *ins)
1869 glsl_src_param_t src_param;
1870 DWORD write_mask;
1871 unsigned int mask_size;
1873 write_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
1874 mask_size = shader_glsl_get_write_mask_size(write_mask);
1875 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_3, &src_param);
1877 if (mask_size > 1) {
1878 shader_addline(ins->ctx->buffer, "vec%d(1.0 / %s));\n", mask_size, src_param.param_str);
1879 } else {
1880 shader_addline(ins->ctx->buffer, "1.0 / %s);\n", src_param.param_str);
1884 static void shader_glsl_rsq(const struct wined3d_shader_instruction *ins)
1886 SHADER_BUFFER *buffer = ins->ctx->buffer;
1887 glsl_src_param_t src_param;
1888 DWORD write_mask;
1889 unsigned int mask_size;
1891 write_mask = shader_glsl_append_dst(buffer, ins);
1892 mask_size = shader_glsl_get_write_mask_size(write_mask);
1894 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_3, &src_param);
1896 if (mask_size > 1) {
1897 shader_addline(buffer, "vec%d(inversesqrt(%s)));\n", mask_size, src_param.param_str);
1898 } else {
1899 shader_addline(buffer, "inversesqrt(%s));\n", src_param.param_str);
1903 /** Process signed comparison opcodes in GLSL. */
1904 static void shader_glsl_compare(const struct wined3d_shader_instruction *ins)
1906 glsl_src_param_t src0_param;
1907 glsl_src_param_t src1_param;
1908 DWORD write_mask;
1909 unsigned int mask_size;
1911 write_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
1912 mask_size = shader_glsl_get_write_mask_size(write_mask);
1913 shader_glsl_add_src_param(ins, &ins->src[0], write_mask, &src0_param);
1914 shader_glsl_add_src_param(ins, &ins->src[1], write_mask, &src1_param);
1916 if (mask_size > 1) {
1917 const char *compare;
1919 switch(ins->handler_idx)
1921 case WINED3DSIH_SLT: compare = "lessThan"; break;
1922 case WINED3DSIH_SGE: compare = "greaterThanEqual"; break;
1923 default: compare = "";
1924 FIXME("Can't handle opcode %#x\n", ins->handler_idx);
1927 shader_addline(ins->ctx->buffer, "vec%d(%s(%s, %s)));\n", mask_size, compare,
1928 src0_param.param_str, src1_param.param_str);
1929 } else {
1930 switch(ins->handler_idx)
1932 case WINED3DSIH_SLT:
1933 /* Step(src0, src1) is not suitable here because if src0 == src1 SLT is supposed,
1934 * to return 0.0 but step returns 1.0 because step is not < x
1935 * An alternative is a bvec compare padded with an unused second component.
1936 * step(src1 * -1.0, src0 * -1.0) is not an option because it suffers from the same
1937 * issue. Playing with not() is not possible either because not() does not accept
1938 * a scalar.
1940 shader_addline(ins->ctx->buffer, "(%s < %s) ? 1.0 : 0.0);\n",
1941 src0_param.param_str, src1_param.param_str);
1942 break;
1943 case WINED3DSIH_SGE:
1944 /* Here we can use the step() function and safe a conditional */
1945 shader_addline(ins->ctx->buffer, "step(%s, %s));\n", src1_param.param_str, src0_param.param_str);
1946 break;
1947 default:
1948 FIXME("Can't handle opcode %#x\n", ins->handler_idx);
1954 /** Process CMP instruction in GLSL (dst = src0 >= 0.0 ? src1 : src2), per channel */
1955 static void shader_glsl_cmp(const struct wined3d_shader_instruction *ins)
1957 glsl_src_param_t src0_param;
1958 glsl_src_param_t src1_param;
1959 glsl_src_param_t src2_param;
1960 DWORD write_mask, cmp_channel = 0;
1961 unsigned int i, j;
1962 char mask_char[6];
1963 BOOL temp_destination = FALSE;
1965 if (shader_is_scalar(ins->src[0].register_type, ins->src[0].register_idx))
1967 write_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
1969 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_ALL, &src0_param);
1970 shader_glsl_add_src_param(ins, &ins->src[1], write_mask, &src1_param);
1971 shader_glsl_add_src_param(ins, &ins->src[2], write_mask, &src2_param);
1973 shader_addline(ins->ctx->buffer, "%s >= 0.0 ? %s : %s);\n",
1974 src0_param.param_str, src1_param.param_str, src2_param.param_str);
1975 } else {
1976 DWORD dst_mask = ins->dst[0].write_mask;
1977 struct wined3d_shader_dst_param dst = ins->dst[0];
1979 /* Cycle through all source0 channels */
1980 for (i=0; i<4; i++) {
1981 write_mask = 0;
1982 /* Find the destination channels which use the current source0 channel */
1983 for (j=0; j<4; j++) {
1984 if (((ins->src[0].swizzle >> (2 * j)) & 0x3) == i)
1986 write_mask |= WINED3DSP_WRITEMASK_0 << j;
1987 cmp_channel = WINED3DSP_WRITEMASK_0 << j;
1990 dst.write_mask = dst_mask & write_mask;
1992 /* Splitting the cmp instruction up in multiple lines imposes a problem:
1993 * The first lines may overwrite source parameters of the following lines.
1994 * Deal with that by using a temporary destination register if needed
1996 if ((ins->src[0].register_idx == ins->dst[0].register_idx
1997 && ins->src[0].register_type == ins->dst[0].register_type)
1998 || (ins->src[1].register_idx == ins->dst[0].register_idx
1999 && ins->src[1].register_type == ins->dst[0].register_type)
2000 || (ins->src[2].register_idx == ins->dst[0].register_idx
2001 && ins->src[2].register_type == ins->dst[0].register_type))
2003 write_mask = shader_glsl_get_write_mask(&dst, mask_char);
2004 if (!write_mask) continue;
2005 shader_addline(ins->ctx->buffer, "tmp0%s = (", mask_char);
2006 temp_destination = TRUE;
2007 } else {
2008 write_mask = shader_glsl_append_dst_ext(ins->ctx->buffer, ins, &dst);
2009 if (!write_mask) continue;
2012 shader_glsl_add_src_param(ins, &ins->src[0], cmp_channel, &src0_param);
2013 shader_glsl_add_src_param(ins, &ins->src[1], write_mask, &src1_param);
2014 shader_glsl_add_src_param(ins, &ins->src[2], write_mask, &src2_param);
2016 shader_addline(ins->ctx->buffer, "%s >= 0.0 ? %s : %s);\n",
2017 src0_param.param_str, src1_param.param_str, src2_param.param_str);
2020 if(temp_destination) {
2021 shader_glsl_get_write_mask(&ins->dst[0], mask_char);
2022 shader_glsl_append_dst(ins->ctx->buffer, ins);
2023 shader_addline(ins->ctx->buffer, "tmp0%s);\n", mask_char);
2029 /** Process the CND opcode in GLSL (dst = (src0 > 0.5) ? src1 : src2) */
2030 /* For ps 1.1-1.3, only a single component of src0 is used. For ps 1.4
2031 * the compare is done per component of src0. */
2032 static void shader_glsl_cnd(const struct wined3d_shader_instruction *ins)
2034 struct wined3d_shader_dst_param dst;
2035 glsl_src_param_t src0_param;
2036 glsl_src_param_t src1_param;
2037 glsl_src_param_t src2_param;
2038 DWORD write_mask, cmp_channel = 0;
2039 unsigned int i, j;
2040 DWORD dst_mask;
2042 if (ins->ctx->reg_maps->shader_version < WINED3DPS_VERSION(1, 4))
2044 write_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
2045 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0, &src0_param);
2046 shader_glsl_add_src_param(ins, &ins->src[1], write_mask, &src1_param);
2047 shader_glsl_add_src_param(ins, &ins->src[2], write_mask, &src2_param);
2049 /* Fun: The D3DSI_COISSUE flag changes the semantic of the cnd instruction for < 1.4 shaders */
2050 if (ins->coissue)
2052 shader_addline(ins->ctx->buffer, "%s /* COISSUE! */);\n", src1_param.param_str);
2053 } else {
2054 shader_addline(ins->ctx->buffer, "%s > 0.5 ? %s : %s);\n",
2055 src0_param.param_str, src1_param.param_str, src2_param.param_str);
2057 return;
2059 /* Cycle through all source0 channels */
2060 dst_mask = ins->dst[0].write_mask;
2061 dst = ins->dst[0];
2062 for (i=0; i<4; i++) {
2063 write_mask = 0;
2064 /* Find the destination channels which use the current source0 channel */
2065 for (j=0; j<4; j++) {
2066 if (((ins->src[0].swizzle >> (2 * j)) & 0x3) == i)
2068 write_mask |= WINED3DSP_WRITEMASK_0 << j;
2069 cmp_channel = WINED3DSP_WRITEMASK_0 << j;
2073 dst.write_mask = dst_mask & write_mask;
2074 write_mask = shader_glsl_append_dst_ext(ins->ctx->buffer, ins, &dst);
2075 if (!write_mask) continue;
2077 shader_glsl_add_src_param(ins, &ins->src[0], cmp_channel, &src0_param);
2078 shader_glsl_add_src_param(ins, &ins->src[1], write_mask, &src1_param);
2079 shader_glsl_add_src_param(ins, &ins->src[2], write_mask, &src2_param);
2081 shader_addline(ins->ctx->buffer, "%s > 0.5 ? %s : %s);\n",
2082 src0_param.param_str, src1_param.param_str, src2_param.param_str);
2086 /** GLSL code generation for WINED3DSIO_MAD: Multiply the first 2 opcodes, then add the last */
2087 static void shader_glsl_mad(const struct wined3d_shader_instruction *ins)
2089 glsl_src_param_t src0_param;
2090 glsl_src_param_t src1_param;
2091 glsl_src_param_t src2_param;
2092 DWORD write_mask;
2094 write_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
2095 shader_glsl_add_src_param(ins, &ins->src[0], write_mask, &src0_param);
2096 shader_glsl_add_src_param(ins, &ins->src[1], write_mask, &src1_param);
2097 shader_glsl_add_src_param(ins, &ins->src[2], write_mask, &src2_param);
2098 shader_addline(ins->ctx->buffer, "(%s * %s) + %s);\n",
2099 src0_param.param_str, src1_param.param_str, src2_param.param_str);
2102 /** Handles transforming all WINED3DSIO_M?x? opcodes for
2103 Vertex shaders to GLSL codes */
2104 static void shader_glsl_mnxn(const struct wined3d_shader_instruction *ins)
2106 int i;
2107 int nComponents = 0;
2108 struct wined3d_shader_dst_param tmp_dst = {0};
2109 struct wined3d_shader_src_param tmp_src[2] = {{0}};
2110 struct wined3d_shader_instruction tmp_ins;
2112 memset(&tmp_ins, 0, sizeof(tmp_ins));
2114 /* Set constants for the temporary argument */
2115 tmp_ins.ctx = ins->ctx;
2116 tmp_ins.dst_count = 1;
2117 tmp_ins.dst = &tmp_dst;
2118 tmp_ins.src_count = 2;
2119 tmp_ins.src = tmp_src;
2121 switch(ins->handler_idx)
2123 case WINED3DSIH_M4x4:
2124 nComponents = 4;
2125 tmp_ins.handler_idx = WINED3DSIH_DP4;
2126 break;
2127 case WINED3DSIH_M4x3:
2128 nComponents = 3;
2129 tmp_ins.handler_idx = WINED3DSIH_DP4;
2130 break;
2131 case WINED3DSIH_M3x4:
2132 nComponents = 4;
2133 tmp_ins.handler_idx = WINED3DSIH_DP3;
2134 break;
2135 case WINED3DSIH_M3x3:
2136 nComponents = 3;
2137 tmp_ins.handler_idx = WINED3DSIH_DP3;
2138 break;
2139 case WINED3DSIH_M3x2:
2140 nComponents = 2;
2141 tmp_ins.handler_idx = WINED3DSIH_DP3;
2142 break;
2143 default:
2144 break;
2147 tmp_dst = ins->dst[0];
2148 tmp_src[0] = ins->src[0];
2149 tmp_src[1] = ins->src[1];
2150 for (i = 0; i < nComponents; ++i)
2152 tmp_dst.write_mask = WINED3DSP_WRITEMASK_0 << i;
2153 shader_glsl_dot(&tmp_ins);
2154 ++tmp_src[1].register_idx;
2159 The LRP instruction performs a component-wise linear interpolation
2160 between the second and third operands using the first operand as the
2161 blend factor. Equation: (dst = src2 + src0 * (src1 - src2))
2162 This is equivalent to mix(src2, src1, src0);
2164 static void shader_glsl_lrp(const struct wined3d_shader_instruction *ins)
2166 glsl_src_param_t src0_param;
2167 glsl_src_param_t src1_param;
2168 glsl_src_param_t src2_param;
2169 DWORD write_mask;
2171 write_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
2173 shader_glsl_add_src_param(ins, &ins->src[0], write_mask, &src0_param);
2174 shader_glsl_add_src_param(ins, &ins->src[1], write_mask, &src1_param);
2175 shader_glsl_add_src_param(ins, &ins->src[2], write_mask, &src2_param);
2177 shader_addline(ins->ctx->buffer, "mix(%s, %s, %s));\n",
2178 src2_param.param_str, src1_param.param_str, src0_param.param_str);
2181 /** Process the WINED3DSIO_LIT instruction in GLSL:
2182 * dst.x = dst.w = 1.0
2183 * dst.y = (src0.x > 0) ? src0.x
2184 * dst.z = (src0.x > 0) ? ((src0.y > 0) ? pow(src0.y, src.w) : 0) : 0
2185 * where src.w is clamped at +- 128
2187 static void shader_glsl_lit(const struct wined3d_shader_instruction *ins)
2189 glsl_src_param_t src0_param;
2190 glsl_src_param_t src1_param;
2191 glsl_src_param_t src3_param;
2192 char dst_mask[6];
2194 shader_glsl_append_dst(ins->ctx->buffer, ins);
2195 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
2197 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0, &src0_param);
2198 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_1, &src1_param);
2199 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_3, &src3_param);
2201 /* The sdk specifies the instruction like this
2202 * dst.x = 1.0;
2203 * if(src.x > 0.0) dst.y = src.x
2204 * else dst.y = 0.0.
2205 * if(src.x > 0.0 && src.y > 0.0) dst.z = pow(src.y, power);
2206 * else dst.z = 0.0;
2207 * dst.w = 1.0;
2209 * Obviously that has quite a few conditionals in it which we don't like. So the first step is this:
2210 * dst.x = 1.0 ... No further explanation needed
2211 * dst.y = max(src.y, 0.0); ... If x < 0.0, use 0.0, otherwise x. Same as the conditional
2212 * dst.z = x > 0.0 ? pow(max(y, 0.0), p) : 0; ... 0 ^ power is 0, and otherwise we use y anyway
2213 * dst.w = 1.0. ... Nothing fancy.
2215 * So we still have one conditional in there. So do this:
2216 * dst.z = pow(max(0.0, src.y) * step(0.0, src.x), power);
2218 * step(0.0, x) will return 1 if src.x > 0.0, and 0 otherwise. So if y is 0 we get pow(0.0 * 1.0, power),
2219 * which sets dst.z to 0. If y > 0, but x = 0.0, we get pow(y * 0.0, power), which results in 0 too.
2220 * if both x and y are > 0, we get pow(y * 1.0, power), as it is supposed to
2222 shader_addline(ins->ctx->buffer,
2223 "vec4(1.0, max(%s, 0.0), pow(max(0.0, %s) * step(0.0, %s), clamp(%s, -128.0, 128.0)), 1.0)%s);\n",
2224 src0_param.param_str, src1_param.param_str, src0_param.param_str, src3_param.param_str, dst_mask);
2227 /** Process the WINED3DSIO_DST instruction in GLSL:
2228 * dst.x = 1.0
2229 * dst.y = src0.x * src0.y
2230 * dst.z = src0.z
2231 * dst.w = src1.w
2233 static void shader_glsl_dst(const struct wined3d_shader_instruction *ins)
2235 glsl_src_param_t src0y_param;
2236 glsl_src_param_t src0z_param;
2237 glsl_src_param_t src1y_param;
2238 glsl_src_param_t src1w_param;
2239 char dst_mask[6];
2241 shader_glsl_append_dst(ins->ctx->buffer, ins);
2242 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
2244 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_1, &src0y_param);
2245 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_2, &src0z_param);
2246 shader_glsl_add_src_param(ins, &ins->src[1], WINED3DSP_WRITEMASK_1, &src1y_param);
2247 shader_glsl_add_src_param(ins, &ins->src[1], WINED3DSP_WRITEMASK_3, &src1w_param);
2249 shader_addline(ins->ctx->buffer, "vec4(1.0, %s * %s, %s, %s))%s;\n",
2250 src0y_param.param_str, src1y_param.param_str, src0z_param.param_str, src1w_param.param_str, dst_mask);
2253 /** Process the WINED3DSIO_SINCOS instruction in GLSL:
2254 * VS 2.0 requires that specific cosine and sine constants be passed to this instruction so the hardware
2255 * can handle it. But, these functions are built-in for GLSL, so we can just ignore the last 2 params.
2257 * dst.x = cos(src0.?)
2258 * dst.y = sin(src0.?)
2259 * dst.z = dst.z
2260 * dst.w = dst.w
2262 static void shader_glsl_sincos(const struct wined3d_shader_instruction *ins)
2264 glsl_src_param_t src0_param;
2265 DWORD write_mask;
2267 write_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
2268 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0, &src0_param);
2270 switch (write_mask) {
2271 case WINED3DSP_WRITEMASK_0:
2272 shader_addline(ins->ctx->buffer, "cos(%s));\n", src0_param.param_str);
2273 break;
2275 case WINED3DSP_WRITEMASK_1:
2276 shader_addline(ins->ctx->buffer, "sin(%s));\n", src0_param.param_str);
2277 break;
2279 case (WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1):
2280 shader_addline(ins->ctx->buffer, "vec2(cos(%s), sin(%s)));\n", src0_param.param_str, src0_param.param_str);
2281 break;
2283 default:
2284 ERR("Write mask should be .x, .y or .xy\n");
2285 break;
2289 /** Process the WINED3DSIO_LOOP instruction in GLSL:
2290 * Start a for() loop where src1.y is the initial value of aL,
2291 * increment aL by src1.z for a total of src1.x iterations.
2292 * Need to use a temporary variable for this operation.
2294 /* FIXME: I don't think nested loops will work correctly this way. */
2295 static void shader_glsl_loop(const struct wined3d_shader_instruction *ins)
2297 glsl_src_param_t src1_param;
2298 IWineD3DBaseShaderImpl *shader = (IWineD3DBaseShaderImpl *)ins->ctx->shader;
2299 const DWORD *control_values = NULL;
2300 const local_constant *constant;
2302 shader_glsl_add_src_param(ins, &ins->src[1], WINED3DSP_WRITEMASK_ALL, &src1_param);
2304 /* Try to hardcode the loop control parameters if possible. Direct3D 9 class hardware doesn't support real
2305 * varying indexing, but Microsoft designed this feature for Shader model 2.x+. If the loop control is
2306 * known at compile time, the GLSL compiler can unroll the loop, and replace indirect addressing with direct
2307 * addressing.
2309 if (ins->src[1].register_type == WINED3DSPR_CONSTINT)
2311 LIST_FOR_EACH_ENTRY(constant, &shader->baseShader.constantsI, local_constant, entry) {
2312 if (constant->idx == ins->src[1].register_idx)
2314 control_values = constant->value;
2315 break;
2320 if(control_values) {
2321 if(control_values[2] > 0) {
2322 shader_addline(ins->ctx->buffer, "for (aL%u = %d; aL%u < (%d * %d + %d); aL%u += %d) {\n",
2323 shader->baseShader.cur_loop_depth, control_values[1],
2324 shader->baseShader.cur_loop_depth, control_values[0], control_values[2], control_values[1],
2325 shader->baseShader.cur_loop_depth, control_values[2]);
2326 } else if(control_values[2] == 0) {
2327 shader_addline(ins->ctx->buffer, "for (aL%u = %d, tmpInt%u = 0; tmpInt%u < %d; tmpInt%u++) {\n",
2328 shader->baseShader.cur_loop_depth, control_values[1], shader->baseShader.cur_loop_depth,
2329 shader->baseShader.cur_loop_depth, control_values[0],
2330 shader->baseShader.cur_loop_depth);
2331 } else {
2332 shader_addline(ins->ctx->buffer, "for (aL%u = %d; aL%u > (%d * %d + %d); aL%u += %d) {\n",
2333 shader->baseShader.cur_loop_depth, control_values[1],
2334 shader->baseShader.cur_loop_depth, control_values[0], control_values[2], control_values[1],
2335 shader->baseShader.cur_loop_depth, control_values[2]);
2337 } else {
2338 shader_addline(ins->ctx->buffer,
2339 "for (tmpInt%u = 0, aL%u = %s.y; tmpInt%u < %s.x; tmpInt%u++, aL%u += %s.z) {\n",
2340 shader->baseShader.cur_loop_depth, shader->baseShader.cur_loop_regno,
2341 src1_param.reg_name, shader->baseShader.cur_loop_depth, src1_param.reg_name,
2342 shader->baseShader.cur_loop_depth, shader->baseShader.cur_loop_regno, src1_param.reg_name);
2345 shader->baseShader.cur_loop_depth++;
2346 shader->baseShader.cur_loop_regno++;
2349 static void shader_glsl_end(const struct wined3d_shader_instruction *ins)
2351 IWineD3DBaseShaderImpl *shader = (IWineD3DBaseShaderImpl *)ins->ctx->shader;
2353 shader_addline(ins->ctx->buffer, "}\n");
2355 if (ins->handler_idx == WINED3DSIH_ENDLOOP)
2357 shader->baseShader.cur_loop_depth--;
2358 shader->baseShader.cur_loop_regno--;
2361 if (ins->handler_idx == WINED3DSIH_ENDREP)
2363 shader->baseShader.cur_loop_depth--;
2367 static void shader_glsl_rep(const struct wined3d_shader_instruction *ins)
2369 IWineD3DBaseShaderImpl *shader = (IWineD3DBaseShaderImpl *)ins->ctx->shader;
2370 glsl_src_param_t src0_param;
2372 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0, &src0_param);
2373 shader_addline(ins->ctx->buffer, "for (tmpInt%d = 0; tmpInt%d < %s; tmpInt%d++) {\n",
2374 shader->baseShader.cur_loop_depth, shader->baseShader.cur_loop_depth,
2375 src0_param.param_str, shader->baseShader.cur_loop_depth);
2376 shader->baseShader.cur_loop_depth++;
2379 static void shader_glsl_if(const struct wined3d_shader_instruction *ins)
2381 glsl_src_param_t src0_param;
2383 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0, &src0_param);
2384 shader_addline(ins->ctx->buffer, "if (%s) {\n", src0_param.param_str);
2387 static void shader_glsl_ifc(const struct wined3d_shader_instruction *ins)
2389 glsl_src_param_t src0_param;
2390 glsl_src_param_t src1_param;
2392 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0, &src0_param);
2393 shader_glsl_add_src_param(ins, &ins->src[1], WINED3DSP_WRITEMASK_0, &src1_param);
2395 shader_addline(ins->ctx->buffer, "if (%s %s %s) {\n",
2396 src0_param.param_str, shader_get_comp_op(ins->flags), src1_param.param_str);
2399 static void shader_glsl_else(const struct wined3d_shader_instruction *ins)
2401 shader_addline(ins->ctx->buffer, "} else {\n");
2404 static void shader_glsl_break(const struct wined3d_shader_instruction *ins)
2406 shader_addline(ins->ctx->buffer, "break;\n");
2409 /* FIXME: According to MSDN the compare is done per component. */
2410 static void shader_glsl_breakc(const struct wined3d_shader_instruction *ins)
2412 glsl_src_param_t src0_param;
2413 glsl_src_param_t src1_param;
2415 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0, &src0_param);
2416 shader_glsl_add_src_param(ins, &ins->src[1], WINED3DSP_WRITEMASK_0, &src1_param);
2418 shader_addline(ins->ctx->buffer, "if (%s %s %s) break;\n",
2419 src0_param.param_str, shader_get_comp_op(ins->flags), src1_param.param_str);
2422 static void shader_glsl_label(const struct wined3d_shader_instruction *ins)
2424 shader_addline(ins->ctx->buffer, "}\n");
2425 shader_addline(ins->ctx->buffer, "void subroutine%u () {\n", ins->src[0].register_idx);
2428 static void shader_glsl_call(const struct wined3d_shader_instruction *ins)
2430 shader_addline(ins->ctx->buffer, "subroutine%u();\n", ins->src[0].register_idx);
2433 static void shader_glsl_callnz(const struct wined3d_shader_instruction *ins)
2435 glsl_src_param_t src1_param;
2437 shader_glsl_add_src_param(ins, &ins->src[1], WINED3DSP_WRITEMASK_0, &src1_param);
2438 shader_addline(ins->ctx->buffer, "if (%s) subroutine%u();\n", src1_param.param_str, ins->src[0].register_idx);
2441 /*********************************************
2442 * Pixel Shader Specific Code begins here
2443 ********************************************/
2444 static void pshader_glsl_tex(const struct wined3d_shader_instruction *ins)
2446 IWineD3DPixelShaderImpl *This = (IWineD3DPixelShaderImpl *)ins->ctx->shader;
2447 IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
2448 DWORD shader_version = ins->ctx->reg_maps->shader_version;
2449 glsl_sample_function_t sample_function;
2450 DWORD sample_flags = 0;
2451 DWORD sampler_type;
2452 DWORD sampler_idx;
2453 DWORD mask = 0, swizzle;
2455 /* 1.0-1.4: Use destination register as sampler source.
2456 * 2.0+: Use provided sampler source. */
2457 if (shader_version < WINED3DPS_VERSION(2,0)) sampler_idx = ins->dst[0].register_idx;
2458 else sampler_idx = ins->src[1].register_idx;
2459 sampler_type = ins->ctx->reg_maps->samplers[sampler_idx] & WINED3DSP_TEXTURETYPE_MASK;
2461 if (shader_version < WINED3DPS_VERSION(1,4))
2463 DWORD flags = deviceImpl->stateBlock->textureState[sampler_idx][WINED3DTSS_TEXTURETRANSFORMFLAGS];
2465 /* Projected cube textures don't make a lot of sense, the resulting coordinates stay the same. */
2466 if (flags & WINED3DTTFF_PROJECTED && sampler_type != WINED3DSTT_CUBE) {
2467 sample_flags |= WINED3D_GLSL_SAMPLE_PROJECTED;
2468 switch (flags & ~WINED3DTTFF_PROJECTED) {
2469 case WINED3DTTFF_COUNT1: FIXME("WINED3DTTFF_PROJECTED with WINED3DTTFF_COUNT1?\n"); break;
2470 case WINED3DTTFF_COUNT2: mask = WINED3DSP_WRITEMASK_1; break;
2471 case WINED3DTTFF_COUNT3: mask = WINED3DSP_WRITEMASK_2; break;
2472 case WINED3DTTFF_COUNT4:
2473 case WINED3DTTFF_DISABLE: mask = WINED3DSP_WRITEMASK_3; break;
2477 else if (shader_version < WINED3DPS_VERSION(2,0))
2479 DWORD src_mod = ins->src[0].modifiers;
2481 if (src_mod == WINED3DSPSM_DZ) {
2482 sample_flags |= WINED3D_GLSL_SAMPLE_PROJECTED;
2483 mask = WINED3DSP_WRITEMASK_2;
2484 } else if (src_mod == WINED3DSPSM_DW) {
2485 sample_flags |= WINED3D_GLSL_SAMPLE_PROJECTED;
2486 mask = WINED3DSP_WRITEMASK_3;
2488 } else {
2489 if (ins->flags & WINED3DSI_TEXLD_PROJECT)
2491 /* ps 2.0 texldp instruction always divides by the fourth component. */
2492 sample_flags |= WINED3D_GLSL_SAMPLE_PROJECTED;
2493 mask = WINED3DSP_WRITEMASK_3;
2497 if(deviceImpl->stateBlock->textures[sampler_idx] &&
2498 IWineD3DBaseTexture_GetTextureDimensions(deviceImpl->stateBlock->textures[sampler_idx]) == GL_TEXTURE_RECTANGLE_ARB) {
2499 sample_flags |= WINED3D_GLSL_SAMPLE_RECT;
2502 shader_glsl_get_sample_function(sampler_type, sample_flags, &sample_function);
2503 mask |= sample_function.coord_mask;
2505 if (shader_version < WINED3DPS_VERSION(2,0)) swizzle = WINED3DSP_NOSWIZZLE;
2506 else swizzle = ins->src[1].swizzle;
2508 /* 1.0-1.3: Use destination register as coordinate source.
2509 1.4+: Use provided coordinate source register. */
2510 if (shader_version < WINED3DPS_VERSION(1,4))
2512 char coord_mask[6];
2513 shader_glsl_write_mask_to_str(mask, coord_mask);
2514 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, swizzle, NULL,
2515 "T%u%s", sampler_idx, coord_mask);
2516 } else {
2517 glsl_src_param_t coord_param;
2518 shader_glsl_add_src_param(ins, &ins->src[0], mask, &coord_param);
2519 if (ins->flags & WINED3DSI_TEXLD_BIAS)
2521 glsl_src_param_t bias;
2522 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_3, &bias);
2523 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, swizzle, bias.param_str,
2524 "%s", coord_param.param_str);
2525 } else {
2526 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, swizzle, NULL,
2527 "%s", coord_param.param_str);
2532 static void shader_glsl_texldl(const struct wined3d_shader_instruction *ins)
2534 IWineD3DBaseShaderImpl *This = (IWineD3DBaseShaderImpl *)ins->ctx->shader;
2535 IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
2536 glsl_sample_function_t sample_function;
2537 glsl_src_param_t coord_param, lod_param;
2538 DWORD sample_flags = WINED3D_GLSL_SAMPLE_LOD;
2539 DWORD sampler_type;
2540 DWORD sampler_idx;
2541 DWORD swizzle = ins->src[1].swizzle;
2543 sampler_idx = ins->src[1].register_idx;
2544 sampler_type = ins->ctx->reg_maps->samplers[sampler_idx] & WINED3DSP_TEXTURETYPE_MASK;
2545 if(deviceImpl->stateBlock->textures[sampler_idx] &&
2546 IWineD3DBaseTexture_GetTextureDimensions(deviceImpl->stateBlock->textures[sampler_idx]) == GL_TEXTURE_RECTANGLE_ARB) {
2547 sample_flags |= WINED3D_GLSL_SAMPLE_RECT;
2549 shader_glsl_get_sample_function(sampler_type, sample_flags, &sample_function);
2550 shader_glsl_add_src_param(ins, &ins->src[0], sample_function.coord_mask, &coord_param);
2552 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_3, &lod_param);
2554 if (shader_is_pshader_version(ins->ctx->reg_maps->shader_version))
2556 /* The GLSL spec claims the Lod sampling functions are only supported in vertex shaders.
2557 * However, they seem to work just fine in fragment shaders as well. */
2558 WARN("Using %s in fragment shader.\n", sample_function.name);
2560 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, swizzle, lod_param.param_str,
2561 "%s", coord_param.param_str);
2564 static void pshader_glsl_texcoord(const struct wined3d_shader_instruction *ins)
2566 /* FIXME: Make this work for more than just 2D textures */
2567 SHADER_BUFFER *buffer = ins->ctx->buffer;
2568 DWORD write_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
2570 if (ins->ctx->reg_maps->shader_version != WINED3DPS_VERSION(1,4))
2572 char dst_mask[6];
2574 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
2575 shader_addline(buffer, "clamp(gl_TexCoord[%u], 0.0, 1.0)%s);\n",
2576 ins->dst[0].register_idx, dst_mask);
2577 } else {
2578 DWORD reg = ins->src[0].register_idx;
2579 DWORD src_mod = ins->src[0].modifiers;
2580 char dst_swizzle[6];
2582 shader_glsl_get_swizzle(&ins->src[0], FALSE, write_mask, dst_swizzle);
2584 if (src_mod == WINED3DSPSM_DZ) {
2585 glsl_src_param_t div_param;
2586 unsigned int mask_size = shader_glsl_get_write_mask_size(write_mask);
2587 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_2, &div_param);
2589 if (mask_size > 1) {
2590 shader_addline(buffer, "gl_TexCoord[%u]%s / vec%d(%s));\n", reg, dst_swizzle, mask_size, div_param.param_str);
2591 } else {
2592 shader_addline(buffer, "gl_TexCoord[%u]%s / %s);\n", reg, dst_swizzle, div_param.param_str);
2594 } else if (src_mod == WINED3DSPSM_DW) {
2595 glsl_src_param_t div_param;
2596 unsigned int mask_size = shader_glsl_get_write_mask_size(write_mask);
2597 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_3, &div_param);
2599 if (mask_size > 1) {
2600 shader_addline(buffer, "gl_TexCoord[%u]%s / vec%d(%s));\n", reg, dst_swizzle, mask_size, div_param.param_str);
2601 } else {
2602 shader_addline(buffer, "gl_TexCoord[%u]%s / %s);\n", reg, dst_swizzle, div_param.param_str);
2604 } else {
2605 shader_addline(buffer, "gl_TexCoord[%u]%s);\n", reg, dst_swizzle);
2610 /** Process the WINED3DSIO_TEXDP3TEX instruction in GLSL:
2611 * Take a 3-component dot product of the TexCoord[dstreg] and src,
2612 * then perform a 1D texture lookup from stage dstregnum, place into dst. */
2613 static void pshader_glsl_texdp3tex(const struct wined3d_shader_instruction *ins)
2615 glsl_src_param_t src0_param;
2616 glsl_sample_function_t sample_function;
2617 DWORD sampler_idx = ins->dst[0].register_idx;
2618 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
2619 DWORD sampler_type = ins->ctx->reg_maps->samplers[sampler_idx] & WINED3DSP_TEXTURETYPE_MASK;
2620 UINT mask_size;
2622 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
2624 /* Do I have to take care about the projected bit? I don't think so, since the dp3 returns only one
2625 * scalar, and projected sampling would require 4.
2627 * It is a dependent read - not valid with conditional NP2 textures
2629 shader_glsl_get_sample_function(sampler_type, 0, &sample_function);
2630 mask_size = shader_glsl_get_write_mask_size(sample_function.coord_mask);
2632 switch(mask_size)
2634 case 1:
2635 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, WINED3DSP_NOSWIZZLE, NULL,
2636 "dot(gl_TexCoord[%u].xyz, %s)", sampler_idx, src0_param.param_str);
2637 break;
2639 case 2:
2640 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, WINED3DSP_NOSWIZZLE, NULL,
2641 "vec2(dot(gl_TexCoord[%u].xyz, %s), 0.0)", sampler_idx, src0_param.param_str);
2642 break;
2644 case 3:
2645 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, WINED3DSP_NOSWIZZLE, NULL,
2646 "vec3(dot(gl_TexCoord[%u].xyz, %s), 0.0, 0.0)", sampler_idx, src0_param.param_str);
2647 break;
2649 default:
2650 FIXME("Unexpected mask size %u\n", mask_size);
2651 break;
2655 /** Process the WINED3DSIO_TEXDP3 instruction in GLSL:
2656 * Take a 3-component dot product of the TexCoord[dstreg] and src. */
2657 static void pshader_glsl_texdp3(const struct wined3d_shader_instruction *ins)
2659 glsl_src_param_t src0_param;
2660 DWORD dstreg = ins->dst[0].register_idx;
2661 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
2662 DWORD dst_mask;
2663 unsigned int mask_size;
2665 dst_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
2666 mask_size = shader_glsl_get_write_mask_size(dst_mask);
2667 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
2669 if (mask_size > 1) {
2670 shader_addline(ins->ctx->buffer, "vec%d(dot(T%u.xyz, %s)));\n", mask_size, dstreg, src0_param.param_str);
2671 } else {
2672 shader_addline(ins->ctx->buffer, "dot(T%u.xyz, %s));\n", dstreg, src0_param.param_str);
2676 /** Process the WINED3DSIO_TEXDEPTH instruction in GLSL:
2677 * Calculate the depth as dst.x / dst.y */
2678 static void pshader_glsl_texdepth(const struct wined3d_shader_instruction *ins)
2680 glsl_dst_param_t dst_param;
2682 shader_glsl_add_dst_param(ins, &ins->dst[0], &dst_param);
2684 /* Tests show that texdepth never returns anything below 0.0, and that r5.y is clamped to 1.0.
2685 * Negative input is accepted, -0.25 / -0.5 returns 0.5. GL should clamp gl_FragDepth to [0;1], but
2686 * this doesn't always work, so clamp the results manually. Whether or not the x value is clamped at 1
2687 * too is irrelevant, since if x = 0, any y value < 1.0 (and > 1.0 is not allowed) results in a result
2688 * >= 1.0 or < 0.0
2690 shader_addline(ins->ctx->buffer, "gl_FragDepth = clamp((%s.x / min(%s.y, 1.0)), 0.0, 1.0);\n",
2691 dst_param.reg_name, dst_param.reg_name);
2694 /** Process the WINED3DSIO_TEXM3X2DEPTH instruction in GLSL:
2695 * Last row of a 3x2 matrix multiply, use the result to calculate the depth:
2696 * Calculate tmp0.y = TexCoord[dstreg] . src.xyz; (tmp0.x has already been calculated)
2697 * depth = (tmp0.y == 0.0) ? 1.0 : tmp0.x / tmp0.y
2699 static void pshader_glsl_texm3x2depth(const struct wined3d_shader_instruction *ins)
2701 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
2702 DWORD dstreg = ins->dst[0].register_idx;
2703 glsl_src_param_t src0_param;
2705 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
2707 shader_addline(ins->ctx->buffer, "tmp0.y = dot(T%u.xyz, %s);\n", dstreg, src0_param.param_str);
2708 shader_addline(ins->ctx->buffer, "gl_FragDepth = (tmp0.y == 0.0) ? 1.0 : clamp(tmp0.x / tmp0.y, 0.0, 1.0);\n");
2711 /** Process the WINED3DSIO_TEXM3X2PAD instruction in GLSL
2712 * Calculate the 1st of a 2-row matrix multiplication. */
2713 static void pshader_glsl_texm3x2pad(const struct wined3d_shader_instruction *ins)
2715 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
2716 DWORD reg = ins->dst[0].register_idx;
2717 SHADER_BUFFER *buffer = ins->ctx->buffer;
2718 glsl_src_param_t src0_param;
2720 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
2721 shader_addline(buffer, "tmp0.x = dot(T%u.xyz, %s);\n", reg, src0_param.param_str);
2724 /** Process the WINED3DSIO_TEXM3X3PAD instruction in GLSL
2725 * Calculate the 1st or 2nd row of a 3-row matrix multiplication. */
2726 static void pshader_glsl_texm3x3pad(const struct wined3d_shader_instruction *ins)
2728 IWineD3DPixelShaderImpl *shader = (IWineD3DPixelShaderImpl *)ins->ctx->shader;
2729 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
2730 DWORD reg = ins->dst[0].register_idx;
2731 SHADER_BUFFER *buffer = ins->ctx->buffer;
2732 SHADER_PARSE_STATE* current_state = &shader->baseShader.parse_state;
2733 glsl_src_param_t src0_param;
2735 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
2736 shader_addline(buffer, "tmp0.%c = dot(T%u.xyz, %s);\n", 'x' + current_state->current_row, reg, src0_param.param_str);
2737 current_state->texcoord_w[current_state->current_row++] = reg;
2740 static void pshader_glsl_texm3x2tex(const struct wined3d_shader_instruction *ins)
2742 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
2743 DWORD reg = ins->dst[0].register_idx;
2744 SHADER_BUFFER *buffer = ins->ctx->buffer;
2745 glsl_src_param_t src0_param;
2746 DWORD sampler_type = ins->ctx->reg_maps->samplers[reg] & WINED3DSP_TEXTURETYPE_MASK;
2747 glsl_sample_function_t sample_function;
2749 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
2750 shader_addline(buffer, "tmp0.y = dot(T%u.xyz, %s);\n", reg, src0_param.param_str);
2752 shader_glsl_get_sample_function(sampler_type, 0, &sample_function);
2754 /* Sample the texture using the calculated coordinates */
2755 shader_glsl_gen_sample_code(ins, reg, &sample_function, WINED3DSP_NOSWIZZLE, NULL, "tmp0.xy");
2758 /** Process the WINED3DSIO_TEXM3X3TEX instruction in GLSL
2759 * Perform the 3rd row of a 3x3 matrix multiply, then sample the texture using the calculated coordinates */
2760 static void pshader_glsl_texm3x3tex(const struct wined3d_shader_instruction *ins)
2762 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
2763 glsl_src_param_t src0_param;
2764 DWORD reg = ins->dst[0].register_idx;
2765 IWineD3DPixelShaderImpl *This = (IWineD3DPixelShaderImpl *)ins->ctx->shader;
2766 SHADER_PARSE_STATE* current_state = &This->baseShader.parse_state;
2767 DWORD sampler_type = ins->ctx->reg_maps->samplers[reg] & WINED3DSP_TEXTURETYPE_MASK;
2768 glsl_sample_function_t sample_function;
2770 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
2771 shader_addline(ins->ctx->buffer, "tmp0.z = dot(T%u.xyz, %s);\n", reg, src0_param.param_str);
2773 /* Dependent read, not valid with conditional NP2 */
2774 shader_glsl_get_sample_function(sampler_type, 0, &sample_function);
2776 /* Sample the texture using the calculated coordinates */
2777 shader_glsl_gen_sample_code(ins, reg, &sample_function, WINED3DSP_NOSWIZZLE, NULL, "tmp0.xyz");
2779 current_state->current_row = 0;
2782 /** Process the WINED3DSIO_TEXM3X3 instruction in GLSL
2783 * Perform the 3rd row of a 3x3 matrix multiply */
2784 static void pshader_glsl_texm3x3(const struct wined3d_shader_instruction *ins)
2786 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
2787 glsl_src_param_t src0_param;
2788 char dst_mask[6];
2789 DWORD reg = ins->dst[0].register_idx;
2790 IWineD3DPixelShaderImpl *This = (IWineD3DPixelShaderImpl *)ins->ctx->shader;
2791 SHADER_PARSE_STATE* current_state = &This->baseShader.parse_state;
2793 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
2795 shader_glsl_append_dst(ins->ctx->buffer, ins);
2796 shader_glsl_get_write_mask(&ins->dst[0], dst_mask);
2797 shader_addline(ins->ctx->buffer, "vec4(tmp0.xy, dot(T%u.xyz, %s), 1.0)%s);\n", reg, src0_param.param_str, dst_mask);
2799 current_state->current_row = 0;
2802 /** Process the WINED3DSIO_TEXM3X3SPEC instruction in GLSL
2803 * Perform the final texture lookup based on the previous 2 3x3 matrix multiplies */
2804 static void pshader_glsl_texm3x3spec(const struct wined3d_shader_instruction *ins)
2806 IWineD3DPixelShaderImpl *shader = (IWineD3DPixelShaderImpl *)ins->ctx->shader;
2807 DWORD reg = ins->dst[0].register_idx;
2808 glsl_src_param_t src0_param;
2809 glsl_src_param_t src1_param;
2810 SHADER_BUFFER *buffer = ins->ctx->buffer;
2811 SHADER_PARSE_STATE* current_state = &shader->baseShader.parse_state;
2812 DWORD stype = ins->ctx->reg_maps->samplers[reg] & WINED3DSP_TEXTURETYPE_MASK;
2813 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
2814 glsl_sample_function_t sample_function;
2816 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
2817 shader_glsl_add_src_param(ins, &ins->src[1], src_mask, &src1_param);
2819 /* Perform the last matrix multiply operation */
2820 shader_addline(buffer, "tmp0.z = dot(T%u.xyz, %s);\n", reg, src0_param.param_str);
2821 /* Reflection calculation */
2822 shader_addline(buffer, "tmp0.xyz = -reflect((%s), normalize(tmp0.xyz));\n", src1_param.param_str);
2824 /* Dependent read, not valid with conditional NP2 */
2825 shader_glsl_get_sample_function(stype, 0, &sample_function);
2827 /* Sample the texture */
2828 shader_glsl_gen_sample_code(ins, reg, &sample_function, WINED3DSP_NOSWIZZLE, NULL, "tmp0.xyz");
2830 current_state->current_row = 0;
2833 /** Process the WINED3DSIO_TEXM3X3VSPEC instruction in GLSL
2834 * Perform the final texture lookup based on the previous 2 3x3 matrix multiplies */
2835 static void pshader_glsl_texm3x3vspec(const struct wined3d_shader_instruction *ins)
2837 IWineD3DPixelShaderImpl *shader = (IWineD3DPixelShaderImpl *)ins->ctx->shader;
2838 DWORD reg = ins->dst[0].register_idx;
2839 SHADER_BUFFER *buffer = ins->ctx->buffer;
2840 SHADER_PARSE_STATE* current_state = &shader->baseShader.parse_state;
2841 glsl_src_param_t src0_param;
2842 DWORD src_mask = WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1 | WINED3DSP_WRITEMASK_2;
2843 DWORD sampler_type = ins->ctx->reg_maps->samplers[reg] & WINED3DSP_TEXTURETYPE_MASK;
2844 glsl_sample_function_t sample_function;
2846 shader_glsl_add_src_param(ins, &ins->src[0], src_mask, &src0_param);
2848 /* Perform the last matrix multiply operation */
2849 shader_addline(buffer, "tmp0.z = dot(vec3(T%u), vec3(%s));\n", reg, src0_param.param_str);
2851 /* Construct the eye-ray vector from w coordinates */
2852 shader_addline(buffer, "tmp1.xyz = normalize(vec3(gl_TexCoord[%u].w, gl_TexCoord[%u].w, gl_TexCoord[%u].w));\n",
2853 current_state->texcoord_w[0], current_state->texcoord_w[1], reg);
2854 shader_addline(buffer, "tmp0.xyz = -reflect(tmp1.xyz, normalize(tmp0.xyz));\n");
2856 /* Dependent read, not valid with conditional NP2 */
2857 shader_glsl_get_sample_function(sampler_type, 0, &sample_function);
2859 /* Sample the texture using the calculated coordinates */
2860 shader_glsl_gen_sample_code(ins, reg, &sample_function, WINED3DSP_NOSWIZZLE, NULL, "tmp0.xyz");
2862 current_state->current_row = 0;
2865 /** Process the WINED3DSIO_TEXBEM instruction in GLSL.
2866 * Apply a fake bump map transform.
2867 * texbem is pshader <= 1.3 only, this saves a few version checks
2869 static void pshader_glsl_texbem(const struct wined3d_shader_instruction *ins)
2871 IWineD3DPixelShaderImpl *This = (IWineD3DPixelShaderImpl *)ins->ctx->shader;
2872 IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
2873 glsl_sample_function_t sample_function;
2874 glsl_src_param_t coord_param;
2875 DWORD sampler_type;
2876 DWORD sampler_idx;
2877 DWORD mask;
2878 DWORD flags;
2879 char coord_mask[6];
2881 sampler_idx = ins->dst[0].register_idx;
2882 flags = deviceImpl->stateBlock->textureState[sampler_idx][WINED3DTSS_TEXTURETRANSFORMFLAGS];
2884 sampler_type = ins->ctx->reg_maps->samplers[sampler_idx] & WINED3DSP_TEXTURETYPE_MASK;
2885 /* Dependent read, not valid with conditional NP2 */
2886 shader_glsl_get_sample_function(sampler_type, 0, &sample_function);
2887 mask = sample_function.coord_mask;
2889 shader_glsl_write_mask_to_str(mask, coord_mask);
2891 /* with projective textures, texbem only divides the static texture coord, not the displacement,
2892 * so we can't let the GL handle this.
2894 if (flags & WINED3DTTFF_PROJECTED) {
2895 DWORD div_mask=0;
2896 char coord_div_mask[3];
2897 switch (flags & ~WINED3DTTFF_PROJECTED) {
2898 case WINED3DTTFF_COUNT1: FIXME("WINED3DTTFF_PROJECTED with WINED3DTTFF_COUNT1?\n"); break;
2899 case WINED3DTTFF_COUNT2: div_mask = WINED3DSP_WRITEMASK_1; break;
2900 case WINED3DTTFF_COUNT3: div_mask = WINED3DSP_WRITEMASK_2; break;
2901 case WINED3DTTFF_COUNT4:
2902 case WINED3DTTFF_DISABLE: div_mask = WINED3DSP_WRITEMASK_3; break;
2904 shader_glsl_write_mask_to_str(div_mask, coord_div_mask);
2905 shader_addline(ins->ctx->buffer, "T%u%s /= T%u%s;\n", sampler_idx, coord_mask, sampler_idx, coord_div_mask);
2908 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1, &coord_param);
2910 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, WINED3DSP_NOSWIZZLE, NULL,
2911 "T%u%s + vec4(bumpenvmat%d * %s, 0.0, 0.0)%s", sampler_idx, coord_mask, sampler_idx,
2912 coord_param.param_str, coord_mask);
2914 if (ins->handler_idx == WINED3DSIH_TEXBEML)
2916 glsl_src_param_t luminance_param;
2917 glsl_dst_param_t dst_param;
2919 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_2, &luminance_param);
2920 shader_glsl_add_dst_param(ins, &ins->dst[0], &dst_param);
2922 shader_addline(ins->ctx->buffer, "%s%s *= (%s * luminancescale%d + luminanceoffset%d);\n",
2923 dst_param.reg_name, dst_param.mask_str,
2924 luminance_param.param_str, sampler_idx, sampler_idx);
2928 static void pshader_glsl_bem(const struct wined3d_shader_instruction *ins)
2930 glsl_src_param_t src0_param, src1_param;
2931 DWORD sampler_idx = ins->dst[0].register_idx;
2933 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1, &src0_param);
2934 shader_glsl_add_src_param(ins, &ins->src[1], WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1, &src1_param);
2936 shader_glsl_append_dst(ins->ctx->buffer, ins);
2937 shader_addline(ins->ctx->buffer, "%s + bumpenvmat%d * %s);\n",
2938 src0_param.param_str, sampler_idx, src1_param.param_str);
2941 /** Process the WINED3DSIO_TEXREG2AR instruction in GLSL
2942 * Sample 2D texture at dst using the alpha & red (wx) components of src as texture coordinates */
2943 static void pshader_glsl_texreg2ar(const struct wined3d_shader_instruction *ins)
2945 glsl_src_param_t src0_param;
2946 DWORD sampler_idx = ins->dst[0].register_idx;
2947 DWORD sampler_type = ins->ctx->reg_maps->samplers[sampler_idx] & WINED3DSP_TEXTURETYPE_MASK;
2948 glsl_sample_function_t sample_function;
2950 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_ALL, &src0_param);
2952 shader_glsl_get_sample_function(sampler_type, 0, &sample_function);
2953 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, WINED3DSP_NOSWIZZLE, NULL,
2954 "%s.wx", src0_param.reg_name);
2957 /** Process the WINED3DSIO_TEXREG2GB instruction in GLSL
2958 * Sample 2D texture at dst using the green & blue (yz) components of src as texture coordinates */
2959 static void pshader_glsl_texreg2gb(const struct wined3d_shader_instruction *ins)
2961 glsl_src_param_t src0_param;
2962 DWORD sampler_idx = ins->dst[0].register_idx;
2963 DWORD sampler_type = ins->ctx->reg_maps->samplers[sampler_idx] & WINED3DSP_TEXTURETYPE_MASK;
2964 glsl_sample_function_t sample_function;
2966 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_ALL, &src0_param);
2968 shader_glsl_get_sample_function(sampler_type, 0, &sample_function);
2969 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, WINED3DSP_NOSWIZZLE, NULL,
2970 "%s.yz", src0_param.reg_name);
2973 /** Process the WINED3DSIO_TEXREG2RGB instruction in GLSL
2974 * Sample texture at dst using the rgb (xyz) components of src as texture coordinates */
2975 static void pshader_glsl_texreg2rgb(const struct wined3d_shader_instruction *ins)
2977 glsl_src_param_t src0_param;
2978 DWORD sampler_idx = ins->dst[0].register_idx;
2979 DWORD sampler_type = ins->ctx->reg_maps->samplers[sampler_idx] & WINED3DSP_TEXTURETYPE_MASK;
2980 glsl_sample_function_t sample_function;
2982 /* Dependent read, not valid with conditional NP2 */
2983 shader_glsl_get_sample_function(sampler_type, 0, &sample_function);
2984 shader_glsl_add_src_param(ins, &ins->src[0], sample_function.coord_mask, &src0_param);
2986 shader_glsl_gen_sample_code(ins, sampler_idx, &sample_function, WINED3DSP_NOSWIZZLE, NULL,
2987 "%s", src0_param.param_str);
2990 /** Process the WINED3DSIO_TEXKILL instruction in GLSL.
2991 * If any of the first 3 components are < 0, discard this pixel */
2992 static void pshader_glsl_texkill(const struct wined3d_shader_instruction *ins)
2994 glsl_dst_param_t dst_param;
2996 /* The argument is a destination parameter, and no writemasks are allowed */
2997 shader_glsl_add_dst_param(ins, &ins->dst[0], &dst_param);
2998 if ((ins->ctx->reg_maps->shader_version >= WINED3DPS_VERSION(2,0)))
3000 /* 2.0 shaders compare all 4 components in texkill */
3001 shader_addline(ins->ctx->buffer, "if (any(lessThan(%s.xyzw, vec4(0.0)))) discard;\n", dst_param.reg_name);
3002 } else {
3003 /* 1.X shaders only compare the first 3 components, probably due to the nature of the texkill
3004 * instruction as a tex* instruction, and phase, which kills all a / w components. Even if all
3005 * 4 components are defined, only the first 3 are used
3007 shader_addline(ins->ctx->buffer, "if (any(lessThan(%s.xyz, vec3(0.0)))) discard;\n", dst_param.reg_name);
3011 /** Process the WINED3DSIO_DP2ADD instruction in GLSL.
3012 * dst = dot2(src0, src1) + src2 */
3013 static void pshader_glsl_dp2add(const struct wined3d_shader_instruction *ins)
3015 glsl_src_param_t src0_param;
3016 glsl_src_param_t src1_param;
3017 glsl_src_param_t src2_param;
3018 DWORD write_mask;
3019 unsigned int mask_size;
3021 write_mask = shader_glsl_append_dst(ins->ctx->buffer, ins);
3022 mask_size = shader_glsl_get_write_mask_size(write_mask);
3024 shader_glsl_add_src_param(ins, &ins->src[0], WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1, &src0_param);
3025 shader_glsl_add_src_param(ins, &ins->src[1], WINED3DSP_WRITEMASK_0 | WINED3DSP_WRITEMASK_1, &src1_param);
3026 shader_glsl_add_src_param(ins, &ins->src[2], WINED3DSP_WRITEMASK_0, &src2_param);
3028 if (mask_size > 1) {
3029 shader_addline(ins->ctx->buffer, "vec%d(dot(%s, %s) + %s));\n",
3030 mask_size, src0_param.param_str, src1_param.param_str, src2_param.param_str);
3031 } else {
3032 shader_addline(ins->ctx->buffer, "dot(%s, %s) + %s);\n",
3033 src0_param.param_str, src1_param.param_str, src2_param.param_str);
3037 static void pshader_glsl_input_pack(IWineD3DPixelShader *iface, SHADER_BUFFER *buffer,
3038 const struct wined3d_shader_semantic *semantics_in, const struct shader_reg_maps *reg_maps,
3039 enum vertexprocessing_mode vertexprocessing)
3041 unsigned int i;
3042 IWineD3DPixelShaderImpl *This = (IWineD3DPixelShaderImpl *)iface;
3044 for (i = 0; i < MAX_REG_INPUT; ++i)
3046 DWORD usage, usage_idx;
3047 char reg_mask[6];
3049 /* Unused */
3050 if (!reg_maps->packed_input[i]) continue;
3052 usage = semantics_in[i].usage;
3053 usage_idx = semantics_in[i].usage_idx;
3054 shader_glsl_get_write_mask(&semantics_in[i].reg, reg_mask);
3056 switch (usage)
3058 case WINED3DDECLUSAGE_TEXCOORD:
3059 if (usage_idx < 8 && vertexprocessing == pretransformed)
3060 shader_addline(buffer, "IN[%u]%s = gl_TexCoord[%u]%s;\n",
3061 This->input_reg_map[i], reg_mask, usage_idx, reg_mask);
3062 else
3063 shader_addline(buffer, "IN[%u]%s = vec4(0.0, 0.0, 0.0, 0.0)%s;\n",
3064 This->input_reg_map[i], reg_mask, reg_mask);
3065 break;
3067 case WINED3DDECLUSAGE_COLOR:
3068 if (usage_idx == 0)
3069 shader_addline(buffer, "IN[%u]%s = vec4(gl_Color)%s;\n",
3070 This->input_reg_map[i], reg_mask, reg_mask);
3071 else if (usage_idx == 1)
3072 shader_addline(buffer, "IN[%u]%s = vec4(gl_SecondaryColor)%s;\n",
3073 This->input_reg_map[i], reg_mask, reg_mask);
3074 else
3075 shader_addline(buffer, "IN[%u]%s = vec4(0.0, 0.0, 0.0, 0.0)%s;\n",
3076 This->input_reg_map[i], reg_mask, reg_mask);
3077 break;
3079 default:
3080 shader_addline(buffer, "IN[%u]%s = vec4(0.0, 0.0, 0.0, 0.0)%s;\n",
3081 This->input_reg_map[i], reg_mask, reg_mask);
3082 break;
3087 /*********************************************
3088 * Vertex Shader Specific Code begins here
3089 ********************************************/
3091 static void add_glsl_program_entry(struct shader_glsl_priv *priv, struct glsl_shader_prog_link *entry) {
3092 glsl_program_key_t *key;
3094 key = HeapAlloc(GetProcessHeap(), 0, sizeof(glsl_program_key_t));
3095 key->vshader = entry->vshader;
3096 key->pshader = entry->pshader;
3097 key->vs_args = entry->vs_args;
3098 key->ps_args = entry->ps_args;
3100 hash_table_put(priv->glsl_program_lookup, key, entry);
3103 static struct glsl_shader_prog_link *get_glsl_program_entry(struct shader_glsl_priv *priv,
3104 IWineD3DVertexShader *vshader, IWineD3DPixelShader *pshader, struct vs_compile_args *vs_args,
3105 struct ps_compile_args *ps_args) {
3106 glsl_program_key_t key;
3108 key.vshader = vshader;
3109 key.pshader = pshader;
3110 key.vs_args = *vs_args;
3111 key.ps_args = *ps_args;
3113 return hash_table_get(priv->glsl_program_lookup, &key);
3116 static void delete_glsl_program_entry(struct shader_glsl_priv *priv, const WineD3D_GL_Info *gl_info,
3117 struct glsl_shader_prog_link *entry)
3119 glsl_program_key_t *key;
3121 key = HeapAlloc(GetProcessHeap(), 0, sizeof(glsl_program_key_t));
3122 key->vshader = entry->vshader;
3123 key->pshader = entry->pshader;
3124 key->vs_args = entry->vs_args;
3125 key->ps_args = entry->ps_args;
3126 hash_table_remove(priv->glsl_program_lookup, key);
3128 GL_EXTCALL(glDeleteObjectARB(entry->programId));
3129 if (entry->vshader) list_remove(&entry->vshader_entry);
3130 if (entry->pshader) list_remove(&entry->pshader_entry);
3131 HeapFree(GetProcessHeap(), 0, entry->vuniformF_locations);
3132 HeapFree(GetProcessHeap(), 0, entry->puniformF_locations);
3133 HeapFree(GetProcessHeap(), 0, entry);
3136 static void handle_ps3_input(SHADER_BUFFER *buffer, const WineD3D_GL_Info *gl_info, const DWORD *map,
3137 const struct wined3d_shader_semantic *semantics_in, const struct shader_reg_maps *reg_maps_in,
3138 const struct wined3d_shader_semantic *semantics_out, const struct shader_reg_maps *reg_maps_out)
3140 unsigned int i, j;
3141 DWORD usage, usage_idx, usage_out, usage_idx_out;
3142 DWORD *set;
3143 DWORD in_idx;
3144 DWORD in_count = GL_LIMITS(glsl_varyings) / 4;
3145 char reg_mask[6], reg_mask_out[6];
3146 char destination[50];
3148 set = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*set) * (in_count + 2));
3150 if (!semantics_out) {
3151 /* Save gl_FrontColor & gl_FrontSecondaryColor before overwriting them. */
3152 shader_addline(buffer, "vec4 front_color = gl_FrontColor;\n");
3153 shader_addline(buffer, "vec4 front_secondary_color = gl_FrontSecondaryColor;\n");
3156 for(i = 0; i < MAX_REG_INPUT; i++) {
3157 if (!reg_maps_in->packed_input[i]) continue;
3159 in_idx = map[i];
3160 if (in_idx >= (in_count + 2)) {
3161 FIXME("More input varyings declared than supported, expect issues\n");
3162 continue;
3164 else if (map[i] == ~0U)
3166 /* Declared, but not read register */
3167 continue;
3170 if (in_idx == in_count) {
3171 sprintf(destination, "gl_FrontColor");
3172 } else if (in_idx == in_count + 1) {
3173 sprintf(destination, "gl_FrontSecondaryColor");
3174 } else {
3175 sprintf(destination, "IN[%u]", in_idx);
3178 usage = semantics_in[i].usage;
3179 usage_idx = semantics_in[i].usage_idx;
3180 set[map[i]] = shader_glsl_get_write_mask(&semantics_in[i].reg, reg_mask);
3182 if(!semantics_out) {
3183 switch(usage) {
3184 case WINED3DDECLUSAGE_COLOR:
3185 if (usage_idx == 0)
3186 shader_addline(buffer, "%s%s = front_color%s;\n",
3187 destination, reg_mask, reg_mask);
3188 else if (usage_idx == 1)
3189 shader_addline(buffer, "%s%s = front_secondary_color%s;\n",
3190 destination, reg_mask, reg_mask);
3191 else
3192 shader_addline(buffer, "%s%s = vec4(0.0, 0.0, 0.0, 0.0)%s;\n",
3193 destination, reg_mask, reg_mask);
3194 break;
3196 case WINED3DDECLUSAGE_TEXCOORD:
3197 if (usage_idx < 8) {
3198 shader_addline(buffer, "%s%s = gl_TexCoord[%u]%s;\n",
3199 destination, reg_mask, usage_idx, reg_mask);
3200 } else {
3201 shader_addline(buffer, "%s%s = vec4(0.0, 0.0, 0.0, 0.0)%s;\n",
3202 destination, reg_mask, reg_mask);
3204 break;
3206 case WINED3DDECLUSAGE_FOG:
3207 shader_addline(buffer, "%s%s = vec4(gl_FogFragCoord, 0.0, 0.0, 0.0)%s;\n",
3208 destination, reg_mask, reg_mask);
3209 break;
3211 default:
3212 shader_addline(buffer, "%s%s = vec4(0.0, 0.0, 0.0, 0.0)%s;\n",
3213 destination, reg_mask, reg_mask);
3215 } else {
3216 BOOL found = FALSE;
3217 for(j = 0; j < MAX_REG_OUTPUT; j++) {
3218 if (!reg_maps_out->packed_output[j]) continue;
3220 usage_out = semantics_out[j].usage;
3221 usage_idx_out = semantics_out[j].usage_idx;
3222 shader_glsl_get_write_mask(&semantics_out[j].reg, reg_mask_out);
3224 if(usage == usage_out &&
3225 usage_idx == usage_idx_out) {
3226 shader_addline(buffer, "%s%s = OUT[%u]%s;\n",
3227 destination, reg_mask, j, reg_mask);
3228 found = TRUE;
3231 if(!found) {
3232 shader_addline(buffer, "%s%s = vec4(0.0, 0.0, 0.0, 0.0)%s;\n",
3233 destination, reg_mask, reg_mask);
3238 /* This is solely to make the compiler / linker happy and avoid warning about undefined
3239 * varyings. It shouldn't result in any real code executed on the GPU, since all read
3240 * input varyings are assigned above, if the optimizer works properly.
3242 for(i = 0; i < in_count + 2; i++) {
3243 if(set[i] != WINED3DSP_WRITEMASK_ALL) {
3244 unsigned int size = 0;
3245 memset(reg_mask, 0, sizeof(reg_mask));
3246 if(!(set[i] & WINED3DSP_WRITEMASK_0)) {
3247 reg_mask[size] = 'x';
3248 size++;
3250 if(!(set[i] & WINED3DSP_WRITEMASK_1)) {
3251 reg_mask[size] = 'y';
3252 size++;
3254 if(!(set[i] & WINED3DSP_WRITEMASK_2)) {
3255 reg_mask[size] = 'z';
3256 size++;
3258 if(!(set[i] & WINED3DSP_WRITEMASK_3)) {
3259 reg_mask[size] = 'w';
3260 size++;
3263 if (i == in_count) {
3264 sprintf(destination, "gl_FrontColor");
3265 } else if (i == in_count + 1) {
3266 sprintf(destination, "gl_FrontSecondaryColor");
3267 } else {
3268 sprintf(destination, "IN[%u]", i);
3271 if (size == 1) {
3272 shader_addline(buffer, "%s.%s = 0.0;\n", destination, reg_mask);
3273 } else {
3274 shader_addline(buffer, "%s.%s = vec%u(0.0);\n", destination, reg_mask, size);
3279 HeapFree(GetProcessHeap(), 0, set);
3282 static GLhandleARB generate_param_reorder_function(IWineD3DVertexShader *vertexshader,
3283 IWineD3DPixelShader *pixelshader, const WineD3D_GL_Info *gl_info)
3285 GLhandleARB ret = 0;
3286 IWineD3DVertexShaderImpl *vs = (IWineD3DVertexShaderImpl *) vertexshader;
3287 IWineD3DPixelShaderImpl *ps = (IWineD3DPixelShaderImpl *) pixelshader;
3288 IWineD3DDeviceImpl *device;
3289 DWORD vs_major = WINED3DSHADER_VERSION_MAJOR(vs->baseShader.reg_maps.shader_version);
3290 DWORD ps_major = ps ? WINED3DSHADER_VERSION_MAJOR(ps->baseShader.reg_maps.shader_version) : 0;
3291 unsigned int i;
3292 SHADER_BUFFER buffer;
3293 DWORD usage, usage_idx, writemask;
3294 char reg_mask[6];
3295 const struct wined3d_shader_semantic *semantics_out;
3297 shader_buffer_init(&buffer);
3299 shader_addline(&buffer, "#version 120\n");
3301 if(vs_major < 3 && ps_major < 3) {
3302 /* That one is easy: The vertex shader writes to the builtin varyings, the pixel shader reads from them.
3303 * Take care about the texcoord .w fixup though if we're using the fixed function fragment pipeline
3305 device = (IWineD3DDeviceImpl *) vs->baseShader.device;
3306 if((GLINFO_LOCATION).set_texcoord_w && ps_major == 0 && vs_major > 0 &&
3307 !device->frag_pipe->ffp_proj_control) {
3308 shader_addline(&buffer, "void order_ps_input() {\n");
3309 for(i = 0; i < min(8, MAX_REG_TEXCRD); i++) {
3310 if(vs->baseShader.reg_maps.texcoord_mask[i] != 0 &&
3311 vs->baseShader.reg_maps.texcoord_mask[i] != WINED3DSP_WRITEMASK_ALL) {
3312 shader_addline(&buffer, "gl_TexCoord[%u].w = 1.0;\n", i);
3315 shader_addline(&buffer, "}\n");
3316 } else {
3317 shader_addline(&buffer, "void order_ps_input() { /* do nothing */ }\n");
3319 } else if(ps_major < 3 && vs_major >= 3) {
3320 /* The vertex shader writes to its own varyings, the pixel shader needs them in the builtin ones */
3321 semantics_out = vs->semantics_out;
3323 shader_addline(&buffer, "void order_ps_input(in vec4 OUT[%u]) {\n", MAX_REG_OUTPUT);
3324 for(i = 0; i < MAX_REG_OUTPUT; i++) {
3325 if (!vs->baseShader.reg_maps.packed_output[i]) continue;
3327 usage = semantics_out[i].usage;
3328 usage_idx = semantics_out[i].usage_idx;
3329 writemask = shader_glsl_get_write_mask(&semantics_out[i].reg, reg_mask);
3331 switch(usage) {
3332 case WINED3DDECLUSAGE_COLOR:
3333 if (usage_idx == 0)
3334 shader_addline(&buffer, "gl_FrontColor%s = OUT[%u]%s;\n", reg_mask, i, reg_mask);
3335 else if (usage_idx == 1)
3336 shader_addline(&buffer, "gl_FrontSecondaryColor%s = OUT[%u]%s;\n", reg_mask, i, reg_mask);
3337 break;
3339 case WINED3DDECLUSAGE_POSITION:
3340 shader_addline(&buffer, "gl_Position%s = OUT[%u]%s;\n", reg_mask, i, reg_mask);
3341 break;
3343 case WINED3DDECLUSAGE_TEXCOORD:
3344 if (usage_idx < 8) {
3345 if(!(GLINFO_LOCATION).set_texcoord_w || ps_major > 0) writemask |= WINED3DSP_WRITEMASK_3;
3347 shader_addline(&buffer, "gl_TexCoord[%u]%s = OUT[%u]%s;\n",
3348 usage_idx, reg_mask, i, reg_mask);
3349 if(!(writemask & WINED3DSP_WRITEMASK_3)) {
3350 shader_addline(&buffer, "gl_TexCoord[%u].w = 1.0;\n", usage_idx);
3353 break;
3355 case WINED3DDECLUSAGE_PSIZE:
3356 shader_addline(&buffer, "gl_PointSize = OUT[%u].x;\n", i);
3357 break;
3359 case WINED3DDECLUSAGE_FOG:
3360 shader_addline(&buffer, "gl_FogFragCoord = OUT[%u].%c;\n", i, reg_mask[1]);
3361 break;
3363 default:
3364 break;
3367 shader_addline(&buffer, "}\n");
3369 } else if(ps_major >= 3 && vs_major >= 3) {
3370 semantics_out = vs->semantics_out;
3372 /* This one is tricky: a 3.0 pixel shader reads from a 3.0 vertex shader */
3373 shader_addline(&buffer, "varying vec4 IN[%u];\n", GL_LIMITS(glsl_varyings) / 4);
3374 shader_addline(&buffer, "void order_ps_input(in vec4 OUT[%u]) {\n", MAX_REG_OUTPUT);
3376 /* First, sort out position and point size. Those are not passed to the pixel shader */
3377 for(i = 0; i < MAX_REG_OUTPUT; i++) {
3378 if (!vs->baseShader.reg_maps.packed_output[i]) continue;
3380 usage = semantics_out[i].usage;
3381 usage_idx = semantics_out[i].usage_idx;
3382 shader_glsl_get_write_mask(&semantics_out[i].reg, reg_mask);
3384 switch(usage) {
3385 case WINED3DDECLUSAGE_POSITION:
3386 shader_addline(&buffer, "gl_Position%s = OUT[%u]%s;\n", reg_mask, i, reg_mask);
3387 break;
3389 case WINED3DDECLUSAGE_PSIZE:
3390 shader_addline(&buffer, "gl_PointSize = OUT[%u].x;\n", i);
3391 break;
3393 default:
3394 break;
3398 /* Then, fix the pixel shader input */
3399 handle_ps3_input(&buffer, gl_info, ps->input_reg_map,
3400 ps->semantics_in, &ps->baseShader.reg_maps, semantics_out, &vs->baseShader.reg_maps);
3402 shader_addline(&buffer, "}\n");
3403 } else if(ps_major >= 3 && vs_major < 3) {
3404 shader_addline(&buffer, "varying vec4 IN[%u];\n", GL_LIMITS(glsl_varyings) / 4);
3405 shader_addline(&buffer, "void order_ps_input() {\n");
3406 /* The vertex shader wrote to the builtin varyings. There is no need to figure out position and
3407 * point size, but we depend on the optimizers kindness to find out that the pixel shader doesn't
3408 * read gl_TexCoord and gl_ColorX, otherwise we'll run out of varyings
3410 handle_ps3_input(&buffer, gl_info, ps->input_reg_map, ps->semantics_in, &ps->baseShader.reg_maps, NULL, NULL);
3411 shader_addline(&buffer, "}\n");
3412 } else {
3413 ERR("Unexpected vertex and pixel shader version condition: vs: %d, ps: %d\n", vs_major, ps_major);
3416 ret = GL_EXTCALL(glCreateShaderObjectARB(GL_VERTEX_SHADER_ARB));
3417 checkGLcall("glCreateShaderObjectARB(GL_VERTEX_SHADER_ARB)");
3418 GL_EXTCALL(glShaderSourceARB(ret, 1, (const char**)&buffer.buffer, NULL));
3419 checkGLcall("glShaderSourceARB(ret, 1, &buffer.buffer, NULL)");
3420 GL_EXTCALL(glCompileShaderARB(ret));
3421 checkGLcall("glCompileShaderARB(ret)");
3423 shader_buffer_free(&buffer);
3424 return ret;
3427 static void hardcode_local_constants(IWineD3DBaseShaderImpl *shader, const WineD3D_GL_Info *gl_info,
3428 GLhandleARB programId, char prefix)
3430 const local_constant *lconst;
3431 GLint tmp_loc;
3432 const float *value;
3433 char glsl_name[8];
3435 LIST_FOR_EACH_ENTRY(lconst, &shader->baseShader.constantsF, local_constant, entry) {
3436 value = (const float *)lconst->value;
3437 snprintf(glsl_name, sizeof(glsl_name), "%cLC%u", prefix, lconst->idx);
3438 tmp_loc = GL_EXTCALL(glGetUniformLocationARB(programId, glsl_name));
3439 GL_EXTCALL(glUniform4fvARB(tmp_loc, 1, value));
3441 checkGLcall("Hardcoding local constants\n");
3444 /** Sets the GLSL program ID for the given pixel and vertex shader combination.
3445 * It sets the programId on the current StateBlock (because it should be called
3446 * inside of the DrawPrimitive() part of the render loop).
3448 * If a program for the given combination does not exist, create one, and store
3449 * the program in the hash table. If it creates a program, it will link the
3450 * given objects, too.
3452 static void set_glsl_shader_program(IWineD3DDevice *iface, BOOL use_ps, BOOL use_vs) {
3453 IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
3454 struct shader_glsl_priv *priv = This->shader_priv;
3455 const WineD3D_GL_Info *gl_info = &This->adapter->gl_info;
3456 IWineD3DPixelShader *pshader = This->stateBlock->pixelShader;
3457 IWineD3DVertexShader *vshader = This->stateBlock->vertexShader;
3458 struct glsl_shader_prog_link *entry = NULL;
3459 GLhandleARB programId = 0;
3460 GLhandleARB reorder_shader_id = 0;
3461 unsigned int i;
3462 char glsl_name[8];
3463 GLhandleARB vshader_id, pshader_id;
3464 struct ps_compile_args ps_compile_args;
3465 struct vs_compile_args vs_compile_args;
3467 if(use_vs) {
3468 find_vs_compile_args((IWineD3DVertexShaderImpl*)This->stateBlock->vertexShader, This->stateBlock, &vs_compile_args);
3469 } else {
3470 /* FIXME: Do we really have to spend CPU cycles to generate a few zeroed bytes? */
3471 memset(&vs_compile_args, 0, sizeof(vs_compile_args));
3473 if(use_ps) {
3474 find_ps_compile_args((IWineD3DPixelShaderImpl*)This->stateBlock->pixelShader, This->stateBlock, &ps_compile_args);
3475 } else {
3476 /* FIXME: Do we really have to spend CPU cycles to generate a few zeroed bytes? */
3477 memset(&ps_compile_args, 0, sizeof(ps_compile_args));
3479 entry = get_glsl_program_entry(priv, vshader, pshader, &vs_compile_args, &ps_compile_args);
3480 if (entry) {
3481 priv->glsl_program = entry;
3482 return;
3485 /* If we get to this point, then no matching program exists, so we create one */
3486 programId = GL_EXTCALL(glCreateProgramObjectARB());
3487 TRACE("Created new GLSL shader program %u\n", programId);
3489 /* Create the entry */
3490 entry = HeapAlloc(GetProcessHeap(), 0, sizeof(struct glsl_shader_prog_link));
3491 entry->programId = programId;
3492 entry->vshader = vshader;
3493 entry->pshader = pshader;
3494 entry->vs_args = vs_compile_args;
3495 entry->ps_args = ps_compile_args;
3496 entry->constant_version = 0;
3497 /* Add the hash table entry */
3498 add_glsl_program_entry(priv, entry);
3500 /* Set the current program */
3501 priv->glsl_program = entry;
3503 if(use_vs) {
3504 vshader_id = find_gl_vshader((IWineD3DVertexShaderImpl *) vshader, &vs_compile_args);
3505 } else {
3506 vshader_id = 0;
3509 /* Attach GLSL vshader */
3510 if (vshader_id) {
3511 const unsigned int max_attribs = 16; /* TODO: Will this always be the case? It is at the moment... */
3512 char tmp_name[10];
3514 reorder_shader_id = generate_param_reorder_function(vshader, pshader, gl_info);
3515 TRACE("Attaching GLSL shader object %u to program %u\n", reorder_shader_id, programId);
3516 GL_EXTCALL(glAttachObjectARB(programId, reorder_shader_id));
3517 checkGLcall("glAttachObjectARB");
3518 /* Flag the reorder function for deletion, then it will be freed automatically when the program
3519 * is destroyed
3521 GL_EXTCALL(glDeleteObjectARB(reorder_shader_id));
3523 TRACE("Attaching GLSL shader object %u to program %u\n", vshader_id, programId);
3524 GL_EXTCALL(glAttachObjectARB(programId, vshader_id));
3525 checkGLcall("glAttachObjectARB");
3527 /* Bind vertex attributes to a corresponding index number to match
3528 * the same index numbers as ARB_vertex_programs (makes loading
3529 * vertex attributes simpler). With this method, we can use the
3530 * exact same code to load the attributes later for both ARB and
3531 * GLSL shaders.
3533 * We have to do this here because we need to know the Program ID
3534 * in order to make the bindings work, and it has to be done prior
3535 * to linking the GLSL program. */
3536 for (i = 0; i < max_attribs; ++i) {
3537 if (((IWineD3DBaseShaderImpl*)vshader)->baseShader.reg_maps.attributes[i]) {
3538 snprintf(tmp_name, sizeof(tmp_name), "attrib%i", i);
3539 GL_EXTCALL(glBindAttribLocationARB(programId, i, tmp_name));
3542 checkGLcall("glBindAttribLocationARB");
3544 list_add_head(&((IWineD3DBaseShaderImpl *)vshader)->baseShader.linked_programs, &entry->vshader_entry);
3547 if(use_ps) {
3548 pshader_id = find_gl_pshader((IWineD3DPixelShaderImpl *) pshader, &ps_compile_args);
3549 } else {
3550 pshader_id = 0;
3553 /* Attach GLSL pshader */
3554 if (pshader_id) {
3555 TRACE("Attaching GLSL shader object %u to program %u\n", pshader_id, programId);
3556 GL_EXTCALL(glAttachObjectARB(programId, pshader_id));
3557 checkGLcall("glAttachObjectARB");
3559 list_add_head(&((IWineD3DBaseShaderImpl *)pshader)->baseShader.linked_programs, &entry->pshader_entry);
3562 /* Link the program */
3563 TRACE("Linking GLSL shader program %u\n", programId);
3564 GL_EXTCALL(glLinkProgramARB(programId));
3565 print_glsl_info_log(&GLINFO_LOCATION, programId);
3567 entry->vuniformF_locations = HeapAlloc(GetProcessHeap(), 0, sizeof(GLhandleARB) * GL_LIMITS(vshader_constantsF));
3568 for (i = 0; i < GL_LIMITS(vshader_constantsF); ++i) {
3569 snprintf(glsl_name, sizeof(glsl_name), "VC[%i]", i);
3570 entry->vuniformF_locations[i] = GL_EXTCALL(glGetUniformLocationARB(programId, glsl_name));
3572 for (i = 0; i < MAX_CONST_I; ++i) {
3573 snprintf(glsl_name, sizeof(glsl_name), "VI[%i]", i);
3574 entry->vuniformI_locations[i] = GL_EXTCALL(glGetUniformLocationARB(programId, glsl_name));
3576 entry->puniformF_locations = HeapAlloc(GetProcessHeap(), 0, sizeof(GLhandleARB) * GL_LIMITS(pshader_constantsF));
3577 for (i = 0; i < GL_LIMITS(pshader_constantsF); ++i) {
3578 snprintf(glsl_name, sizeof(glsl_name), "PC[%i]", i);
3579 entry->puniformF_locations[i] = GL_EXTCALL(glGetUniformLocationARB(programId, glsl_name));
3581 for (i = 0; i < MAX_CONST_I; ++i) {
3582 snprintf(glsl_name, sizeof(glsl_name), "PI[%i]", i);
3583 entry->puniformI_locations[i] = GL_EXTCALL(glGetUniformLocationARB(programId, glsl_name));
3586 if(pshader) {
3587 for(i = 0; i < ((IWineD3DPixelShaderImpl*)pshader)->numbumpenvmatconsts; i++) {
3588 char name[32];
3589 sprintf(name, "bumpenvmat%d", ((IWineD3DPixelShaderImpl*)pshader)->bumpenvmatconst[i].texunit);
3590 entry->bumpenvmat_location[i] = GL_EXTCALL(glGetUniformLocationARB(programId, name));
3591 sprintf(name, "luminancescale%d", ((IWineD3DPixelShaderImpl*)pshader)->luminanceconst[i].texunit);
3592 entry->luminancescale_location[i] = GL_EXTCALL(glGetUniformLocationARB(programId, name));
3593 sprintf(name, "luminanceoffset%d", ((IWineD3DPixelShaderImpl*)pshader)->luminanceconst[i].texunit);
3594 entry->luminanceoffset_location[i] = GL_EXTCALL(glGetUniformLocationARB(programId, name));
3598 if (use_ps && ps_compile_args.np2_fixup) {
3599 char name[32];
3600 for (i = 0; i < MAX_FRAGMENT_SAMPLERS; ++i) {
3601 if (ps_compile_args.np2_fixup & (1 << i)) {
3602 sprintf(name, "PsamplerNP2Fixup%u", i);
3603 entry->np2Fixup_location[i] = GL_EXTCALL(glGetUniformLocationARB(programId, name));
3604 } else {
3605 entry->np2Fixup_location[i] = -1;
3610 entry->posFixup_location = GL_EXTCALL(glGetUniformLocationARB(programId, "posFixup"));
3611 entry->ycorrection_location = GL_EXTCALL(glGetUniformLocationARB(programId, "ycorrection"));
3612 checkGLcall("Find glsl program uniform locations");
3614 if (pshader
3615 && WINED3DSHADER_VERSION_MAJOR(((IWineD3DPixelShaderImpl *)pshader)->baseShader.reg_maps.shader_version) >= 3
3616 && ((IWineD3DPixelShaderImpl *)pshader)->declared_in_count > GL_LIMITS(glsl_varyings) / 4)
3618 TRACE("Shader %d needs vertex color clamping disabled\n", programId);
3619 entry->vertex_color_clamp = GL_FALSE;
3620 } else {
3621 entry->vertex_color_clamp = GL_FIXED_ONLY_ARB;
3624 /* Set the shader to allow uniform loading on it */
3625 GL_EXTCALL(glUseProgramObjectARB(programId));
3626 checkGLcall("glUseProgramObjectARB(programId)");
3628 /* Load the vertex and pixel samplers now. The function that finds the mappings makes sure
3629 * that it stays the same for each vertexshader-pixelshader pair(=linked glsl program). If
3630 * a pshader with fixed function pipeline is used there are no vertex samplers, and if a
3631 * vertex shader with fixed function pixel processing is used we make sure that the card
3632 * supports enough samplers to allow the max number of vertex samplers with all possible
3633 * fixed function fragment processing setups. So once the program is linked these samplers
3634 * won't change.
3636 if(vshader_id) {
3637 /* Load vertex shader samplers */
3638 shader_glsl_load_vsamplers(gl_info, This->texUnitMap, programId);
3640 if(pshader_id) {
3641 /* Load pixel shader samplers */
3642 shader_glsl_load_psamplers(gl_info, This->texUnitMap, programId);
3645 /* If the local constants do not have to be loaded with the environment constants,
3646 * load them now to have them hardcoded in the GLSL program. This saves some CPU cycles
3647 * later
3649 if(pshader && !((IWineD3DPixelShaderImpl*)pshader)->baseShader.load_local_constsF) {
3650 hardcode_local_constants((IWineD3DBaseShaderImpl *) pshader, gl_info, programId, 'P');
3652 if(vshader && !((IWineD3DVertexShaderImpl*)vshader)->baseShader.load_local_constsF) {
3653 hardcode_local_constants((IWineD3DBaseShaderImpl *) vshader, gl_info, programId, 'V');
3657 static GLhandleARB create_glsl_blt_shader(const WineD3D_GL_Info *gl_info, enum tex_types tex_type)
3659 GLhandleARB program_id;
3660 GLhandleARB vshader_id, pshader_id;
3661 static const char *blt_vshader[] =
3663 "#version 120\n"
3664 "void main(void)\n"
3665 "{\n"
3666 " gl_Position = gl_Vertex;\n"
3667 " gl_FrontColor = vec4(1.0);\n"
3668 " gl_TexCoord[0] = gl_MultiTexCoord0;\n"
3669 "}\n"
3672 static const char *blt_pshaders[tex_type_count] =
3674 /* tex_1d */
3675 NULL,
3676 /* tex_2d */
3677 "#version 120\n"
3678 "uniform sampler2D sampler;\n"
3679 "void main(void)\n"
3680 "{\n"
3681 " gl_FragDepth = texture2D(sampler, gl_TexCoord[0].xy).x;\n"
3682 "}\n",
3683 /* tex_3d */
3684 NULL,
3685 /* tex_cube */
3686 "#version 120\n"
3687 "uniform samplerCube sampler;\n"
3688 "void main(void)\n"
3689 "{\n"
3690 " gl_FragDepth = textureCube(sampler, gl_TexCoord[0].xyz).x;\n"
3691 "}\n",
3692 /* tex_rect */
3693 "#version 120\n"
3694 "#extension GL_ARB_texture_rectangle : enable\n"
3695 "uniform sampler2DRect sampler;\n"
3696 "void main(void)\n"
3697 "{\n"
3698 " gl_FragDepth = texture2DRect(sampler, gl_TexCoord[0].xy).x;\n"
3699 "}\n",
3702 if (!blt_pshaders[tex_type])
3704 FIXME("tex_type %#x not supported\n", tex_type);
3705 tex_type = tex_2d;
3708 vshader_id = GL_EXTCALL(glCreateShaderObjectARB(GL_VERTEX_SHADER_ARB));
3709 GL_EXTCALL(glShaderSourceARB(vshader_id, 1, blt_vshader, NULL));
3710 GL_EXTCALL(glCompileShaderARB(vshader_id));
3712 pshader_id = GL_EXTCALL(glCreateShaderObjectARB(GL_FRAGMENT_SHADER_ARB));
3713 GL_EXTCALL(glShaderSourceARB(pshader_id, 1, &blt_pshaders[tex_type], NULL));
3714 GL_EXTCALL(glCompileShaderARB(pshader_id));
3716 program_id = GL_EXTCALL(glCreateProgramObjectARB());
3717 GL_EXTCALL(glAttachObjectARB(program_id, vshader_id));
3718 GL_EXTCALL(glAttachObjectARB(program_id, pshader_id));
3719 GL_EXTCALL(glLinkProgramARB(program_id));
3721 print_glsl_info_log(&GLINFO_LOCATION, program_id);
3723 /* Once linked we can mark the shaders for deletion. They will be deleted once the program
3724 * is destroyed
3726 GL_EXTCALL(glDeleteObjectARB(vshader_id));
3727 GL_EXTCALL(glDeleteObjectARB(pshader_id));
3728 return program_id;
3731 static void shader_glsl_select(IWineD3DDevice *iface, BOOL usePS, BOOL useVS) {
3732 IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
3733 struct shader_glsl_priv *priv = This->shader_priv;
3734 const WineD3D_GL_Info *gl_info = &This->adapter->gl_info;
3735 GLhandleARB program_id = 0;
3736 GLenum old_vertex_color_clamp, current_vertex_color_clamp;
3738 old_vertex_color_clamp = priv->glsl_program ? priv->glsl_program->vertex_color_clamp : GL_FIXED_ONLY_ARB;
3740 if (useVS || usePS) set_glsl_shader_program(iface, usePS, useVS);
3741 else priv->glsl_program = NULL;
3743 current_vertex_color_clamp = priv->glsl_program ? priv->glsl_program->vertex_color_clamp : GL_FIXED_ONLY_ARB;
3745 if (old_vertex_color_clamp != current_vertex_color_clamp) {
3746 if (GL_SUPPORT(ARB_COLOR_BUFFER_FLOAT)) {
3747 GL_EXTCALL(glClampColorARB(GL_CLAMP_VERTEX_COLOR_ARB, current_vertex_color_clamp));
3748 checkGLcall("glClampColorARB");
3749 } else {
3750 FIXME("vertex color clamp needs to be changed, but extension not supported.\n");
3754 program_id = priv->glsl_program ? priv->glsl_program->programId : 0;
3755 if (program_id) TRACE("Using GLSL program %u\n", program_id);
3756 GL_EXTCALL(glUseProgramObjectARB(program_id));
3757 checkGLcall("glUseProgramObjectARB");
3760 static void shader_glsl_select_depth_blt(IWineD3DDevice *iface, enum tex_types tex_type) {
3761 IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
3762 const WineD3D_GL_Info *gl_info = &This->adapter->gl_info;
3763 struct shader_glsl_priv *priv = This->shader_priv;
3764 GLhandleARB *blt_program = &priv->depth_blt_program[tex_type];
3766 if (!*blt_program) {
3767 GLint loc;
3768 *blt_program = create_glsl_blt_shader(gl_info, tex_type);
3769 loc = GL_EXTCALL(glGetUniformLocationARB(*blt_program, "sampler"));
3770 GL_EXTCALL(glUseProgramObjectARB(*blt_program));
3771 GL_EXTCALL(glUniform1iARB(loc, 0));
3772 } else {
3773 GL_EXTCALL(glUseProgramObjectARB(*blt_program));
3777 static void shader_glsl_deselect_depth_blt(IWineD3DDevice *iface) {
3778 IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
3779 const WineD3D_GL_Info *gl_info = &This->adapter->gl_info;
3780 struct shader_glsl_priv *priv = This->shader_priv;
3781 GLhandleARB program_id;
3783 program_id = priv->glsl_program ? priv->glsl_program->programId : 0;
3784 if (program_id) TRACE("Using GLSL program %u\n", program_id);
3786 GL_EXTCALL(glUseProgramObjectARB(program_id));
3787 checkGLcall("glUseProgramObjectARB");
3790 static void shader_glsl_destroy(IWineD3DBaseShader *iface) {
3791 const struct list *linked_programs;
3792 IWineD3DBaseShaderImpl *This = (IWineD3DBaseShaderImpl *) iface;
3793 IWineD3DDeviceImpl *device = (IWineD3DDeviceImpl *)This->baseShader.device;
3794 struct shader_glsl_priv *priv = device->shader_priv;
3795 const WineD3D_GL_Info *gl_info = &device->adapter->gl_info;
3796 IWineD3DPixelShaderImpl *ps = NULL;
3797 IWineD3DVertexShaderImpl *vs = NULL;
3799 /* Note: Do not use QueryInterface here to find out which shader type this is because this code
3800 * can be called from IWineD3DBaseShader::Release
3802 char pshader = shader_is_pshader_version(This->baseShader.reg_maps.shader_version);
3804 if(pshader) {
3805 ps = (IWineD3DPixelShaderImpl *) This;
3806 if(ps->num_gl_shaders == 0) return;
3807 if (priv->glsl_program && (IWineD3DBaseShader *)priv->glsl_program->pshader == iface)
3808 shader_glsl_select(This->baseShader.device, FALSE, FALSE);
3809 } else {
3810 vs = (IWineD3DVertexShaderImpl *) This;
3811 if(vs->num_gl_shaders == 0) return;
3812 if (priv->glsl_program && (IWineD3DBaseShader *)priv->glsl_program->vshader == iface)
3813 shader_glsl_select(This->baseShader.device, FALSE, FALSE);
3816 linked_programs = &This->baseShader.linked_programs;
3818 TRACE("Deleting linked programs\n");
3819 if (linked_programs->next) {
3820 struct glsl_shader_prog_link *entry, *entry2;
3822 if(pshader) {
3823 LIST_FOR_EACH_ENTRY_SAFE(entry, entry2, linked_programs, struct glsl_shader_prog_link, pshader_entry) {
3824 delete_glsl_program_entry(priv, gl_info, entry);
3826 } else {
3827 LIST_FOR_EACH_ENTRY_SAFE(entry, entry2, linked_programs, struct glsl_shader_prog_link, vshader_entry) {
3828 delete_glsl_program_entry(priv, gl_info, entry);
3833 if(pshader) {
3834 UINT i;
3836 ENTER_GL();
3837 for(i = 0; i < ps->num_gl_shaders; i++) {
3838 TRACE("deleting pshader %u\n", ps->gl_shaders[i].prgId);
3839 GL_EXTCALL(glDeleteObjectARB(ps->gl_shaders[i].prgId));
3840 checkGLcall("glDeleteObjectARB");
3842 LEAVE_GL();
3843 HeapFree(GetProcessHeap(), 0, ps->gl_shaders);
3844 ps->gl_shaders = NULL;
3845 ps->num_gl_shaders = 0;
3846 ps->shader_array_size = 0;
3847 } else {
3848 UINT i;
3850 ENTER_GL();
3851 for(i = 0; i < vs->num_gl_shaders; i++) {
3852 TRACE("deleting vshader %u\n", vs->gl_shaders[i].prgId);
3853 GL_EXTCALL(glDeleteObjectARB(vs->gl_shaders[i].prgId));
3854 checkGLcall("glDeleteObjectARB");
3856 LEAVE_GL();
3857 HeapFree(GetProcessHeap(), 0, vs->gl_shaders);
3858 vs->gl_shaders = NULL;
3859 vs->num_gl_shaders = 0;
3860 vs->shader_array_size = 0;
3864 static unsigned int glsl_program_key_hash(const void *key)
3866 const glsl_program_key_t *k = key;
3868 unsigned int hash = ((DWORD_PTR) k->vshader) | ((DWORD_PTR) k->pshader) << 16;
3869 hash += ~(hash << 15);
3870 hash ^= (hash >> 10);
3871 hash += (hash << 3);
3872 hash ^= (hash >> 6);
3873 hash += ~(hash << 11);
3874 hash ^= (hash >> 16);
3876 return hash;
3879 static BOOL glsl_program_key_compare(const void *keya, const void *keyb)
3881 const glsl_program_key_t *ka = keya;
3882 const glsl_program_key_t *kb = keyb;
3884 return ka->vshader == kb->vshader && ka->pshader == kb->pshader &&
3885 (memcmp(&ka->ps_args, &kb->ps_args, sizeof(kb->ps_args)) == 0) &&
3886 (memcmp(&ka->vs_args, &kb->vs_args, sizeof(kb->vs_args)) == 0);
3889 static BOOL constant_heap_init(struct constant_heap *heap, unsigned int constant_count)
3891 SIZE_T size = (constant_count + 1) * sizeof(*heap->entries) + constant_count * sizeof(*heap->positions);
3892 void *mem = HeapAlloc(GetProcessHeap(), 0, size);
3894 if (!mem)
3896 ERR("Failed to allocate memory\n");
3897 return FALSE;
3900 heap->entries = mem;
3901 heap->entries[1].version = 0;
3902 heap->positions = (unsigned int *)(heap->entries + constant_count + 1);
3903 heap->size = 1;
3905 return TRUE;
3908 static void constant_heap_free(struct constant_heap *heap)
3910 HeapFree(GetProcessHeap(), 0, heap->entries);
3913 static HRESULT shader_glsl_alloc(IWineD3DDevice *iface) {
3914 IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
3915 const WineD3D_GL_Info *gl_info = &This->adapter->gl_info;
3916 struct shader_glsl_priv *priv = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(struct shader_glsl_priv));
3917 SIZE_T stack_size = wined3d_log2i(max(GL_LIMITS(vshader_constantsF), GL_LIMITS(pshader_constantsF))) + 1;
3919 priv->stack = HeapAlloc(GetProcessHeap(), 0, stack_size * sizeof(*priv->stack));
3920 if (!priv->stack)
3922 ERR("Failed to allocate memory.\n");
3923 HeapFree(GetProcessHeap(), 0, priv);
3924 return E_OUTOFMEMORY;
3927 if (!constant_heap_init(&priv->vconst_heap, GL_LIMITS(vshader_constantsF)))
3929 ERR("Failed to initialize vertex shader constant heap\n");
3930 HeapFree(GetProcessHeap(), 0, priv->stack);
3931 HeapFree(GetProcessHeap(), 0, priv);
3932 return E_OUTOFMEMORY;
3935 if (!constant_heap_init(&priv->pconst_heap, GL_LIMITS(pshader_constantsF)))
3937 ERR("Failed to initialize pixel shader constant heap\n");
3938 constant_heap_free(&priv->vconst_heap);
3939 HeapFree(GetProcessHeap(), 0, priv->stack);
3940 HeapFree(GetProcessHeap(), 0, priv);
3941 return E_OUTOFMEMORY;
3944 priv->glsl_program_lookup = hash_table_create(glsl_program_key_hash, glsl_program_key_compare);
3945 priv->next_constant_version = 1;
3947 This->shader_priv = priv;
3948 return WINED3D_OK;
3951 static void shader_glsl_free(IWineD3DDevice *iface) {
3952 IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
3953 const WineD3D_GL_Info *gl_info = &This->adapter->gl_info;
3954 struct shader_glsl_priv *priv = This->shader_priv;
3955 int i;
3957 for (i = 0; i < tex_type_count; ++i)
3959 if (priv->depth_blt_program[i])
3961 GL_EXTCALL(glDeleteObjectARB(priv->depth_blt_program[i]));
3965 hash_table_destroy(priv->glsl_program_lookup, NULL, NULL);
3966 constant_heap_free(&priv->pconst_heap);
3967 constant_heap_free(&priv->vconst_heap);
3969 HeapFree(GetProcessHeap(), 0, This->shader_priv);
3970 This->shader_priv = NULL;
3973 static BOOL shader_glsl_dirty_const(IWineD3DDevice *iface) {
3974 /* TODO: GL_EXT_bindable_uniform can be used to share constants across shaders */
3975 return FALSE;
3978 static GLuint shader_glsl_generate_pshader(IWineD3DPixelShader *iface, SHADER_BUFFER *buffer, const struct ps_compile_args *args) {
3979 IWineD3DPixelShaderImpl *This = (IWineD3DPixelShaderImpl *)iface;
3980 const struct shader_reg_maps *reg_maps = &This->baseShader.reg_maps;
3981 CONST DWORD *function = This->baseShader.function;
3982 const char *fragcolor;
3983 const WineD3D_GL_Info *gl_info = &((IWineD3DDeviceImpl *)This->baseShader.device)->adapter->gl_info;
3985 /* Create the hw GLSL shader object and assign it as the shader->prgId */
3986 GLhandleARB shader_obj = GL_EXTCALL(glCreateShaderObjectARB(GL_FRAGMENT_SHADER_ARB));
3988 shader_addline(buffer, "#version 120\n");
3990 if (GL_SUPPORT(ARB_DRAW_BUFFERS)) {
3991 shader_addline(buffer, "#extension GL_ARB_draw_buffers : enable\n");
3993 if (GL_SUPPORT(ARB_TEXTURE_RECTANGLE)) {
3994 /* The spec says that it doesn't have to be explicitly enabled, but the nvidia
3995 * drivers write a warning if we don't do so
3997 shader_addline(buffer, "#extension GL_ARB_texture_rectangle : enable\n");
4000 /* Base Declarations */
4001 shader_generate_glsl_declarations( (IWineD3DBaseShader*) This, reg_maps, buffer, &GLINFO_LOCATION, args);
4003 /* Pack 3.0 inputs */
4004 if (reg_maps->shader_version >= WINED3DPS_VERSION(3,0) && args->vp_mode != vertexshader) {
4005 pshader_glsl_input_pack(iface, buffer, This->semantics_in, reg_maps, args->vp_mode);
4008 /* Base Shader Body */
4009 shader_generate_main( (IWineD3DBaseShader*) This, buffer, reg_maps, function);
4011 /* Pixel shaders < 2.0 place the resulting color in R0 implicitly */
4012 if (reg_maps->shader_version < WINED3DPS_VERSION(2,0))
4014 /* Some older cards like GeforceFX ones don't support multiple buffers, so also not gl_FragData */
4015 if(GL_SUPPORT(ARB_DRAW_BUFFERS))
4016 shader_addline(buffer, "gl_FragData[0] = R0;\n");
4017 else
4018 shader_addline(buffer, "gl_FragColor = R0;\n");
4021 if(GL_SUPPORT(ARB_DRAW_BUFFERS)) {
4022 fragcolor = "gl_FragData[0]";
4023 } else {
4024 fragcolor = "gl_FragColor";
4026 if(args->srgb_correction) {
4027 shader_addline(buffer, "tmp0.xyz = pow(%s.xyz, vec3(%f, %f, %f)) * vec3(%f, %f, %f) - vec3(%f, %f, %f);\n",
4028 fragcolor, srgb_pow, srgb_pow, srgb_pow, srgb_mul_high, srgb_mul_high, srgb_mul_high,
4029 srgb_sub_high, srgb_sub_high, srgb_sub_high);
4030 shader_addline(buffer, "tmp1.xyz = %s.xyz * srgb_mul_low.xyz;\n", fragcolor);
4031 shader_addline(buffer, "%s.x = %s.x < srgb_comparison.x ? tmp1.x : tmp0.x;\n", fragcolor, fragcolor);
4032 shader_addline(buffer, "%s.y = %s.y < srgb_comparison.y ? tmp1.y : tmp0.y;\n", fragcolor, fragcolor);
4033 shader_addline(buffer, "%s.z = %s.z < srgb_comparison.z ? tmp1.z : tmp0.z;\n", fragcolor, fragcolor);
4034 shader_addline(buffer, "%s = clamp(%s, 0.0, 1.0);\n", fragcolor, fragcolor);
4036 /* Pixel shader < 3.0 do not replace the fog stage.
4037 * This implements linear fog computation and blending.
4038 * TODO: non linear fog
4039 * NOTE: gl_Fog.start and gl_Fog.end don't hold fog start s and end e but
4040 * -1/(e-s) and e/(e-s) respectively.
4042 if(reg_maps->shader_version < WINED3DPS_VERSION(3,0)) {
4043 switch(args->fog) {
4044 case FOG_OFF: break;
4045 case FOG_LINEAR:
4046 shader_addline(buffer, "float fogstart = -1.0 / (gl_Fog.end - gl_Fog.start);\n");
4047 shader_addline(buffer, "float fogend = gl_Fog.end * -fogstart;\n");
4048 shader_addline(buffer, "float Fog = clamp(gl_FogFragCoord * fogstart + fogend, 0.0, 1.0);\n");
4049 shader_addline(buffer, "%s.xyz = mix(gl_Fog.color.xyz, %s.xyz, Fog);\n", fragcolor, fragcolor);
4050 break;
4051 case FOG_EXP:
4052 /* Fog = e^(-gl_Fog.density * gl_FogFragCoord) */
4053 shader_addline(buffer, "float Fog = exp(-gl_Fog.density * gl_FogFragCoord);\n");
4054 shader_addline(buffer, "Fog = clamp(Fog, 0.0, 1.0);\n");
4055 shader_addline(buffer, "%s.xyz = mix(gl_Fog.color.xyz, %s.xyz, Fog);\n", fragcolor, fragcolor);
4056 break;
4057 case FOG_EXP2:
4058 /* Fog = e^(-(gl_Fog.density * gl_FogFragCoord)^2) */
4059 shader_addline(buffer, "float Fog = exp(-gl_Fog.density * gl_Fog.density * gl_FogFragCoord * gl_FogFragCoord);\n");
4060 shader_addline(buffer, "Fog = clamp(Fog, 0.0, 1.0);\n");
4061 shader_addline(buffer, "%s.xyz = mix(gl_Fog.color.xyz, %s.xyz, Fog);\n", fragcolor, fragcolor);
4062 break;
4066 shader_addline(buffer, "}\n");
4068 TRACE("Compiling shader object %u\n", shader_obj);
4069 GL_EXTCALL(glShaderSourceARB(shader_obj, 1, (const char**)&buffer->buffer, NULL));
4070 GL_EXTCALL(glCompileShaderARB(shader_obj));
4071 print_glsl_info_log(&GLINFO_LOCATION, shader_obj);
4073 /* Store the shader object */
4074 return shader_obj;
4077 static GLuint shader_glsl_generate_vshader(IWineD3DVertexShader *iface, SHADER_BUFFER *buffer, const struct vs_compile_args *args) {
4078 IWineD3DVertexShaderImpl *This = (IWineD3DVertexShaderImpl *)iface;
4079 const struct shader_reg_maps *reg_maps = &This->baseShader.reg_maps;
4080 CONST DWORD *function = This->baseShader.function;
4081 const WineD3D_GL_Info *gl_info = &((IWineD3DDeviceImpl *)This->baseShader.device)->adapter->gl_info;
4083 /* Create the hw GLSL shader program and assign it as the shader->prgId */
4084 GLhandleARB shader_obj = GL_EXTCALL(glCreateShaderObjectARB(GL_VERTEX_SHADER_ARB));
4086 shader_addline(buffer, "#version 120\n");
4088 /* Base Declarations */
4089 shader_generate_glsl_declarations( (IWineD3DBaseShader*) This, reg_maps, buffer, &GLINFO_LOCATION, NULL);
4091 /* Base Shader Body */
4092 shader_generate_main( (IWineD3DBaseShader*) This, buffer, reg_maps, function);
4094 /* Unpack 3.0 outputs */
4095 if (reg_maps->shader_version >= WINED3DVS_VERSION(3,0)) shader_addline(buffer, "order_ps_input(OUT);\n");
4096 else shader_addline(buffer, "order_ps_input();\n");
4098 /* The D3DRS_FOGTABLEMODE render state defines if the shader-generated fog coord is used
4099 * or if the fragment depth is used. If the fragment depth is used(FOGTABLEMODE != NONE),
4100 * the fog frag coord is thrown away. If the fog frag coord is used, but not written by
4101 * the shader, it is set to 0.0(fully fogged, since start = 1.0, end = 0.0)
4103 if(args->fog_src == VS_FOG_Z) {
4104 shader_addline(buffer, "gl_FogFragCoord = gl_Position.z;\n");
4105 } else if (!reg_maps->fog) {
4106 shader_addline(buffer, "gl_FogFragCoord = 0.0;\n");
4109 /* Write the final position.
4111 * OpenGL coordinates specify the center of the pixel while d3d coords specify
4112 * the corner. The offsets are stored in z and w in posFixup. posFixup.y contains
4113 * 1.0 or -1.0 to turn the rendering upside down for offscreen rendering. PosFixup.x
4114 * contains 1.0 to allow a mad.
4116 shader_addline(buffer, "gl_Position.y = gl_Position.y * posFixup.y;\n");
4117 shader_addline(buffer, "gl_Position.xy += posFixup.zw * gl_Position.ww;\n");
4119 /* Z coord [0;1]->[-1;1] mapping, see comment in transform_projection in state.c
4121 * Basically we want (in homogeneous coordinates) z = z * 2 - 1. However, shaders are run
4122 * before the homogeneous divide, so we have to take the w into account: z = ((z / w) * 2 - 1) * w,
4123 * which is the same as z = z * 2 - w.
4125 shader_addline(buffer, "gl_Position.z = gl_Position.z * 2.0 - gl_Position.w;\n");
4127 shader_addline(buffer, "}\n");
4129 TRACE("Compiling shader object %u\n", shader_obj);
4130 GL_EXTCALL(glShaderSourceARB(shader_obj, 1, (const char**)&buffer->buffer, NULL));
4131 GL_EXTCALL(glCompileShaderARB(shader_obj));
4132 print_glsl_info_log(&GLINFO_LOCATION, shader_obj);
4134 return shader_obj;
4137 static void shader_glsl_get_caps(WINED3DDEVTYPE devtype, const WineD3D_GL_Info *gl_info, struct shader_caps *pCaps)
4139 /* Nvidia Geforce6/7 or Ati R4xx/R5xx cards with GLSL support, support VS 3.0 but older Nvidia/Ati
4140 * models with GLSL support only support 2.0. In case of nvidia we can detect VS 2.0 support using
4141 * vs_nv_version which is based on NV_vertex_program.
4142 * For Ati cards there's no way using glsl (it abstracts the lowlevel info away) and also not
4143 * using ARB_vertex_program. It is safe to assume that when a card supports pixel shader 2.0 it
4144 * supports vertex shader 2.0 too and the way around. We can detect ps2.0 using the maximum number
4145 * of native instructions, so use that here. For more info see the pixel shader versioning code below.
4147 if((GLINFO_LOCATION.vs_nv_version == VS_VERSION_20) || (GLINFO_LOCATION.ps_arb_max_instructions <= 512))
4148 pCaps->VertexShaderVersion = WINED3DVS_VERSION(2,0);
4149 else
4150 pCaps->VertexShaderVersion = WINED3DVS_VERSION(3,0);
4151 TRACE_(d3d_caps)("Hardware vertex shader version %d.%d enabled (GLSL)\n", (pCaps->VertexShaderVersion >> 8) & 0xff, pCaps->VertexShaderVersion & 0xff);
4152 pCaps->MaxVertexShaderConst = GL_LIMITS(vshader_constantsF);
4154 /* Older DX9-class videocards (GeforceFX / Radeon >9500/X*00) only support pixel shader 2.0/2.0a/2.0b.
4155 * In OpenGL the extensions related to GLSL abstract lowlevel GL info away which is needed
4156 * to distinguish between 2.0 and 3.0 (and 2.0a/2.0b). In case of Nvidia we use their fragment
4157 * program extensions. On other hardware including ATI GL_ARB_fragment_program offers the info
4158 * in max native instructions. Intel and others also offer the info in this extension but they
4159 * don't support GLSL (at least on Windows).
4161 * PS2.0 requires at least 96 instructions, 2.0a/2.0b go up to 512. Assume that if the number
4162 * of instructions is 512 or less we have to do with ps2.0 hardware.
4163 * NOTE: ps3.0 hardware requires 512 or more instructions but ati and nvidia offer 'enough' (1024 vs 4096) on their most basic ps3.0 hardware.
4165 if((GLINFO_LOCATION.ps_nv_version == PS_VERSION_20) || (GLINFO_LOCATION.ps_arb_max_instructions <= 512))
4166 pCaps->PixelShaderVersion = WINED3DPS_VERSION(2,0);
4167 else
4168 pCaps->PixelShaderVersion = WINED3DPS_VERSION(3,0);
4170 pCaps->MaxPixelShaderConst = GL_LIMITS(pshader_constantsF);
4172 /* FIXME: The following line is card dependent. -8.0 to 8.0 is the
4173 * Direct3D minimum requirement.
4175 * Both GL_ARB_fragment_program and GLSL require a "maximum representable magnitude"
4176 * of colors to be 2^10, and 2^32 for other floats. Should we use 1024 here?
4178 * The problem is that the refrast clamps temporary results in the shader to
4179 * [-MaxValue;+MaxValue]. If the card's max value is bigger than the one we advertize here,
4180 * then applications may miss the clamping behavior. On the other hand, if it is smaller,
4181 * the shader will generate incorrect results too. Unfortunately, GL deliberately doesn't
4182 * offer a way to query this.
4184 pCaps->PixelShader1xMaxValue = 8.0;
4185 TRACE_(d3d_caps)("Hardware pixel shader version %d.%d enabled (GLSL)\n", (pCaps->PixelShaderVersion >> 8) & 0xff, pCaps->PixelShaderVersion & 0xff);
4188 static BOOL shader_glsl_color_fixup_supported(struct color_fixup_desc fixup)
4190 if (TRACE_ON(d3d_shader) && TRACE_ON(d3d))
4192 TRACE("Checking support for fixup:\n");
4193 dump_color_fixup_desc(fixup);
4196 /* We support everything except YUV conversions. */
4197 if (!is_yuv_fixup(fixup))
4199 TRACE("[OK]\n");
4200 return TRUE;
4203 TRACE("[FAILED]\n");
4204 return FALSE;
4207 static const SHADER_HANDLER shader_glsl_instruction_handler_table[WINED3DSIH_TABLE_SIZE] =
4209 /* WINED3DSIH_ABS */ shader_glsl_map2gl,
4210 /* WINED3DSIH_ADD */ shader_glsl_arith,
4211 /* WINED3DSIH_BEM */ pshader_glsl_bem,
4212 /* WINED3DSIH_BREAK */ shader_glsl_break,
4213 /* WINED3DSIH_BREAKC */ shader_glsl_breakc,
4214 /* WINED3DSIH_BREAKP */ NULL,
4215 /* WINED3DSIH_CALL */ shader_glsl_call,
4216 /* WINED3DSIH_CALLNZ */ shader_glsl_callnz,
4217 /* WINED3DSIH_CMP */ shader_glsl_cmp,
4218 /* WINED3DSIH_CND */ shader_glsl_cnd,
4219 /* WINED3DSIH_CRS */ shader_glsl_cross,
4220 /* WINED3DSIH_DCL */ NULL,
4221 /* WINED3DSIH_DEF */ NULL,
4222 /* WINED3DSIH_DEFB */ NULL,
4223 /* WINED3DSIH_DEFI */ NULL,
4224 /* WINED3DSIH_DP2ADD */ pshader_glsl_dp2add,
4225 /* WINED3DSIH_DP3 */ shader_glsl_dot,
4226 /* WINED3DSIH_DP4 */ shader_glsl_dot,
4227 /* WINED3DSIH_DST */ shader_glsl_dst,
4228 /* WINED3DSIH_DSX */ shader_glsl_map2gl,
4229 /* WINED3DSIH_DSY */ shader_glsl_map2gl,
4230 /* WINED3DSIH_ELSE */ shader_glsl_else,
4231 /* WINED3DSIH_ENDIF */ shader_glsl_end,
4232 /* WINED3DSIH_ENDLOOP */ shader_glsl_end,
4233 /* WINED3DSIH_ENDREP */ shader_glsl_end,
4234 /* WINED3DSIH_EXP */ shader_glsl_map2gl,
4235 /* WINED3DSIH_EXPP */ shader_glsl_expp,
4236 /* WINED3DSIH_FRC */ shader_glsl_map2gl,
4237 /* WINED3DSIH_IF */ shader_glsl_if,
4238 /* WINED3DSIH_IFC */ shader_glsl_ifc,
4239 /* WINED3DSIH_LABEL */ shader_glsl_label,
4240 /* WINED3DSIH_LIT */ shader_glsl_lit,
4241 /* WINED3DSIH_LOG */ shader_glsl_log,
4242 /* WINED3DSIH_LOGP */ shader_glsl_log,
4243 /* WINED3DSIH_LOOP */ shader_glsl_loop,
4244 /* WINED3DSIH_LRP */ shader_glsl_lrp,
4245 /* WINED3DSIH_M3x2 */ shader_glsl_mnxn,
4246 /* WINED3DSIH_M3x3 */ shader_glsl_mnxn,
4247 /* WINED3DSIH_M3x4 */ shader_glsl_mnxn,
4248 /* WINED3DSIH_M4x3 */ shader_glsl_mnxn,
4249 /* WINED3DSIH_M4x4 */ shader_glsl_mnxn,
4250 /* WINED3DSIH_MAD */ shader_glsl_mad,
4251 /* WINED3DSIH_MAX */ shader_glsl_map2gl,
4252 /* WINED3DSIH_MIN */ shader_glsl_map2gl,
4253 /* WINED3DSIH_MOV */ shader_glsl_mov,
4254 /* WINED3DSIH_MOVA */ shader_glsl_mov,
4255 /* WINED3DSIH_MUL */ shader_glsl_arith,
4256 /* WINED3DSIH_NOP */ NULL,
4257 /* WINED3DSIH_NRM */ shader_glsl_map2gl,
4258 /* WINED3DSIH_PHASE */ NULL,
4259 /* WINED3DSIH_POW */ shader_glsl_pow,
4260 /* WINED3DSIH_RCP */ shader_glsl_rcp,
4261 /* WINED3DSIH_REP */ shader_glsl_rep,
4262 /* WINED3DSIH_RET */ NULL,
4263 /* WINED3DSIH_RSQ */ shader_glsl_rsq,
4264 /* WINED3DSIH_SETP */ NULL,
4265 /* WINED3DSIH_SGE */ shader_glsl_compare,
4266 /* WINED3DSIH_SGN */ shader_glsl_map2gl,
4267 /* WINED3DSIH_SINCOS */ shader_glsl_sincos,
4268 /* WINED3DSIH_SLT */ shader_glsl_compare,
4269 /* WINED3DSIH_SUB */ shader_glsl_arith,
4270 /* WINED3DSIH_TEX */ pshader_glsl_tex,
4271 /* WINED3DSIH_TEXBEM */ pshader_glsl_texbem,
4272 /* WINED3DSIH_TEXBEML */ pshader_glsl_texbem,
4273 /* WINED3DSIH_TEXCOORD */ pshader_glsl_texcoord,
4274 /* WINED3DSIH_TEXDEPTH */ pshader_glsl_texdepth,
4275 /* WINED3DSIH_TEXDP3 */ pshader_glsl_texdp3,
4276 /* WINED3DSIH_TEXDP3TEX */ pshader_glsl_texdp3tex,
4277 /* WINED3DSIH_TEXKILL */ pshader_glsl_texkill,
4278 /* WINED3DSIH_TEXLDD */ NULL,
4279 /* WINED3DSIH_TEXLDL */ shader_glsl_texldl,
4280 /* WINED3DSIH_TEXM3x2DEPTH */ pshader_glsl_texm3x2depth,
4281 /* WINED3DSIH_TEXM3x2PAD */ pshader_glsl_texm3x2pad,
4282 /* WINED3DSIH_TEXM3x2TEX */ pshader_glsl_texm3x2tex,
4283 /* WINED3DSIH_TEXM3x3 */ pshader_glsl_texm3x3,
4284 /* WINED3DSIH_TEXM3x3DIFF */ NULL,
4285 /* WINED3DSIH_TEXM3x3PAD */ pshader_glsl_texm3x3pad,
4286 /* WINED3DSIH_TEXM3x3SPEC */ pshader_glsl_texm3x3spec,
4287 /* WINED3DSIH_TEXM3x3TEX */ pshader_glsl_texm3x3tex,
4288 /* WINED3DSIH_TEXM3x3VSPEC */ pshader_glsl_texm3x3vspec,
4289 /* WINED3DSIH_TEXREG2AR */ pshader_glsl_texreg2ar,
4290 /* WINED3DSIH_TEXREG2GB */ pshader_glsl_texreg2gb,
4291 /* WINED3DSIH_TEXREG2RGB */ pshader_glsl_texreg2rgb,
4294 const shader_backend_t glsl_shader_backend = {
4295 shader_glsl_instruction_handler_table,
4296 shader_glsl_select,
4297 shader_glsl_select_depth_blt,
4298 shader_glsl_deselect_depth_blt,
4299 shader_glsl_update_float_vertex_constants,
4300 shader_glsl_update_float_pixel_constants,
4301 shader_glsl_load_constants,
4302 shader_glsl_load_np2fixup_constants,
4303 shader_glsl_destroy,
4304 shader_glsl_alloc,
4305 shader_glsl_free,
4306 shader_glsl_dirty_const,
4307 shader_glsl_generate_pshader,
4308 shader_glsl_generate_vshader,
4309 shader_glsl_get_caps,
4310 shader_glsl_color_fixup_supported,