wined3d: Add mapping for MOV instructions in shader_hw_map2gl.

This commit is contained in:
Allan Tong 2008-12-31 21:44:33 -05:00 committed by Alexandre Julliard
parent 0c587dc373
commit fdd512deeb
1 changed files with 1 additions and 0 deletions

View File

@ -924,6 +924,7 @@ static void shader_hw_map2gl(const SHADER_OPCODE_ARG *arg)
case WINED3DSIO_MAD: instruction = "MAD"; break;
case WINED3DSIO_MAX: instruction = "MAX"; break;
case WINED3DSIO_MIN: instruction = "MIN"; break;
case WINED3DSIO_MOV: instruction = "MOV"; break;
case WINED3DSIO_MUL: instruction = "MUL"; break;
case WINED3DSIO_NOP: instruction = "NOP"; break;
case WINED3DSIO_POW: instruction = "POW"; break;