projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd5c538
)
r600g: fix EXP on Cayman
author
Marek Olšák
<maraeo@gmail.com>
Tue, 25 Sep 2012 15:28:13 +0000
(17:28 +0200)
committer
Marek Olšák
<maraeo@gmail.com>
Thu, 27 Sep 2012 17:14:44 +0000
(19:14 +0200)
NOTE: This is a candidate for the stable branches.
src/gallium/drivers/r600/r600_shader.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/r600/r600_shader.c
b/src/gallium/drivers/r600/r600_shader.c
index 7df549ba702cc02fcfcc117834bdca6cbb2c7931..29616f987e61031ef117472c317b424538e730cb 100644
(file)
--- a/
src/gallium/drivers/r600/r600_shader.c
+++ b/
src/gallium/drivers/r600/r600_shader.c
@@
-4388,10
+4388,8
@@
static int tgsi_exp(struct r600_shader_ctx *ctx)
alu.dst.sel = ctx->temp_reg;
alu.dst.chan = i;
- if (i == 0)
- alu.dst.write = 1;
- if (i == 2)
- alu.last = 1;
+ alu.dst.write = i == 0;
+ alu.last = i == 2;
r = r600_bytecode_add_alu(ctx->bc, &alu);
if (r)
return r;