summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-04-26 13:21:04 -0400
committerTom Stellard <thomas.stellard@amd.com>2013-05-02 09:00:37 -0700
commit5752be0cb78c2a2e30b88eaf8addc173ae483e9e (patch)
tree6251d320dbe0a069c3cbe17701ede6f5863bf786 /src
parentcd84353d576246273d1c6ae8e96b65217be15ebc (diff)
downloadexternal_mesa3d-5752be0cb78c2a2e30b88eaf8addc173ae483e9e.zip
external_mesa3d-5752be0cb78c2a2e30b88eaf8addc173ae483e9e.tar.gz
external_mesa3d-5752be0cb78c2a2e30b88eaf8addc173ae483e9e.tar.bz2
r600g/compute: Fix build error in debug code
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/r600/evergreen_compute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/evergreen_compute.c b/src/gallium/drivers/r600/evergreen_compute.c
index d6b0a47..5f67759 100644
--- a/src/gallium/drivers/r600/evergreen_compute.c
+++ b/src/gallium/drivers/r600/evergreen_compute.c
@@ -454,7 +454,7 @@ static void compute_emit_cs(struct r600_context *ctx, const uint *block_layout,
#if 0
COMPUTE_DBG(ctx->screen, "cdw: %i\n", cs->cdw);
for (i = 0; i < cs->cdw; i++) {
- COMPUTE_DBG(ctx->screen, "%4i : 0x%08X\n", i, ctx->cs->buf[i]);
+ COMPUTE_DBG(ctx->screen, "%4i : 0x%08X\n", i, cs->buf[i]);
}
#endif