wined3d: Dcl opcode takes 2 parameters.

oldstable
Ivan Gyurdiev 2006-04-15 15:00:36 -04:00 committed by Alexandre Julliard
parent 7e5f734ee3
commit e0a1442f6c
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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