Commit e0a1442f authored by Ivan Gyurdiev's avatar Ivan Gyurdiev Committed by Alexandre Julliard

wined3d: Dcl opcode takes 2 parameters.

parent 7e5f734e
......@@ -662,7 +662,7 @@ CONST SHADER_OPCODE IWineD3DPixelShaderImpl_shader_ins[] = {
/** FIXME: use direct access so add the others opcodes as stubs */
/* DCL is a specil operation */
{D3DSIO_DCL, "dcl", NULL, 1, pshader_dcl, 0, 0},
{D3DSIO_DCL, "dcl", NULL, 2, pshader_dcl, 0, 0},
{D3DSIO_POW, "pow", "POW", 3, pshader_pow, 0, 0},
{D3DSIO_CRS, "crs", "XPS", 3, pshader_crs, 0, 0},
/* TODO: sng can possibly be performed as
......
......@@ -611,7 +611,7 @@ CONST SHADER_OPCODE IWineD3DVertexShaderImpl_shader_ins[] = {
/** FIXME: use direct access so add the others opcodes as stubs */
/* DCL is a specil operation */
{D3DSIO_DCL, "dcl", NULL, 1, vshader_dcl, 0, 0},
{D3DSIO_DCL, "dcl", NULL, 2, vshader_dcl, 0, 0},
{D3DSIO_POW, "pow", "POW", 3, vshader_pow, 0, 0},
{D3DSIO_CRS, "crs", "XPS", 3, vshader_crs, 0, 0},
/* TODO: sng can possibly be performed as
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment