advapi32: Implement ConvertSecurityDescriptorToStringSecurityDescriptor[AW].
[wine] / dlls / wined3d / arb_program_shader.c
1 /*
2  * Pixel and vertex shaders implementation using ARB_vertex_program
3  * and ARB_fragment_program GL extensions.
4  *
5  * Copyright 2002-2003 Jason Edmeades
6  * Copyright 2002-2003 Raphael Junqueira
7  * Copyright 2004 Christian Costa
8  * Copyright 2005 Oliver Stieber
9  * Copyright 2006 Ivan Gyurdiev
10  * Copyright 2006 Jason Green
11  * Copyright 2006 Henri Verbeet
12  *
13  * This library is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU Lesser General Public
15  * License as published by the Free Software Foundation; either
16  * version 2.1 of the License, or (at your option) any later version.
17  *
18  * This library is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21  * Lesser General Public License for more details.
22  *
23  * You should have received a copy of the GNU Lesser General Public
24  * License along with this library; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26  */
27
28 #include "config.h"
29
30 #include <math.h>
31 #include <stdio.h>
32
33 #include "wined3d_private.h"
34
35 WINE_DEFAULT_DEBUG_CHANNEL(d3d_shader);
36 WINE_DECLARE_DEBUG_CHANNEL(d3d_constants);
37
38 #define GLINFO_LOCATION      (*gl_info)
39
40 /********************************************************
41  * ARB_[vertex/fragment]_program helper functions follow
42  ********************************************************/
43
44 /** 
45  * Loads floating point constants into the currently set ARB_vertex/fragment_program.
46  * When constant_list == NULL, it will load all the constants.
47  *  
48  * @target_type should be either GL_VERTEX_PROGRAM_ARB (for vertex shaders)
49  *  or GL_FRAGMENT_PROGRAM_ARB (for pixel shaders)
50  */
51 static void shader_arb_load_constantsF(IWineD3DBaseShaderImpl* This, WineD3D_GL_Info *gl_info, GLuint target_type,
52         unsigned int max_constants, float* constants, struct list *constant_list) {
53     constants_entry *constant;
54     local_constant* lconst;
55     DWORD i, j, k;
56     DWORD *idx;
57
58     if (TRACE_ON(d3d_shader)) {
59         LIST_FOR_EACH_ENTRY(constant, constant_list, constants_entry, entry) {
60             idx = constant->idx;
61             j = constant->count;
62             while (j--) {
63                 i = *idx++;
64                 TRACE_(d3d_constants)("Loading constants %i: %f, %f, %f, %f\n", i,
65                         constants[i * 4 + 0], constants[i * 4 + 1],
66                         constants[i * 4 + 2], constants[i * 4 + 3]);
67             }
68         }
69     }
70     /* In 1.X pixel shaders constants are implicitly clamped in the range [-1;1] */
71     if(target_type == GL_FRAGMENT_PROGRAM_ARB &&
72        WINED3DSHADER_VERSION_MAJOR(This->baseShader.hex_version) == 1) {
73         float lcl_const[4];
74         LIST_FOR_EACH_ENTRY(constant, constant_list, constants_entry, entry) {
75             idx = constant->idx;
76             j = constant->count;
77             while (j--) {
78                 i = *idx++;
79                 k = i * 4;
80                 if(constants[k + 0] > 1.0) lcl_const[0] = 1.0;
81                 else if(constants[k + 0] < -1.0) lcl_const[0] = -1.0;
82                 else lcl_const[0] = constants[k + 0];
83
84                 if(constants[k + 1] > 1.0) lcl_const[1] = 1.0;
85                 else if(constants[k + 1] < -1.0) lcl_const[1] = -1.0;
86                 else lcl_const[1] = constants[k + 1];
87
88                 if(constants[k + 2] > 1.0) lcl_const[2] = 1.0;
89                 else if(constants[k + 2] < -1.0) lcl_const[2] = -1.0;
90                 else lcl_const[2] = constants[k + 2];
91
92                 if(constants[k + 3] > 1.0) lcl_const[3] = 1.0;
93                 else if(constants[k + 3] < -1.0) lcl_const[3] = -1.0;
94                 else lcl_const[3] = constants[k + 3];
95
96                 GL_EXTCALL(glProgramEnvParameter4fvARB(target_type, i, lcl_const));
97             }
98         }
99     } else {
100         LIST_FOR_EACH_ENTRY(constant, constant_list, constants_entry, entry) {
101             idx = constant->idx;
102             j = constant->count;
103             while (j--) {
104                 i = *idx++;
105                 GL_EXTCALL(glProgramEnvParameter4fvARB(target_type, i, constants + (i * 4)));
106             }
107         }
108     }
109     checkGLcall("glProgramEnvParameter4fvARB()");
110
111     /* Load immediate constants */
112     if (TRACE_ON(d3d_shader)) {
113         LIST_FOR_EACH_ENTRY(lconst, &This->baseShader.constantsF, local_constant, entry) {
114             GLfloat* values = (GLfloat*)lconst->value;
115             TRACE_(d3d_constants)("Loading local constants %i: %f, %f, %f, %f\n", lconst->idx,
116                     values[0], values[1], values[2], values[3]);
117         }
118     }
119     /* Immediate constants are clamped for 1.X shaders at loading times */
120     LIST_FOR_EACH_ENTRY(lconst, &This->baseShader.constantsF, local_constant, entry) {
121         GL_EXTCALL(glProgramEnvParameter4fvARB(target_type, lconst->idx, (GLfloat*)lconst->value));
122     }
123     checkGLcall("glProgramEnvParameter4fvARB()");
124 }
125
126 /**
127  * Loads the app-supplied constants into the currently set ARB_[vertex/fragment]_programs.
128  * 
129  * We only support float constants in ARB at the moment, so don't 
130  * worry about the Integers or Booleans
131  */
132 void shader_arb_load_constants(
133     IWineD3DDevice* device,
134     char usePixelShader,
135     char useVertexShader) {
136    
137     IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) device; 
138     IWineD3DStateBlockImpl* stateBlock = deviceImpl->stateBlock;
139     WineD3D_GL_Info *gl_info = &deviceImpl->adapter->gl_info;
140
141     if (useVertexShader) {
142         IWineD3DBaseShaderImpl* vshader = (IWineD3DBaseShaderImpl*) stateBlock->vertexShader;
143
144         /* Load DirectX 9 float constants for vertex shader */
145         shader_arb_load_constantsF(vshader, gl_info, GL_VERTEX_PROGRAM_ARB,
146                                    GL_LIMITS(vshader_constantsF),
147                                    stateBlock->vertexShaderConstantF,
148                                    &stateBlock->set_vconstantsF);
149
150         /* Upload the position fixup */
151         GL_EXTCALL(glProgramEnvParameter4fvARB(GL_VERTEX_PROGRAM_ARB, ARB_SHADER_PRIVCONST_POS, deviceImpl->posFixup));
152     }
153
154     if (usePixelShader) {
155
156         IWineD3DBaseShaderImpl* pshader = (IWineD3DBaseShaderImpl*) stateBlock->pixelShader;
157         IWineD3DPixelShaderImpl *psi = (IWineD3DPixelShaderImpl *) pshader;
158
159         /* Load DirectX 9 float constants for pixel shader */
160         shader_arb_load_constantsF(pshader, gl_info, GL_FRAGMENT_PROGRAM_ARB, 
161                                    GL_LIMITS(pshader_constantsF),
162                                    stateBlock->pixelShaderConstantF,
163                                    &stateBlock->set_pconstantsF);
164         if(((IWineD3DPixelShaderImpl *) pshader)->bumpenvmatconst) {
165             /* needsbumpmat stores the stage number from where to load the matrix. bumpenvmatconst stores the
166              * number of the constant to load the matrix into.
167              * The state manager takes care that this function is always called if the bump env matrix changes
168              */
169             float *data = (float *) &stateBlock->textureState[(int) psi->needsbumpmat][WINED3DTSS_BUMPENVMAT00];
170             GL_EXTCALL(glProgramEnvParameter4fvARB(GL_FRAGMENT_PROGRAM_ARB, psi->bumpenvmatconst, data));
171         }
172         if(((IWineD3DPixelShaderImpl *) pshader)->srgb_enabled &&
173            !((IWineD3DPixelShaderImpl *) pshader)->srgb_mode_hardcoded) {
174             float comparison[4];
175             float mul_low[4];
176
177             if(stateBlock->renderState[WINED3DRS_SRGBWRITEENABLE]) {
178                 comparison[0] = srgb_cmp; comparison[1] = srgb_cmp;
179                 comparison[2] = srgb_cmp; comparison[3] = srgb_cmp;
180
181                 mul_low[0] = srgb_mul_low; mul_low[1] = srgb_mul_low;
182                 mul_low[2] = srgb_mul_low; mul_low[3] = srgb_mul_low;
183             } else {
184                 comparison[0] = 1.0 / 0.0; comparison[1] = 1.0 / 0.0;
185                 comparison[2] = 1.0 / 0.0; comparison[3] = 1.0 / 0.0;
186
187                 mul_low[0] = 1.0; mul_low[1] = 1.0;
188                 mul_low[2] = 1.0; mul_low[3] = 1.0;
189             }
190             GL_EXTCALL(glProgramEnvParameter4fvARB(GL_FRAGMENT_PROGRAM_ARB, psi->srgb_cmp_const, comparison));
191             GL_EXTCALL(glProgramEnvParameter4fvARB(GL_FRAGMENT_PROGRAM_ARB, psi->srgb_low_const, mul_low));
192             checkGLcall("Load sRGB correction constants\n");
193         }
194     }
195 }
196
197 /* Generate the variable & register declarations for the ARB_vertex_program output target */
198 void shader_generate_arb_declarations(
199     IWineD3DBaseShader *iface,
200     shader_reg_maps* reg_maps,
201     SHADER_BUFFER* buffer,
202     WineD3D_GL_Info* gl_info) {
203
204     IWineD3DBaseShaderImpl* This = (IWineD3DBaseShaderImpl*) iface;
205     IWineD3DDeviceImpl *device = (IWineD3DDeviceImpl *) This->baseShader.device;
206     DWORD i;
207     char pshader = shader_is_pshader_version(This->baseShader.hex_version);
208     unsigned max_constantsF = min(This->baseShader.limits.constant_float, 
209             (pshader ? GL_LIMITS(pshader_constantsF) : GL_LIMITS(vshader_constantsF)));
210     UINT extra_constants_needed = 0;
211
212     /* Temporary Output register */
213     shader_addline(buffer, "TEMP TMP_OUT;\n");
214
215     for(i = 0; i < This->baseShader.limits.temporary; i++) {
216         if (reg_maps->temporary[i])
217             shader_addline(buffer, "TEMP R%u;\n", i);
218     }
219
220     for (i = 0; i < This->baseShader.limits.address; i++) {
221         if (reg_maps->address[i])
222             shader_addline(buffer, "ADDRESS A%d;\n", i);
223     }
224
225     for(i = 0; i < This->baseShader.limits.texcoord; i++) {
226         if (reg_maps->texcoord[i])
227             shader_addline(buffer,"TEMP T%u;\n", i);
228     }
229
230     /* Texture coordinate registers must be pre-loaded */
231     for (i = 0; i < This->baseShader.limits.texcoord; i++) {
232         if (reg_maps->texcoord[i])
233             shader_addline(buffer, "MOV T%u, fragment.texcoord[%u];\n", i, i);
234     }
235
236     if(reg_maps->bumpmat != -1 /* Only a pshader can use texbem */) {
237         /* If the shader does not use all available constants, use the next free constant to load the bump mapping environment matrix from
238          * the stateblock into the shader. If no constant is available don't load, texbem will then just sample the texture without applying
239          * bump mapping.
240          */
241         if(max_constantsF < GL_LIMITS(pshader_constantsF)) {
242             ((IWineD3DPixelShaderImpl *)This)->bumpenvmatconst = max_constantsF;
243             shader_addline(buffer, "PARAM bumpenvmat = program.env[%d];\n", ((IWineD3DPixelShaderImpl *)This)->bumpenvmatconst);
244         } else {
245             FIXME("No free constant found to load environemnt bump mapping matrix into the shader. texbem instruction will not apply bump mapping\n");
246         }
247         extra_constants_needed += 1;
248     }
249     if(device->stateBlock->renderState[WINED3DRS_SRGBWRITEENABLE] && pshader) {
250         IWineD3DPixelShaderImpl *ps_impl = (IWineD3DPixelShaderImpl *) This;
251         /* If there are 2 constants left to use, use them to pass the sRGB correction values in. This way
252          * srgb write correction can be turned on and off dynamically without recompilation. Otherwise
253          * hardcode them. The drawback of hardcoding is that the shader needs recompilation to turn sRGB
254          * off again
255          */
256         if(max_constantsF + extra_constants_needed + 1 < GL_LIMITS(pshader_constantsF) && FALSE) {
257             /* The idea is that if srgb is enabled, then disabled, the constant loading code
258              * can effectively disabling sRGB correction by passing 1.0 and INF as the multiplication
259              * and comparison constants. If it disables it that way, the shader won't be recompiled
260              * and the code will stay in, so sRGB writing can be turned on again by setting the
261              * constants from the spec
262              */
263             ps_impl->srgb_mode_hardcoded = 0;
264             ps_impl->srgb_low_const = GL_LIMITS(pshader_constantsF) - extra_constants_needed;
265             ps_impl->srgb_cmp_const = GL_LIMITS(pshader_constantsF) - extra_constants_needed - 1;
266             shader_addline(buffer, "PARAM srgb_mul_low = program.env[%d];\n", ps_impl->srgb_low_const);
267             shader_addline(buffer, "PARAM srgb_comparison = program.env[%d];\n", ps_impl->srgb_cmp_const);
268         } else {
269             shader_addline(buffer, "PARAM srgb_mul_low = {%f, %f, %f, 1.0};\n",
270                            srgb_mul_low, srgb_mul_low, srgb_mul_low);
271             shader_addline(buffer, "PARAM srgb_comparison =  {%f, %f, %f, %f};\n",
272                            srgb_cmp, srgb_cmp, srgb_cmp, srgb_cmp);
273             ps_impl->srgb_mode_hardcoded = 1;
274         }
275         /* These can be hardcoded, they do not cause any harm because no fragment will enter the high
276          * path if the comparison value is set to INF
277          */
278         shader_addline(buffer, "PARAM srgb_pow =  {%f, %f, %f, 1.0};\n",
279                        srgb_pow, srgb_pow, srgb_pow);
280         shader_addline(buffer, "PARAM srgb_mul_hi =  {%f, %f, %f, 1.0};\n",
281                        srgb_mul_high, srgb_mul_high, srgb_mul_high);
282         shader_addline(buffer, "PARAM srgb_sub_hi =  {%f, %f, %f, 0.0};\n",
283                        srgb_sub_high, srgb_sub_high, srgb_sub_high);
284         ps_impl->srgb_enabled = 1;
285     } else if(pshader) {
286         IWineD3DPixelShaderImpl *ps_impl = (IWineD3DPixelShaderImpl *) This;
287
288         /* Do not write any srgb fixup into the shader to save shader size and processing time.
289          * As a consequence, we can't toggle srgb write on without recompilation
290          */
291         ps_impl->srgb_enabled = 0;
292         ps_impl->srgb_mode_hardcoded = 1;
293     }
294
295     /* Need to PARAM the environment parameters (constants) so we can use relative addressing */
296     shader_addline(buffer, "PARAM C[%d] = { program.env[0..%d] };\n",
297                    max_constantsF, max_constantsF - 1);
298 }
299
300 static const char * const shift_tab[] = {
301     "dummy",     /*  0 (none) */
302     "coefmul.x", /*  1 (x2)   */
303     "coefmul.y", /*  2 (x4)   */
304     "coefmul.z", /*  3 (x8)   */
305     "coefmul.w", /*  4 (x16)  */
306     "dummy",     /*  5 (x32)  */
307     "dummy",     /*  6 (x64)  */
308     "dummy",     /*  7 (x128) */
309     "dummy",     /*  8 (d256) */
310     "dummy",     /*  9 (d128) */
311     "dummy",     /* 10 (d64)  */
312     "dummy",     /* 11 (d32)  */
313     "coefdiv.w", /* 12 (d16)  */
314     "coefdiv.z", /* 13 (d8)   */
315     "coefdiv.y", /* 14 (d4)   */
316     "coefdiv.x"  /* 15 (d2)   */
317 };
318
319 static void shader_arb_get_write_mask(SHADER_OPCODE_ARG* arg, const DWORD param, char *write_mask) {
320     IWineD3DBaseShaderImpl *This = (IWineD3DBaseShaderImpl *) arg->shader;
321     char *ptr = write_mask;
322     char vshader = shader_is_vshader_version(This->baseShader.hex_version);
323
324     if(vshader && shader_get_regtype(param) == WINED3DSPR_ADDR) {
325         *ptr++ = '.';
326         *ptr++ = 'x';
327     } else if ((param & WINED3DSP_WRITEMASK_ALL) != WINED3DSP_WRITEMASK_ALL) {
328         *ptr++ = '.';
329         if (param & WINED3DSP_WRITEMASK_0) *ptr++ = 'x';
330         if (param & WINED3DSP_WRITEMASK_1) *ptr++ = 'y';
331         if (param & WINED3DSP_WRITEMASK_2) *ptr++ = 'z';
332         if (param & WINED3DSP_WRITEMASK_3) *ptr++ = 'w';
333     }
334
335     *ptr = '\0';
336 }
337
338 static void shader_arb_get_swizzle(const DWORD param, BOOL fixup, char *swizzle_str) {
339     /* For registers of type WINED3DDECLTYPE_D3DCOLOR, data is stored as "bgra",
340      * but addressed as "rgba". To fix this we need to swap the register's x
341      * and z components. */
342     const char *swizzle_chars = fixup ? "zyxw" : "xyzw";
343     char *ptr = swizzle_str;
344
345     /* swizzle bits fields: wwzzyyxx */
346     DWORD swizzle = (param & WINED3DSP_SWIZZLE_MASK) >> WINED3DSP_SWIZZLE_SHIFT;
347     DWORD swizzle_x = swizzle & 0x03;
348     DWORD swizzle_y = (swizzle >> 2) & 0x03;
349     DWORD swizzle_z = (swizzle >> 4) & 0x03;
350     DWORD swizzle_w = (swizzle >> 6) & 0x03;
351
352     /* If the swizzle is the default swizzle (ie, "xyzw"), we don't need to
353      * generate a swizzle string. Unless we need to our own swizzling. */
354     if ((WINED3DSP_NOSWIZZLE >> WINED3DSP_SWIZZLE_SHIFT) != swizzle || fixup) {
355         *ptr++ = '.';
356         if (swizzle_x == swizzle_y && swizzle_x == swizzle_z && swizzle_x == swizzle_w) {
357             *ptr++ = swizzle_chars[swizzle_x];
358         } else {
359             *ptr++ = swizzle_chars[swizzle_x];
360             *ptr++ = swizzle_chars[swizzle_y];
361             *ptr++ = swizzle_chars[swizzle_z];
362             *ptr++ = swizzle_chars[swizzle_w];
363         }
364     }
365
366     *ptr = '\0';
367 }
368
369 static void pshader_get_register_name(
370     const DWORD param, char* regstr) {
371
372     DWORD reg = param & WINED3DSP_REGNUM_MASK;
373     DWORD regtype = shader_get_regtype(param);
374
375     switch (regtype) {
376     case WINED3DSPR_TEMP:
377         sprintf(regstr, "R%u", reg);
378     break;
379     case WINED3DSPR_INPUT:
380         if (reg==0) {
381             strcpy(regstr, "fragment.color.primary");
382         } else {
383             strcpy(regstr, "fragment.color.secondary");
384         }
385     break;
386     case WINED3DSPR_CONST:
387         sprintf(regstr, "C[%u]", reg);
388     break;
389     case WINED3DSPR_TEXTURE: /* case WINED3DSPR_ADDR: */
390         sprintf(regstr,"T%u", reg);
391     break;
392     case WINED3DSPR_COLOROUT:
393         if (reg == 0)
394             sprintf(regstr, "TMP_COLOR");
395         else {
396             /* TODO: See GL_ARB_draw_buffers */
397             FIXME("Unsupported write to render target %u\n", reg);
398             sprintf(regstr, "unsupported_register");
399         }
400     break;
401     case WINED3DSPR_DEPTHOUT:
402         sprintf(regstr, "result.depth");
403     break;
404     case WINED3DSPR_ATTROUT:
405         sprintf(regstr, "oD[%u]", reg);
406     break;
407     case WINED3DSPR_TEXCRDOUT:
408         sprintf(regstr, "oT[%u]", reg);
409     break;
410     default:
411         FIXME("Unhandled register name Type(%d)\n", regtype);
412         sprintf(regstr, "unrecognized_register");
413     break;
414     }
415 }
416
417 /* TODO: merge with pixel shader */
418 static void vshader_program_add_param(SHADER_OPCODE_ARG *arg, const DWORD param, BOOL is_input, char *hwLine) {
419
420   IWineD3DVertexShaderImpl* This = (IWineD3DVertexShaderImpl*) arg->shader;
421
422   /* oPos, oFog and oPts in D3D */
423   static const char * const hwrastout_reg_names[] = { "TMP_OUT", "result.fogcoord", "result.pointsize" };
424
425   DWORD reg = param & WINED3DSP_REGNUM_MASK;
426   DWORD regtype = shader_get_regtype(param);
427   char  tmpReg[255];
428   BOOL is_color = FALSE;
429
430   if ((param & WINED3DSP_SRCMOD_MASK) == WINED3DSPSM_NEG) {
431       strcat(hwLine, " -");
432   } else {
433       strcat(hwLine, " ");
434   }
435
436   switch (regtype) {
437   case WINED3DSPR_TEMP:
438     sprintf(tmpReg, "R%u", reg);
439     strcat(hwLine, tmpReg);
440     break;
441   case WINED3DSPR_INPUT:
442
443     if (vshader_input_is_color((IWineD3DVertexShader*) This, reg))
444         is_color = TRUE;
445
446     sprintf(tmpReg, "vertex.attrib[%u]", reg);
447     strcat(hwLine, tmpReg);
448     break;
449   case WINED3DSPR_CONST:
450     sprintf(tmpReg, "C[%s%u]", (param & WINED3DSHADER_ADDRMODE_RELATIVE) ? "A0.x + " : "", reg);
451     strcat(hwLine, tmpReg);
452     break;
453   case WINED3DSPR_ADDR: /*case D3DSPR_TEXTURE:*/
454     sprintf(tmpReg, "A%u", reg);
455     strcat(hwLine, tmpReg);
456     break;
457   case WINED3DSPR_RASTOUT:
458     sprintf(tmpReg, "%s", hwrastout_reg_names[reg]);
459     strcat(hwLine, tmpReg);
460     break;
461   case WINED3DSPR_ATTROUT:
462     if (reg==0) {
463        strcat(hwLine, "result.color.primary");
464     } else {
465        strcat(hwLine, "result.color.secondary");
466     }
467     break;
468   case WINED3DSPR_TEXCRDOUT:
469     sprintf(tmpReg, "result.texcoord[%u]", reg);
470     strcat(hwLine, tmpReg);
471     break;
472   default:
473     FIXME("Unknown reg type %d %d\n", regtype, reg);
474     strcat(hwLine, "unrecognized_register");
475     break;
476   }
477
478   if (!is_input) {
479     char write_mask[6];
480     shader_arb_get_write_mask(arg, param, write_mask);
481     strcat(hwLine, write_mask);
482   } else {
483     char swizzle[6];
484     shader_arb_get_swizzle(param, is_color, swizzle);
485     strcat(hwLine, swizzle);
486   }
487 }
488
489 static void shader_hw_sample(SHADER_OPCODE_ARG* arg, DWORD sampler_idx, const char *dst_str, const char *coord_reg, BOOL projected, BOOL bias) {
490     SHADER_BUFFER* buffer = arg->buffer;
491     DWORD sampler_type = arg->reg_maps->samplers[sampler_idx] & WINED3DSP_TEXTURETYPE_MASK;
492     const char *tex_type;
493
494     switch(sampler_type) {
495         case WINED3DSTT_1D:
496             tex_type = "1D";
497             break;
498
499         case WINED3DSTT_2D:
500             tex_type = "2D";
501             break;
502
503         case WINED3DSTT_VOLUME:
504             tex_type = "3D";
505             break;
506
507         case WINED3DSTT_CUBE:
508             tex_type = "CUBE";
509             break;
510
511         default:
512             ERR("Unexpected texture type %d\n", sampler_type);
513             tex_type = "";
514     }
515
516     if (bias) {
517         /* Shouldn't be possible, but let's check for it */
518         if(projected) FIXME("Biased and Projected texture sampling\n");
519         /* TXB takes the 4th component of the source vector automatically, as d3d. Nothing more to do */
520         shader_addline(buffer, "TXB %s, %s, texture[%u], %s;\n", dst_str, coord_reg, sampler_idx, tex_type);
521     } else if (projected) {
522         shader_addline(buffer, "TXP %s, %s, texture[%u], %s;\n", dst_str, coord_reg, sampler_idx, tex_type);
523     } else {
524         shader_addline(buffer, "TEX %s, %s, texture[%u], %s;\n", dst_str, coord_reg, sampler_idx, tex_type);
525     }
526 }
527
528 static void shader_arb_color_correction(SHADER_OPCODE_ARG* arg) {
529     IWineD3DBaseShaderImpl* shader = (IWineD3DBaseShaderImpl*) arg->shader;
530     IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) shader->baseShader.device;
531     WineD3D_GL_Info *gl_info = &deviceImpl->adapter->gl_info;
532     WINED3DFORMAT fmt;
533     WINED3DFORMAT conversion_group;
534     IWineD3DBaseTextureImpl *texture;
535     UINT i;
536     BOOL recorded = FALSE;
537     DWORD sampler_idx;
538     DWORD hex_version = shader->baseShader.hex_version;
539     char reg[256];
540     char writemask[6];
541
542     switch(arg->opcode->opcode) {
543         case WINED3DSIO_TEX:
544             if (hex_version < WINED3DPS_VERSION(2,0)) {
545                 sampler_idx = arg->dst & WINED3DSP_REGNUM_MASK;
546             } else {
547                 sampler_idx = arg->src[1] & WINED3DSP_REGNUM_MASK;
548             }
549             break;
550
551         case WINED3DSIO_TEXLDL:
552             FIXME("Add color fixup for vertex texture WINED3DSIO_TEXLDL\n");
553             return;
554
555         case WINED3DSIO_TEXDP3TEX:
556         case WINED3DSIO_TEXM3x3TEX:
557         case WINED3DSIO_TEXM3x3SPEC:
558         case WINED3DSIO_TEXM3x3VSPEC:
559         case WINED3DSIO_TEXBEM:
560         case WINED3DSIO_TEXREG2AR:
561         case WINED3DSIO_TEXREG2GB:
562         case WINED3DSIO_TEXREG2RGB:
563             sampler_idx = arg->dst & WINED3DSP_REGNUM_MASK;
564             break;
565
566         default:
567             /* Not a texture sampling instruction, nothing to do */
568             return;
569     };
570
571     texture = (IWineD3DBaseTextureImpl *) deviceImpl->stateBlock->textures[sampler_idx];
572     if(texture) {
573         fmt = texture->resource.format;
574         conversion_group = texture->baseTexture.shader_conversion_group;
575     } else {
576         fmt = WINED3DFMT_UNKNOWN;
577         conversion_group = WINED3DFMT_UNKNOWN;
578     }
579
580     /* before doing anything, record the sampler with the format in the format conversion list,
581      * but check if it's not there already
582      */
583     for(i = 0; i < shader->baseShader.num_sampled_samplers; i++) {
584         if(shader->baseShader.sampled_samplers[i] == sampler_idx) {
585             recorded = TRUE;
586         }
587     }
588     if(!recorded) {
589         shader->baseShader.sampled_samplers[shader->baseShader.num_sampled_samplers] = sampler_idx;
590         shader->baseShader.num_sampled_samplers++;
591         shader->baseShader.sampled_format[sampler_idx] = conversion_group;
592     }
593
594     pshader_get_register_name(arg->dst, reg);
595     shader_arb_get_write_mask(arg, arg->dst, writemask);
596     if(strlen(writemask) == 0) strcpy(writemask, ".xyzw");
597
598     switch(fmt) {
599         case WINED3DFMT_V8U8:
600         case WINED3DFMT_V16U16:
601             if(GL_SUPPORT(NV_TEXTURE_SHADER) ||
602                (GL_SUPPORT(ATI_ENVMAP_BUMPMAP) && fmt == WINED3DFMT_V8U8)) {
603 #if 0
604                 /* The 3rd channel returns 1.0 in d3d, but 0.0 in gl. Fix this while we're at it :-)
605                  * disabled until an application that needs it is found because it causes unneeded
606                  * shader recompilation in some game
607                  */
608                 if(strlen(writemask) >= 4) {
609                     shader_addline(arg->buffer, "MOV %s.%c, one.z;\n", reg, writemask[3]);
610                 }
611 #endif
612             } else {
613                 /* Correct the sign, but leave the blue as it is - it was loaded correctly already
614                  * ARB shaders are a bit picky wrt writemasks and swizzles. If we're free to scale
615                  * all registers, do so, this saves an instruction.
616                  */
617                 if(strlen(writemask) >= 5) {
618                     shader_addline(arg->buffer, "MAD %s, %s, coefmul.x, -one;\n", reg, reg);
619                 } else if(strlen(writemask) >= 3) {
620                     shader_addline(arg->buffer, "MAD %s.%c, %s.%c, coefmul.x, -one;\n",
621                                    reg, writemask[1],
622                                    reg, writemask[1]);
623                     shader_addline(arg->buffer, "MAD %s.%c, %s.%c, coefmul.x, -one;\n",
624                                    reg, writemask[2],
625                                    reg, writemask[2]);
626                 } else if(strlen(writemask) == 2) {
627                     shader_addline(arg->buffer, "MAD %s.%c, %s.%c, coefmul.x, -one;\n", reg, writemask[1],
628                                    reg, writemask[1]);
629                 }
630             }
631             break;
632
633         case WINED3DFMT_X8L8V8U8:
634             if(!GL_SUPPORT(NV_TEXTURE_SHADER)) {
635                 /* Red and blue are the signed channels, fix them up; Blue(=L) is correct already,
636                  * and a(X) is always 1.0. Cannot do a full conversion due to L(blue)
637                  */
638                 if(strlen(writemask) >= 3) {
639                     shader_addline(arg->buffer, "MAD %s.%c, %s.%c, coefmul.x, -one;\n",
640                                    reg, writemask[1],
641                                    reg, writemask[1]);
642                     shader_addline(arg->buffer, "MAD %s.%c, %s.%c, coefmul.x, -one;\n",
643                                    reg, writemask[2],
644                                    reg, writemask[2]);
645                 } else if(strlen(writemask) == 2) {
646                     shader_addline(arg->buffer, "MAD %s.%c, %s.%c, coefmul.x, -one;\n",
647                                    reg, writemask[1],
648                                    reg, writemask[1]);
649                 }
650             }
651             break;
652
653         case WINED3DFMT_L6V5U5:
654             if(!GL_SUPPORT(NV_TEXTURE_SHADER)) {
655                 if(strlen(writemask) >= 4) {
656                     /* Swap y and z (U and L), and do a sign conversion on x and the new y(V and U) */
657                     shader_addline(arg->buffer, "MOV TMP.g, %s.%c;\n",
658                                    reg, writemask[2]);
659                     shader_addline(arg->buffer, "MAD %s.%c%c, %s.%c%c, coefmul.x, -one;\n",
660                                    reg, writemask[1], writemask[1],
661                                    reg, writemask[1], writemask[3]);
662                     shader_addline(arg->buffer, "MOV %s.%c, TMP.g;\n", reg,
663                                    writemask[3]);
664                 } else if(strlen(writemask) == 3) {
665                     /* This is bad: We have VL, but we need VU */
666                     FIXME("2 components sampled from a converted L6V5U5 texture\n");
667                 } else {
668                     shader_addline(arg->buffer, "MAD %s.%c, %s.%c, coefmul.x, -one;\n",
669                                    reg, writemask[1],
670                                    reg, writemask[1]);
671                 }
672             }
673             break;
674
675         case WINED3DFMT_Q8W8V8U8:
676             if(!GL_SUPPORT(NV_TEXTURE_SHADER)) {
677                 /* Correct the sign in all channels */
678                 switch(strlen(writemask)) {
679                     case 4:
680                         shader_addline(arg->buffer, "MAD %s.%c, %s.%c, coefmul.x, -one;\n",
681                                        reg, writemask[3],
682                                        reg, writemask[3]);
683                         /* drop through */
684                     case 3:
685                         shader_addline(arg->buffer, "MAD %s.%c, %s.%c, coefmul.x, -one;\n",
686                                        reg, writemask[2],
687                                        reg, writemask[2]);
688                         /* drop through */
689                     case 2:
690                         shader_addline(arg->buffer, "MAD %s.%c, %s.%c, coefmul.x, -one;\n",
691                                        reg, writemask[1],
692                                        reg, writemask[1]);
693                         break;
694
695                         /* Should not occur, since it's at minimum '.' and a letter */
696                     case 1:
697                         ERR("Unexpected writemask: \"%s\"\n", writemask);
698                         break;
699
700                     case 5:
701                     default:
702                         shader_addline(arg->buffer, "MAD %s, %s, coefmul.x, -one;\n", reg, reg);
703                 }
704             }
705             break;
706
707             /* stupid compiler */
708         default:
709             break;
710     }
711 }
712
713
714 static void pshader_gen_input_modifier_line (
715     SHADER_BUFFER* buffer,
716     const DWORD instr,
717     int tmpreg,
718     char *outregstr) {
719
720     /* Generate a line that does the input modifier computation and return the input register to use */
721     char regstr[256];
722     char swzstr[20];
723     int insert_line;
724
725     /* Assume a new line will be added */
726     insert_line = 1;
727
728     /* Get register name */
729     pshader_get_register_name(instr, regstr);
730     shader_arb_get_swizzle(instr, FALSE, swzstr);
731
732     switch (instr & WINED3DSP_SRCMOD_MASK) {
733     case WINED3DSPSM_NONE:
734         sprintf(outregstr, "%s%s", regstr, swzstr);
735         insert_line = 0;
736         break;
737     case WINED3DSPSM_NEG:
738         sprintf(outregstr, "-%s%s", regstr, swzstr);
739         insert_line = 0;
740         break;
741     case WINED3DSPSM_BIAS:
742         shader_addline(buffer, "ADD T%c, %s, -coefdiv.x;\n", 'A' + tmpreg, regstr);
743         break;
744     case WINED3DSPSM_BIASNEG:
745         shader_addline(buffer, "ADD T%c, -%s, coefdiv.x;\n", 'A' + tmpreg, regstr);
746         break;
747     case WINED3DSPSM_SIGN:
748         shader_addline(buffer, "MAD T%c, %s, coefmul.x, -one.x;\n", 'A' + tmpreg, regstr);
749         break;
750     case WINED3DSPSM_SIGNNEG:
751         shader_addline(buffer, "MAD T%c, %s, -coefmul.x, one.x;\n", 'A' + tmpreg, regstr);
752         break;
753     case WINED3DSPSM_COMP:
754         shader_addline(buffer, "SUB T%c, one.x, %s;\n", 'A' + tmpreg, regstr);
755         break;
756     case WINED3DSPSM_X2:
757         shader_addline(buffer, "ADD T%c, %s, %s;\n", 'A' + tmpreg, regstr, regstr);
758         break;
759     case WINED3DSPSM_X2NEG:
760         shader_addline(buffer, "ADD T%c, -%s, -%s;\n", 'A' + tmpreg, regstr, regstr);
761         break;
762     case WINED3DSPSM_DZ:
763         shader_addline(buffer, "RCP T%c, %s.z;\n", 'A' + tmpreg, regstr);
764         shader_addline(buffer, "MUL T%c, %s, T%c;\n", 'A' + tmpreg, regstr, 'A' + tmpreg);
765         break;
766     case WINED3DSPSM_DW:
767         shader_addline(buffer, "RCP T%c, %s.w;\n", 'A' + tmpreg, regstr);
768         shader_addline(buffer, "MUL T%c, %s, T%c;\n", 'A' + tmpreg, regstr, 'A' + tmpreg);
769         break;
770     default:
771         sprintf(outregstr, "%s%s", regstr, swzstr);
772         insert_line = 0;
773     }
774
775     /* Return modified or original register, with swizzle */
776     if (insert_line)
777         sprintf(outregstr, "T%c%s", 'A' + tmpreg, swzstr);
778 }
779
780 static inline void pshader_gen_output_modifier_line(
781     SHADER_BUFFER* buffer,
782     int saturate,
783     char *write_mask,
784     int shift,
785     char *regstr) {
786
787     /* Generate a line that does the output modifier computation */
788     shader_addline(buffer, "MUL%s %s%s, %s, %s;\n", saturate ? "_SAT" : "",
789         regstr, write_mask, regstr, shift_tab[shift]);
790 }
791
792 void pshader_hw_bem(SHADER_OPCODE_ARG* arg) {
793     IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
794
795     SHADER_BUFFER* buffer = arg->buffer;
796     char dst_name[50];
797     char src_name[2][50];
798     char dst_wmask[20];
799
800     pshader_get_register_name(arg->dst, dst_name);
801     shader_arb_get_write_mask(arg, arg->dst, dst_wmask);
802     strcat(dst_name, dst_wmask);
803
804     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src_name[0]);
805     pshader_gen_input_modifier_line(buffer, arg->src[1], 1, src_name[1]);
806
807     if(This->bumpenvmatconst != -1) {
808         /* Sampling the perturbation map in Tsrc was done already, including the signedness correction if needed */
809         shader_addline(buffer, "SWZ TMP2, bumpenvmat, x, z, 0, 0;\n");
810         shader_addline(buffer, "DP3 TMP.r, TMP2, %s;\n", src_name[1]);
811         shader_addline(buffer, "SWZ TMP2, bumpenvmat, y, w, 0, 0;\n");
812         shader_addline(buffer, "DP3 TMP.g, TMP2, %s;\n", src_name[1]);
813
814         shader_addline(buffer, "ADD %s, %s, TMP;\n", dst_name, src_name[0]);
815     } else {
816         shader_addline(buffer, "MOV %s, %s;\n", dst_name, src_name[0]);
817     }
818 }
819
820 void pshader_hw_cnd(SHADER_OPCODE_ARG* arg) {
821
822     IWineD3DBaseShaderImpl* shader = (IWineD3DBaseShaderImpl*) arg->shader;
823     SHADER_BUFFER* buffer = arg->buffer;
824     char dst_wmask[20];
825     char dst_name[50];
826     char src_name[3][50];
827     BOOL sat = (arg->dst & WINED3DSP_DSTMOD_MASK) & WINED3DSPDM_SATURATE;
828     DWORD shift = (arg->dst & WINED3DSP_DSTSHIFT_MASK) >> WINED3DSP_DSTSHIFT_SHIFT;
829
830     /* FIXME: support output modifiers */
831
832     /* Handle output register */
833     pshader_get_register_name(arg->dst, dst_name);
834     shader_arb_get_write_mask(arg, arg->dst, dst_wmask);
835
836     /* Generate input register names (with modifiers) */
837     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src_name[0]);
838     pshader_gen_input_modifier_line(buffer, arg->src[1], 1, src_name[1]);
839     pshader_gen_input_modifier_line(buffer, arg->src[2], 2, src_name[2]);
840
841     /* The coissue flag changes the semantic of the cnd instruction in <= 1.3 shaders */
842     if (shader->baseShader.hex_version <= WINED3DPS_VERSION(1, 3) &&
843         arg->opcode_token & WINED3DSI_COISSUE) {
844         shader_addline(buffer, "MOV%s %s%s, %s;\n", sat ? "_SAT" : "", dst_name, dst_wmask, src_name[1]);
845     } else {
846         shader_addline(buffer, "ADD TMP, -%s, coefdiv.x;\n", src_name[0]);
847         shader_addline(buffer, "CMP%s %s%s, TMP, %s, %s;\n",
848                                 sat ? "_SAT" : "", dst_name, dst_wmask, src_name[1], src_name[2]);
849     }
850     if (shift != 0)
851         pshader_gen_output_modifier_line(buffer, FALSE, dst_wmask, shift, dst_name);
852 }
853
854 void pshader_hw_cmp(SHADER_OPCODE_ARG* arg) {
855
856     SHADER_BUFFER* buffer = arg->buffer;
857     char dst_wmask[20];
858     char dst_name[50];
859     char src_name[3][50];
860
861     /* FIXME: support output modifiers */
862
863     /* Handle output register */
864     pshader_get_register_name(arg->dst, dst_name);
865     shader_arb_get_write_mask(arg, arg->dst, dst_wmask);
866     strcat(dst_name, dst_wmask);
867
868     /* Generate input register names (with modifiers) */
869     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src_name[0]);
870     pshader_gen_input_modifier_line(buffer, arg->src[1], 1, src_name[1]);
871     pshader_gen_input_modifier_line(buffer, arg->src[2], 2, src_name[2]);
872
873     shader_addline(buffer, "CMP %s, %s, %s, %s;\n", dst_name,
874         src_name[0], src_name[2], src_name[1]);
875 }
876
877 /* Map the opcode 1-to-1 to the GL code */
878 void pshader_hw_map2gl(SHADER_OPCODE_ARG* arg) {
879
880      CONST SHADER_OPCODE* curOpcode = arg->opcode;
881      SHADER_BUFFER* buffer = arg->buffer;
882      DWORD dst = arg->dst;
883      DWORD* src = arg->src;
884
885      unsigned int i;
886      char tmpLine[256];
887
888      /* Output token related */
889      char output_rname[256];
890      char output_wmask[20];
891      BOOL saturate = FALSE;
892      BOOL centroid = FALSE;
893      BOOL partialprecision = FALSE;
894      DWORD shift;
895
896      strcpy(tmpLine, curOpcode->glname);
897
898      /* Process modifiers */
899      if (0 != (dst & WINED3DSP_DSTMOD_MASK)) {
900          DWORD mask = dst & WINED3DSP_DSTMOD_MASK;
901
902          saturate = mask & WINED3DSPDM_SATURATE;
903          centroid = mask & WINED3DSPDM_MSAMPCENTROID;
904          partialprecision = mask & WINED3DSPDM_PARTIALPRECISION;
905          mask &= ~(WINED3DSPDM_MSAMPCENTROID | WINED3DSPDM_PARTIALPRECISION | WINED3DSPDM_SATURATE);
906          if (mask)
907             FIXME("Unrecognized modifier(%#x)\n", mask >> WINED3DSP_DSTMOD_SHIFT);
908
909          if (centroid)
910              FIXME("Unhandled modifier(%#x)\n", mask >> WINED3DSP_DSTMOD_SHIFT);
911      }
912      shift = (dst & WINED3DSP_DSTSHIFT_MASK) >> WINED3DSP_DSTSHIFT_SHIFT;
913
914       /* Generate input and output registers */
915       if (curOpcode->num_params > 0) {
916           char operands[4][100];
917
918           /* Generate input register names (with modifiers) */
919           for (i = 1; i < curOpcode->num_params; ++i)
920               pshader_gen_input_modifier_line(buffer, src[i-1], i-1, operands[i]);
921
922           /* Handle output register */
923           pshader_get_register_name(dst, output_rname);
924           strcpy(operands[0], output_rname);
925           shader_arb_get_write_mask(arg, dst, output_wmask);
926           strcat(operands[0], output_wmask);
927
928           if (saturate && (shift == 0))
929              strcat(tmpLine, "_SAT");
930           strcat(tmpLine, " ");
931           strcat(tmpLine, operands[0]);
932           for (i = 1; i < curOpcode->num_params; i++) {
933               strcat(tmpLine, ", ");
934               strcat(tmpLine, operands[i]);
935           }
936           strcat(tmpLine,";\n");
937           shader_addline(buffer, tmpLine);
938
939           /* A shift requires another line. */
940           if (shift != 0)
941               pshader_gen_output_modifier_line(buffer, saturate, output_wmask, shift, output_rname);
942       }
943 }
944
945 void pshader_hw_texkill(SHADER_OPCODE_ARG* arg) {
946     IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
947     DWORD hex_version = This->baseShader.hex_version;
948     SHADER_BUFFER* buffer = arg->buffer;
949     char reg_dest[40];
950
951     /* No swizzles are allowed in d3d's texkill. PS 1.x ignores the 4th component as documented,
952      * but >= 2.0 honors it(undocumented, but tested by the d3d9 testsuit)
953      */
954     pshader_get_register_name(arg->dst, reg_dest);
955
956     if(hex_version >= WINED3DPS_VERSION(2,0)) {
957         /* The arb backend doesn't claim ps 2.0 support, but try to eat what the app feeds to us */
958         shader_addline(buffer, "KIL %s;\n", reg_dest);
959     } else {
960         /* ARB fp doesn't like swizzles on the parameter of the KIL instruction. To mask the 4th component,
961          * copy the register into our general purpose TMP variable, overwrite .w and pass TMP to KIL
962          */
963         shader_addline(buffer, "MOV TMP, %s;\n", reg_dest);
964         shader_addline(buffer, "MOV TMP.w, one.w;\n", reg_dest);
965         shader_addline(buffer, "KIL TMP;\n", reg_dest);
966     }
967 }
968
969 void pshader_hw_tex(SHADER_OPCODE_ARG* arg) {
970     IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
971     IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
972
973     DWORD dst = arg->dst;
974     DWORD* src = arg->src;
975     SHADER_BUFFER* buffer = arg->buffer;
976     DWORD hex_version = This->baseShader.hex_version;
977     BOOL projected = FALSE, bias = FALSE;
978
979     char reg_dest[40];
980     char reg_coord[40];
981     DWORD reg_dest_code;
982     DWORD reg_sampler_code;
983
984     /* All versions have a destination register */
985     reg_dest_code = dst & WINED3DSP_REGNUM_MASK;
986     pshader_get_register_name(dst, reg_dest);
987
988     /* 1.0-1.3: Use destination register as coordinate source.
989        1.4+: Use provided coordinate source register. */
990    if (hex_version < WINED3DPS_VERSION(1,4))
991       strcpy(reg_coord, reg_dest);
992    else
993       pshader_gen_input_modifier_line(buffer, src[0], 0, reg_coord);
994
995   /* 1.0-1.4: Use destination register number as texture code.
996      2.0+: Use provided sampler number as texure code. */
997   if (hex_version < WINED3DPS_VERSION(2,0))
998      reg_sampler_code = reg_dest_code;
999   else
1000      reg_sampler_code = src[1] & WINED3DSP_REGNUM_MASK;
1001
1002   /* projection flag:
1003    * 1.1, 1.2, 1.3: Use WINED3DTSS_TEXTURETRANSFORMFLAGS
1004    * 1.4: Use WINED3DSPSM_DZ or WINED3DSPSM_DW on src[0]
1005    * 2.0+: Use WINED3DSI_TEXLD_PROJECT on the opcode
1006    */
1007   if(hex_version < WINED3DPS_VERSION(1,4)) {
1008       DWORD flags = 0;
1009       if(reg_sampler_code < MAX_TEXTURES) {
1010         flags = deviceImpl->stateBlock->textureState[reg_sampler_code][WINED3DTSS_TEXTURETRANSFORMFLAGS];
1011       }
1012       if (flags & WINED3DTTFF_PROJECTED) {
1013           projected = TRUE;
1014       }
1015   } else if(hex_version < WINED3DPS_VERSION(2,0)) {
1016       DWORD src_mod = arg->src[0] & WINED3DSP_SRCMOD_MASK;
1017       if (src_mod == WINED3DSPSM_DZ) {
1018           projected = TRUE;
1019       } else if(src_mod == WINED3DSPSM_DW) {
1020           projected = TRUE;
1021       }
1022   } else {
1023       if(arg->opcode_token & WINED3DSI_TEXLD_PROJECT) {
1024           projected = TRUE;
1025       }
1026       if(arg->opcode_token & WINED3DSI_TEXLD_BIAS) {
1027           bias = TRUE;
1028       }
1029   }
1030   shader_hw_sample(arg, reg_sampler_code, reg_dest, reg_coord, projected, bias);
1031 }
1032
1033 void pshader_hw_texcoord(SHADER_OPCODE_ARG* arg) {
1034
1035     IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
1036     DWORD dst = arg->dst;
1037     SHADER_BUFFER* buffer = arg->buffer;
1038     DWORD hex_version = This->baseShader.hex_version;
1039
1040     char tmp[20];
1041     shader_arb_get_write_mask(arg, dst, tmp);
1042     if (hex_version != WINED3DPS_VERSION(1,4)) {
1043         DWORD reg = dst & WINED3DSP_REGNUM_MASK;
1044         shader_addline(buffer, "MOV_SAT T%u%s, fragment.texcoord[%u];\n", reg, tmp, reg);
1045     } else {
1046         DWORD reg1 = dst & WINED3DSP_REGNUM_MASK;
1047         char reg_src[40];
1048
1049         pshader_gen_input_modifier_line(buffer, arg->src[0], 0, reg_src);
1050         shader_addline(buffer, "MOV R%u%s, %s;\n", reg1, tmp, reg_src);
1051    }
1052 }
1053
1054 void pshader_hw_texreg2ar(SHADER_OPCODE_ARG* arg) {
1055
1056      SHADER_BUFFER* buffer = arg->buffer;
1057      IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
1058      IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
1059      DWORD flags;
1060
1061      DWORD reg1 = arg->dst & WINED3DSP_REGNUM_MASK;
1062      DWORD reg2 = arg->src[0] & WINED3DSP_REGNUM_MASK;
1063      char dst_str[8];
1064
1065      sprintf(dst_str, "T%u", reg1);
1066      shader_addline(buffer, "MOV TMP.r, T%u.a;\n", reg2);
1067      shader_addline(buffer, "MOV TMP.g, T%u.r;\n", reg2);
1068      flags = reg1 < MAX_TEXTURES ? deviceImpl->stateBlock->textureState[reg1][WINED3DTSS_TEXTURETRANSFORMFLAGS] : 0;
1069      shader_hw_sample(arg, reg1, dst_str, "TMP", flags & WINED3DTTFF_PROJECTED, FALSE);
1070 }
1071
1072 void pshader_hw_texreg2gb(SHADER_OPCODE_ARG* arg) {
1073
1074      SHADER_BUFFER* buffer = arg->buffer;
1075      IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
1076      IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
1077      DWORD flags;
1078
1079      DWORD reg1 = arg->dst & WINED3DSP_REGNUM_MASK;
1080      DWORD reg2 = arg->src[0] & WINED3DSP_REGNUM_MASK;
1081      char dst_str[8];
1082
1083      sprintf(dst_str, "T%u", reg1);
1084      shader_addline(buffer, "MOV TMP.r, T%u.g;\n", reg2);
1085      shader_addline(buffer, "MOV TMP.g, T%u.b;\n", reg2);
1086      flags = reg1 < MAX_TEXTURES ? deviceImpl->stateBlock->textureState[reg1][WINED3DTSS_TEXTURETRANSFORMFLAGS] : 0;
1087      shader_hw_sample(arg, reg1, dst_str, "TMP", FALSE, FALSE);
1088 }
1089
1090 void pshader_hw_texbem(SHADER_OPCODE_ARG* arg) {
1091     IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
1092
1093     DWORD dst = arg->dst;
1094     DWORD src = arg->src[0] & WINED3DSP_REGNUM_MASK;
1095     SHADER_BUFFER* buffer = arg->buffer;
1096
1097     char reg_coord[40];
1098     DWORD reg_dest_code;
1099
1100     /* All versions have a destination register */
1101     reg_dest_code = dst & WINED3DSP_REGNUM_MASK;
1102     /* Can directly use the name because texbem is only valid for <= 1.3 shaders */
1103     pshader_get_register_name(dst, reg_coord);
1104
1105     if(This->bumpenvmatconst != -1) {
1106         /* Sampling the perturbation map in Tsrc was done already, including the signedness correction if needed */
1107
1108         shader_addline(buffer, "SWZ TMP2, bumpenvmat, x, z, 0, 0;\n");
1109         shader_addline(buffer, "DP3 TMP.r, TMP2, T%u;\n", src);
1110         shader_addline(buffer, "SWZ TMP2, bumpenvmat, y, w, 0, 0;\n");
1111         shader_addline(buffer, "DP3 TMP.g, TMP2, T%u;\n", src);
1112
1113         /* with projective textures, texbem only divides the static texture coord, not the displacement,
1114          * so we can't let the GL handle this.
1115          */
1116         if (((IWineD3DDeviceImpl*) This->baseShader.device)->stateBlock->textureState[reg_dest_code][WINED3DTSS_TEXTURETRANSFORMFLAGS]
1117               & WINED3DTTFF_PROJECTED) {
1118             shader_addline(buffer, "RCP TMP2.a, %s.a;\n", reg_coord);
1119             shader_addline(buffer, "MUL TMP2.rg, %s, TMP2.a;\n", reg_coord);
1120             shader_addline(buffer, "ADD TMP.rg, TMP, TMP2;\n");
1121         } else {
1122             shader_addline(buffer, "ADD TMP.rg, TMP, %s;\n", reg_coord);
1123         }
1124
1125         shader_hw_sample(arg, reg_dest_code, reg_coord, "TMP", FALSE, FALSE);
1126     } else {
1127         DWORD tf;
1128         if(reg_dest_code < MAX_TEXTURES) {
1129             tf = ((IWineD3DDeviceImpl*) This->baseShader.device)->stateBlock->textureState[reg_dest_code][WINED3DTSS_TEXTURETRANSFORMFLAGS];
1130         } else {
1131             tf = 0;
1132         }
1133         /* Without a bump matrix loaded, just sample with the unmodified coordinates */
1134         shader_hw_sample(arg, reg_dest_code, reg_coord, reg_coord, tf & WINED3DTTFF_PROJECTED, FALSE);
1135     }
1136 }
1137
1138 void pshader_hw_texm3x2pad(SHADER_OPCODE_ARG* arg) {
1139
1140     DWORD reg = arg->dst & WINED3DSP_REGNUM_MASK;
1141     SHADER_BUFFER* buffer = arg->buffer;
1142     char src0_name[50];
1143
1144     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src0_name);
1145     shader_addline(buffer, "DP3 TMP.x, T%u, %s;\n", reg, src0_name);
1146 }
1147
1148 void pshader_hw_texm3x2tex(SHADER_OPCODE_ARG* arg) {
1149
1150     IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
1151     IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
1152     DWORD flags;
1153     DWORD reg = arg->dst & WINED3DSP_REGNUM_MASK;
1154     SHADER_BUFFER* buffer = arg->buffer;
1155     char dst_str[8];
1156     char src0_name[50];
1157
1158     sprintf(dst_str, "T%u", reg);
1159     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src0_name);
1160     shader_addline(buffer, "DP3 TMP.y, T%u, %s;\n", reg, src0_name);
1161     flags = reg < MAX_TEXTURES ? deviceImpl->stateBlock->textureState[reg][WINED3DTSS_TEXTURETRANSFORMFLAGS] : 0;
1162     shader_hw_sample(arg, reg, dst_str, "TMP", flags & WINED3DTTFF_PROJECTED, FALSE);
1163 }
1164
1165 void pshader_hw_texm3x3pad(SHADER_OPCODE_ARG* arg) {
1166
1167     IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
1168     DWORD reg = arg->dst & WINED3DSP_REGNUM_MASK;
1169     SHADER_BUFFER* buffer = arg->buffer;
1170     SHADER_PARSE_STATE* current_state = &This->baseShader.parse_state;
1171     char src0_name[50];
1172
1173     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src0_name);
1174     shader_addline(buffer, "DP3 TMP.%c, T%u, %s;\n", 'x' + current_state->current_row, reg, src0_name);
1175     current_state->texcoord_w[current_state->current_row++] = reg;
1176 }
1177
1178 void pshader_hw_texm3x3tex(SHADER_OPCODE_ARG* arg) {
1179
1180     IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
1181     IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
1182     DWORD flags;
1183     DWORD reg = arg->dst & WINED3DSP_REGNUM_MASK;
1184     SHADER_BUFFER* buffer = arg->buffer;
1185     SHADER_PARSE_STATE* current_state = &This->baseShader.parse_state;
1186     char dst_str[8];
1187     char src0_name[50];
1188
1189     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src0_name);
1190     shader_addline(buffer, "DP3 TMP.z, T%u, %s;\n", reg, src0_name);
1191
1192     /* Sample the texture using the calculated coordinates */
1193     sprintf(dst_str, "T%u", reg);
1194     flags = reg < MAX_TEXTURES ? deviceImpl->stateBlock->textureState[reg][WINED3DTSS_TEXTURETRANSFORMFLAGS] : 0;
1195     shader_hw_sample(arg, reg, dst_str, "TMP", flags & WINED3DTTFF_PROJECTED, FALSE);
1196     current_state->current_row = 0;
1197 }
1198
1199 void pshader_hw_texm3x3vspec(SHADER_OPCODE_ARG* arg) {
1200
1201     IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
1202     IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
1203     DWORD flags;
1204     DWORD reg = arg->dst & WINED3DSP_REGNUM_MASK;
1205     SHADER_BUFFER* buffer = arg->buffer;
1206     SHADER_PARSE_STATE* current_state = &This->baseShader.parse_state;
1207     char dst_str[8];
1208     char src0_name[50];
1209
1210     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src0_name);
1211     shader_addline(buffer, "DP3 TMP.z, T%u, %s;\n", reg, src0_name);
1212
1213     /* Construct the eye-ray vector from w coordinates */
1214     shader_addline(buffer, "MOV TMP2.x, fragment.texcoord[%u].w;\n", current_state->texcoord_w[0]);
1215     shader_addline(buffer, "MOV TMP2.y, fragment.texcoord[%u].w;\n", current_state->texcoord_w[1]);
1216     shader_addline(buffer, "MOV TMP2.z, fragment.texcoord[%u].w;\n", reg);
1217
1218     /* Calculate reflection vector
1219      */
1220     shader_addline(buffer, "DP3 TMP.w, TMP, TMP2;\n");
1221     /* The .w is ignored when sampling, so I can use TMP2.w to calculate dot(N, N) */
1222     shader_addline(buffer, "DP3 TMP2.w, TMP, TMP;\n");
1223     shader_addline(buffer, "RCP TMP2.w, TMP2.w;\n");
1224     shader_addline(buffer, "MUL TMP.w, TMP.w, TMP2.w;\n");
1225     shader_addline(buffer, "MUL TMP, TMP.w, TMP;\n");
1226     shader_addline(buffer, "MAD TMP, coefmul.x, TMP, -TMP2;\n");
1227
1228     /* Sample the texture using the calculated coordinates */
1229     sprintf(dst_str, "T%u", reg);
1230     flags = reg < MAX_TEXTURES ? deviceImpl->stateBlock->textureState[reg][WINED3DTSS_TEXTURETRANSFORMFLAGS] : 0;
1231     shader_hw_sample(arg, reg, dst_str, "TMP", flags & WINED3DTTFF_PROJECTED, FALSE);
1232     current_state->current_row = 0;
1233 }
1234
1235 void pshader_hw_texm3x3spec(SHADER_OPCODE_ARG* arg) {
1236
1237     IWineD3DPixelShaderImpl* This = (IWineD3DPixelShaderImpl*) arg->shader;
1238     IWineD3DDeviceImpl* deviceImpl = (IWineD3DDeviceImpl*) This->baseShader.device;
1239     DWORD flags;
1240     DWORD reg = arg->dst & WINED3DSP_REGNUM_MASK;
1241     DWORD reg3 = arg->src[1] & WINED3DSP_REGNUM_MASK;
1242     SHADER_PARSE_STATE* current_state = &This->baseShader.parse_state;
1243     SHADER_BUFFER* buffer = arg->buffer;
1244     char dst_str[8];
1245     char src0_name[50];
1246
1247     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src0_name);
1248     shader_addline(buffer, "DP3 TMP.z, T%u, %s;\n", reg, src0_name);
1249
1250     /* Calculate reflection vector.
1251      *
1252      *               dot(N, E)
1253      * TMP.xyz = 2 * --------- * N - E
1254      *               dot(N, N)
1255      *
1256      * Which normalizes the normal vector
1257      */
1258     shader_addline(buffer, "DP3 TMP.w, TMP, C[%u];\n", reg3);
1259     shader_addline(buffer, "DP3 TMP2.w, TMP, TMP;\n");
1260     shader_addline(buffer, "RCP TMP2.w, TMP2.w;\n");
1261     shader_addline(buffer, "MUL TMP.w, TMP.w, TMP2.w;\n");
1262     shader_addline(buffer, "MUL TMP, TMP.w, TMP;\n");
1263     shader_addline(buffer, "MAD TMP, coefmul.x, TMP, -C[%u];\n", reg3);
1264
1265     /* Sample the texture using the calculated coordinates */
1266     sprintf(dst_str, "T%u", reg);
1267     flags = reg < MAX_TEXTURES ? deviceImpl->stateBlock->textureState[reg][WINED3DTSS_TEXTURETRANSFORMFLAGS] : 0;
1268     shader_hw_sample(arg, reg, dst_str, "TMP", flags & WINED3DTTFF_PROJECTED, FALSE);
1269     current_state->current_row = 0;
1270 }
1271
1272 void pshader_hw_texdepth(SHADER_OPCODE_ARG* arg) {
1273     SHADER_BUFFER* buffer = arg->buffer;
1274     char dst_name[50];
1275
1276     /* texdepth has an implicit destination, the fragment depth value. It's only parameter,
1277      * which is essentially an input, is the destiantion register because it is the first
1278      * param. According to the msdn, this must be register r5, but let's keep it more flexible
1279      * here
1280      */
1281     pshader_get_register_name(arg->dst, dst_name);
1282
1283     /* According to the msdn, the source register(must be r5) is unusable after
1284      * the texdepth instruction, so we're free to modify it
1285      */
1286     shader_addline(buffer, "MIN %s.g, %s.g, one.g;\n", dst_name, dst_name);
1287
1288     /* How to deal with the special case dst_name.g == 0? if r != 0, then
1289      * the r * (1 / 0) will give infinity, which is clamped to 1.0, the correct
1290      * result. But if r = 0.0, then 0 * inf = 0, which is incorrect.
1291      */
1292     shader_addline(buffer, "RCP %s.g, %s.g;\n", dst_name, dst_name);
1293     shader_addline(buffer, "MUL TMP.x, %s.r, %s.g;\n", dst_name, dst_name);
1294     shader_addline(buffer, "MIN TMP.x, TMP.x, one.r;\n", dst_name, dst_name);
1295     shader_addline(buffer, "MAX result.depth, TMP.x, 0.0;\n", dst_name, dst_name);
1296 }
1297
1298 /** Process the WINED3DSIO_TEXDP3TEX instruction in ARB:
1299  * Take a 3-component dot product of the TexCoord[dstreg] and src,
1300  * then perform a 1D texture lookup from stage dstregnum, place into dst. */
1301 void pshader_hw_texdp3tex(SHADER_OPCODE_ARG* arg) {
1302     SHADER_BUFFER* buffer = arg->buffer;
1303     DWORD sampler_idx = arg->dst & WINED3DSP_REGNUM_MASK;
1304     char src0[50];
1305     char dst_str[8];
1306
1307     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src0);
1308     shader_addline(buffer, "MOV TMP, 0.0;\n");
1309     shader_addline(buffer, "DP3 TMP.x, T%u, %s;\n", sampler_idx, src0);
1310
1311     sprintf(dst_str, "T%u", sampler_idx);
1312     shader_hw_sample(arg, sampler_idx, dst_str, "TMP", FALSE /* Only one coord, can't be projected */, FALSE);
1313 }
1314
1315 /** Process the WINED3DSIO_TEXDP3 instruction in ARB:
1316  * Take a 3-component dot product of the TexCoord[dstreg] and src. */
1317 void pshader_hw_texdp3(SHADER_OPCODE_ARG* arg) {
1318     char src0[50];
1319     char dst_str[50];
1320     char dst_mask[6];
1321     DWORD dstreg = arg->dst & WINED3DSP_REGNUM_MASK;
1322     SHADER_BUFFER* buffer = arg->buffer;
1323
1324     /* Handle output register */
1325     pshader_get_register_name(arg->dst, dst_str);
1326     shader_arb_get_write_mask(arg, arg->dst, dst_mask);
1327
1328     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src0);
1329     shader_addline(buffer, "DP3 %s%s, T%u, %s;\n", dst_str, dst_mask, dstreg, src0);
1330
1331     /* TODO: Handle output modifiers */
1332 }
1333
1334 /** Process the WINED3DSIO_TEXM3X3 instruction in ARB
1335  * Perform the 3rd row of a 3x3 matrix multiply */
1336 void pshader_hw_texm3x3(SHADER_OPCODE_ARG* arg) {
1337     SHADER_BUFFER* buffer = arg->buffer;
1338     char dst_str[50];
1339     char dst_mask[6];
1340     char src0[50];
1341     DWORD dst_reg = arg->dst & WINED3DSP_REGNUM_MASK;
1342
1343     pshader_get_register_name(arg->dst, dst_str);
1344     shader_arb_get_write_mask(arg, arg->dst, dst_mask);
1345
1346     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src0);
1347     shader_addline(buffer, "DP3 TMP.z, T%u, %s;\n", dst_reg, src0);
1348     shader_addline(buffer, "MOV %s%s, TMP;\n", dst_str, dst_mask);
1349
1350     /* TODO: Handle output modifiers */
1351 }
1352
1353 /** Process the WINED3DSIO_TEXM3X2DEPTH instruction in ARB:
1354  * Last row of a 3x2 matrix multiply, use the result to calculate the depth:
1355  * Calculate tmp0.y = TexCoord[dstreg] . src.xyz;  (tmp0.x has already been calculated)
1356  * depth = (tmp0.y == 0.0) ? 1.0 : tmp0.x / tmp0.y
1357  */
1358 void pshader_hw_texm3x2depth(SHADER_OPCODE_ARG* arg) {
1359     SHADER_BUFFER* buffer = arg->buffer;
1360     DWORD dst_reg = arg->dst & WINED3DSP_REGNUM_MASK;
1361     char src0[50];
1362
1363     pshader_gen_input_modifier_line(buffer, arg->src[0], 0, src0);
1364     shader_addline(buffer, "DP3 TMP.y, T%u, %s;\n", dst_reg, src0);
1365
1366     /* How to deal with the special case dst_name.g == 0? if r != 0, then
1367      * the r * (1 / 0) will give infinity, which is clamped to 1.0, the correct
1368      * result. But if r = 0.0, then 0 * inf = 0, which is incorrect.
1369      */
1370     shader_addline(buffer, "RCP TMP.y, TMP.y;\n");
1371     shader_addline(buffer, "MUL TMP.x, TMP.x, TMP.y;\n");
1372     shader_addline(buffer, "MIN TMP.x, TMP.x, one.r;\n");
1373     shader_addline(buffer, "MAX result.depth, TMP.x, 0.0;\n");
1374 }
1375
1376 /** Handles transforming all WINED3DSIO_M?x? opcodes for
1377     Vertex shaders to ARB_vertex_program codes */
1378 void vshader_hw_mnxn(SHADER_OPCODE_ARG* arg) {
1379
1380     int i;
1381     int nComponents = 0;
1382     SHADER_OPCODE_ARG tmpArg;
1383
1384     memset(&tmpArg, 0, sizeof(SHADER_OPCODE_ARG));
1385
1386     /* Set constants for the temporary argument */
1387     tmpArg.shader      = arg->shader;
1388     tmpArg.buffer      = arg->buffer;
1389     tmpArg.src[0]      = arg->src[0];
1390     tmpArg.src_addr[0] = arg->src_addr[0];
1391     tmpArg.src_addr[1] = arg->src_addr[1];
1392     tmpArg.reg_maps = arg->reg_maps;
1393
1394     switch(arg->opcode->opcode) {
1395     case WINED3DSIO_M4x4:
1396         nComponents = 4;
1397         tmpArg.opcode = shader_get_opcode(arg->shader, WINED3DSIO_DP4);
1398         break;
1399     case WINED3DSIO_M4x3:
1400         nComponents = 3;
1401         tmpArg.opcode = shader_get_opcode(arg->shader, WINED3DSIO_DP4);
1402         break;
1403     case WINED3DSIO_M3x4:
1404         nComponents = 4;
1405         tmpArg.opcode = shader_get_opcode(arg->shader, WINED3DSIO_DP3);
1406         break;
1407     case WINED3DSIO_M3x3:
1408         nComponents = 3;
1409         tmpArg.opcode = shader_get_opcode(arg->shader, WINED3DSIO_DP3);
1410         break;
1411     case WINED3DSIO_M3x2:
1412         nComponents = 2;
1413         tmpArg.opcode = shader_get_opcode(arg->shader, WINED3DSIO_DP3);
1414         break;
1415     default:
1416         break;
1417     }
1418
1419     for (i = 0; i < nComponents; i++) {
1420         tmpArg.dst = ((arg->dst) & ~WINED3DSP_WRITEMASK_ALL)|(WINED3DSP_WRITEMASK_0<<i);
1421         tmpArg.src[1] = arg->src[1]+i;
1422         vshader_hw_map2gl(&tmpArg);
1423     }
1424 }
1425
1426 void vshader_hw_rsq_rcp(SHADER_OPCODE_ARG* arg) {
1427     CONST SHADER_OPCODE* curOpcode = arg->opcode;
1428     SHADER_BUFFER* buffer = arg->buffer;
1429     DWORD dst = arg->dst;
1430     DWORD src = arg->src[0];
1431     DWORD swizzle = (src & WINED3DSP_SWIZZLE_MASK) >> WINED3DSP_SWIZZLE_SHIFT;
1432
1433     char tmpLine[256];
1434
1435     strcpy(tmpLine, curOpcode->glname); /* Opcode */
1436     vshader_program_add_param(arg, dst, FALSE, tmpLine); /* Destination */
1437     strcat(tmpLine, ",");
1438     vshader_program_add_param(arg, src, TRUE, tmpLine);
1439     if ((WINED3DSP_NOSWIZZLE >> WINED3DSP_SWIZZLE_SHIFT) == swizzle) {
1440         /* Dx sdk says .x is used if no swizzle is given, but our test shows that
1441          * .w is used
1442          */
1443         strcat(tmpLine, ".w");
1444     }
1445
1446     shader_addline(buffer, "%s;\n", tmpLine);
1447 }
1448
1449 /* TODO: merge with pixel shader */
1450 /* Map the opcode 1-to-1 to the GL code */
1451 void vshader_hw_map2gl(SHADER_OPCODE_ARG* arg) {
1452
1453     CONST SHADER_OPCODE* curOpcode = arg->opcode;
1454     SHADER_BUFFER* buffer = arg->buffer;
1455     DWORD dst = arg->dst;
1456     DWORD* src = arg->src;
1457
1458     DWORD dst_regtype = shader_get_regtype(dst);
1459     char tmpLine[256];
1460     unsigned int i;
1461
1462     if ((curOpcode->opcode == WINED3DSIO_MOV && dst_regtype == WINED3DSPR_ADDR) || curOpcode->opcode == WINED3DSIO_MOVA)
1463         strcpy(tmpLine, "ARL");
1464     else
1465         strcpy(tmpLine, curOpcode->glname);
1466
1467     if (curOpcode->num_params > 0) {
1468         vshader_program_add_param(arg, dst, FALSE, tmpLine);
1469         for (i = 1; i < curOpcode->num_params; ++i) {
1470            strcat(tmpLine, ",");
1471            vshader_program_add_param(arg, src[i-1], TRUE, tmpLine);
1472         }
1473     }
1474    shader_addline(buffer, "%s;\n", tmpLine);
1475 }
1476
1477 static GLuint create_arb_blt_vertex_program(WineD3D_GL_Info *gl_info) {
1478     GLuint program_id = 0;
1479     const char *blt_vprogram =
1480         "!!ARBvp1.0\n"
1481         "PARAM c[1] = { { 1, 0.5 } };\n"
1482         "MOV result.position, vertex.position;\n"
1483         "MOV result.color, c[0].x;\n"
1484         "MAD result.texcoord[0].y, -vertex.position, c[0], c[0];\n"
1485         "MAD result.texcoord[0].x, vertex.position, c[0].y, c[0].y;\n"
1486         "END\n";
1487
1488     GL_EXTCALL(glGenProgramsARB(1, &program_id));
1489     GL_EXTCALL(glBindProgramARB(GL_VERTEX_PROGRAM_ARB, program_id));
1490     GL_EXTCALL(glProgramStringARB(GL_VERTEX_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB, strlen(blt_vprogram), blt_vprogram));
1491
1492     if (glGetError() == GL_INVALID_OPERATION) {
1493         GLint pos;
1494         glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &pos);
1495         FIXME("Vertex program error at position %d: %s\n", pos,
1496             debugstr_a((const char *)glGetString(GL_PROGRAM_ERROR_STRING_ARB)));
1497     }
1498
1499     return program_id;
1500 }
1501
1502 static GLuint create_arb_blt_fragment_program(WineD3D_GL_Info *gl_info) {
1503     GLuint program_id = 0;
1504     const char *blt_fprogram =
1505         "!!ARBfp1.0\n"
1506         "TEMP R0;\n"
1507         "TEX R0.x, fragment.texcoord[0], texture[0], 2D;\n"
1508         "MOV result.depth.z, R0.x;\n"
1509         "END\n";
1510
1511     GL_EXTCALL(glGenProgramsARB(1, &program_id));
1512     GL_EXTCALL(glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, program_id));
1513     GL_EXTCALL(glProgramStringARB(GL_FRAGMENT_PROGRAM_ARB, GL_PROGRAM_FORMAT_ASCII_ARB, strlen(blt_fprogram), blt_fprogram));
1514
1515     if (glGetError() == GL_INVALID_OPERATION) {
1516         GLint pos;
1517         glGetIntegerv(GL_PROGRAM_ERROR_POSITION_ARB, &pos);
1518         FIXME("Fragment program error at position %d: %s\n", pos,
1519             debugstr_a((const char *)glGetString(GL_PROGRAM_ERROR_STRING_ARB)));
1520     }
1521
1522     return program_id;
1523 }
1524
1525 static void shader_arb_select(IWineD3DDevice *iface, BOOL usePS, BOOL useVS) {
1526     IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
1527     WineD3D_GL_Info *gl_info = &This->adapter->gl_info;
1528
1529     if (useVS) {
1530         TRACE("Using vertex shader\n");
1531
1532         /* Bind the vertex program */
1533         GL_EXTCALL(glBindProgramARB(GL_VERTEX_PROGRAM_ARB,
1534             ((IWineD3DVertexShaderImpl *)This->stateBlock->vertexShader)->baseShader.prgId));
1535         checkGLcall("glBindProgramARB(GL_VERTEX_PROGRAM_ARB, vertexShader->prgId);");
1536
1537         /* Enable OpenGL vertex programs */
1538         glEnable(GL_VERTEX_PROGRAM_ARB);
1539         checkGLcall("glEnable(GL_VERTEX_PROGRAM_ARB);");
1540         TRACE("(%p) : Bound vertex program %u and enabled GL_VERTEX_PROGRAM_ARB\n",
1541             This, ((IWineD3DVertexShaderImpl *)This->stateBlock->vertexShader)->baseShader.prgId);
1542     } else if(GL_SUPPORT(ARB_VERTEX_PROGRAM)) {
1543         glDisable(GL_VERTEX_PROGRAM_ARB);
1544         checkGLcall("glDisable(GL_VERTEX_PROGRAM_ARB)");
1545     }
1546
1547     if (usePS) {
1548         TRACE("Using pixel shader\n");
1549
1550         /* Bind the fragment program */
1551         GL_EXTCALL(glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB,
1552             ((IWineD3DPixelShaderImpl *)This->stateBlock->pixelShader)->baseShader.prgId));
1553         checkGLcall("glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, pixelShader->prgId);");
1554
1555         /* Enable OpenGL fragment programs */
1556         glEnable(GL_FRAGMENT_PROGRAM_ARB);
1557         checkGLcall("glEnable(GL_FRAGMENT_PROGRAM_ARB);");
1558         TRACE("(%p) : Bound fragment program %u and enabled GL_FRAGMENT_PROGRAM_ARB\n",
1559             This, ((IWineD3DPixelShaderImpl *)This->stateBlock->pixelShader)->baseShader.prgId);
1560     } else if(GL_SUPPORT(ARB_FRAGMENT_PROGRAM)) {
1561         glDisable(GL_FRAGMENT_PROGRAM_ARB);
1562         checkGLcall("glDisable(GL_FRAGMENT_PROGRAM_ARB)");
1563     }
1564 }
1565
1566 static void shader_arb_select_depth_blt(IWineD3DDevice *iface) {
1567     IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
1568     WineD3D_GL_Info *gl_info = &This->adapter->gl_info;
1569     static GLuint vprogram_id = 0;
1570     static GLuint fprogram_id = 0;
1571
1572     if (!vprogram_id) vprogram_id = create_arb_blt_vertex_program(gl_info);
1573     GL_EXTCALL(glBindProgramARB(GL_VERTEX_PROGRAM_ARB, vprogram_id));
1574     glEnable(GL_VERTEX_PROGRAM_ARB);
1575
1576     if (!fprogram_id) fprogram_id = create_arb_blt_fragment_program(gl_info);
1577     GL_EXTCALL(glBindProgramARB(GL_FRAGMENT_PROGRAM_ARB, fprogram_id));
1578     glEnable(GL_FRAGMENT_PROGRAM_ARB);
1579 }
1580
1581 static void shader_arb_cleanup(IWineD3DDevice *iface) {
1582     IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
1583     WineD3D_GL_Info *gl_info = &This->adapter->gl_info;
1584     if (GL_SUPPORT(ARB_VERTEX_PROGRAM)) glDisable(GL_VERTEX_PROGRAM_ARB);
1585     if (GL_SUPPORT(ARB_FRAGMENT_PROGRAM)) glDisable(GL_FRAGMENT_PROGRAM_ARB);
1586 }
1587
1588 const shader_backend_t arb_program_shader_backend = {
1589     &shader_arb_select,
1590     &shader_arb_select_depth_blt,
1591     &shader_arb_load_constants,
1592     &shader_arb_cleanup,
1593     &shader_arb_color_correction
1594 };