diff options
author | Michal Krol <[email protected]> | 2009-04-03 17:25:29 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-04-03 17:26:01 +0200 |
commit | e3d5e0aead06dc066f3df4bb5a0c8f30bef55248 (patch) | |
tree | 3349876e1c4edf2c9007b3e678accdde09cd7277 /src/gallium/auxiliary/tgsi/tgsi_exec.c | |
parent | cbd305394a7a01e12f4a42b2551a154b4d544fe2 (diff) |
tgsi/exec: Actually enable switch-case for FLR.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index 80b8c92445a..e8bd7cda3b1 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -1904,7 +1904,7 @@ exec_instruction( switch (inst->Instruction.Opcode) { case TGSI_OPCODE_ARL: - /* TGSI_OPCODE_FLOOR */ + case TGSI_OPCODE_FLOOR: /* TGSI_OPCODE_FLR */ FOR_EACH_ENABLED_CHANNEL( *inst, chan_index ) { FETCH( &r[0], 0, chan_index ); |