diff options
author | Keith Whitwell <[email protected]> | 2008-05-24 13:23:06 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-05-24 13:23:06 +0100 |
commit | e1590abb17f1effd92c136207f363de6cf52df18 (patch) | |
tree | ca31ce566f2e421264e0dea7214976c49c89f2b8 /src/mesa/main/ffvertex_prog.c | |
parent | a2b1c46535d02bb4cc154f26481eda264a65abe8 (diff) |
mesa: pre-swizzle normal scale state value
Diffstat (limited to 'src/mesa/main/ffvertex_prog.c')
-rw-r--r-- | src/mesa/main/ffvertex_prog.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/ffvertex_prog.c b/src/mesa/main/ffvertex_prog.c index e36f1f69a40..7a099b23767 100644 --- a/src/mesa/main/ffvertex_prog.c +++ b/src/mesa/main/ffvertex_prog.c @@ -775,8 +775,7 @@ static struct ureg get_transformed_normal( struct tnl_program *p ) struct ureg rescale = register_param2(p, STATE_INTERNAL, STATE_NORMAL_SCALE); - emit_op2( p, OPCODE_MUL, transformed_normal, 0, normal, - swizzle1(rescale, X)); + emit_op2( p, OPCODE_MUL, transformed_normal, 0, normal, rescale ); normal = transformed_normal; } |