Correct the number of parameters expected for the LRP function.

This commit is contained in:
Oliver Stieber 2005-10-27 10:23:53 +00:00 committed by Alexandre Julliard
parent 9c676e6c19
commit 473cac840b
1 changed files with 1 additions and 1 deletions

View File

@ -614,7 +614,7 @@ static CONST SHADER_OPCODE vshader_ins [] = {
{D3DSIO_LOG, "log", "LG2", 2, vshader_log, 0, 0},
{D3DSIO_LIT, "lit", "LIT", 2, vshader_lit, 0, 0},
{D3DSIO_DST, "dst", "DST", 3, vshader_dst, 0, 0},
{D3DSIO_LRP, "lrp", "LRP", 5, vshader_lrp, 0, 0},
{D3DSIO_LRP, "lrp", "LRP", 4, vshader_lrp, 0, 0},
{D3DSIO_FRC, "frc", "FRC", 2, vshader_frc, 0, 0},
{D3DSIO_M4x4, "m4x4", "undefined", 3, vshader_m4x4, 0, 0},
{D3DSIO_M4x3, "m4x3", "undefined", 3, vshader_m4x3, 0, 0},