diff options
author | Ilia Mirkin <[email protected]> | 2014-06-06 15:29:21 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2014-06-06 18:25:16 -0400 |
commit | 73eec47ef81954f7c2bf7c8bf03b300d11d05b82 (patch) | |
tree | efcd6b0002542e69e1b6456f4ed0d20647d4d40b /src/gallium | |
parent | b6956aef7452954ff986708962cc154c243e0378 (diff) |
gk110/ir: emit texbar the same way that the blob does
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Ben Skeggs <[email protected]>
Cc: "10.2" <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp index b8d0d3ed1ae..d566c992c45 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp @@ -967,7 +967,7 @@ void CodeEmitterGK110::emitSELP(const Instruction *i) void CodeEmitterGK110::emitTEXBAR(const Instruction *i) { - code[0] = 0x00000002 | (i->subOp << 23); + code[0] = 0x0000003e | (i->subOp << 23); code[1] = 0x77000000; emitPredicate(i); |