projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e2a937
)
llvmpipe: fix broken TGSI_OPCODE_FRC codegen
author
Brian Paul
<brianp@vmware.com>
Mon, 14 Dec 2009 22:27:35 +0000
(15:27 -0700)
committer
Brian Paul
<brianp@vmware.com>
Mon, 14 Dec 2009 22:27:35 +0000
(15:27 -0700)
src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c
b/src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c
index adc81569ed514f6531224ccadc48101553e649a4..83ac25bb200d61c1292eb1015bab2c47a2f8586c 100644
(file)
--- a/
src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c
+++ b/
src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c
@@
-777,7
+777,7
@@
emit_instruction(
FOR_EACH_DST0_ENABLED_CHANNEL( inst, chan_index ) {
src0 = emit_fetch( bld, inst, 0, chan_index );
tmp0 = lp_build_floor(&bld->base, src0);
- tmp0 = lp_build_sub(&bld->base,
tmp0, src
0);
+ tmp0 = lp_build_sub(&bld->base,
src0, tmp
0);
dst0[chan_index] = tmp0;
}
break;