summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600/r600_shader.c
diff options
context:
space:
mode:
authorDave Airlie <[email protected]>2012-12-16 10:16:09 +0000
committerDave Airlie <[email protected]>2012-12-16 10:36:42 +0000
commitfa5078c255b5b57514ae854ecd6264379641c924 (patch)
tree5a03b7297fc9fb292523ea3994169215f8899bb1 /src/gallium/drivers/r600/r600_shader.c
parentcf358a2b42b4c1c0a672f57d5962a5d70a22df33 (diff)
r600g: fixup offset types for printing
This allows the debug code to at least show the sign properly. Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_shader.c')
-rw-r--r--src/gallium/drivers/r600/r600_shader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c
index f0072046e28..fbbd0fb685b 100644
--- a/src/gallium/drivers/r600/r600_shader.c
+++ b/src/gallium/drivers/r600/r600_shader.c
@@ -3828,7 +3828,7 @@ static int tgsi_tex(struct r600_shader_ctx *ctx)
read_compressed_msaa;
boolean src_loaded = FALSE;
unsigned sampler_src_reg = inst->Instruction.Opcode == TGSI_OPCODE_TXQ_LZ ? 0 : 1;
- uint8_t offset_x = 0, offset_y = 0, offset_z = 0;
+ int8_t offset_x = 0, offset_y = 0, offset_z = 0;
boolean has_txq_cube_array_z = false;
if (inst->Instruction.Opcode == TGSI_OPCODE_TXQ &&