diff options
author | Tom Stellard <[email protected]> | 2013-09-17 15:47:34 -0700 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2013-10-16 09:39:31 -0700 |
commit | 13ac38b4ef94d3ab32d509e89a1131ce1ce67437 (patch) | |
tree | 0c9b67003736bac794f7bfab3a6653721740718c /src/gallium/drivers/r600/evergreen_compute.c | |
parent | de1de88dfc478db597726d88231c6c0a7f936121 (diff) |
r600g/compute Improve debugging output
Diffstat (limited to 'src/gallium/drivers/r600/evergreen_compute.c')
-rw-r--r-- | src/gallium/drivers/r600/evergreen_compute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/evergreen_compute.c b/src/gallium/drivers/r600/evergreen_compute.c index e36c3a8d831..bcb8a390fcf 100644 --- a/src/gallium/drivers/r600/evergreen_compute.c +++ b/src/gallium/drivers/r600/evergreen_compute.c @@ -934,8 +934,8 @@ void *r600_compute_global_transfer_map( "width = %u, height = %u, depth = %u)\n", level, usage, box->x, box->y, box->z, box->width, box->height, box->depth); - COMPUTE_DBG(rctx->screen, "Buffer: %u (buffer offset in global memory) " - "+ %u (box.x)\n", buffer->chunk->start_in_dw, box->x); + COMPUTE_DBG(rctx->screen, "Buffer id = %u offset = " + "%u (box.x)\n", buffer->chunk->id, box->x); compute_memory_finalize_pending(pool, ctx_); |