mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 19:40:10 +01:00
r600g/compute Improve debugging output
This commit is contained in:
parent
de1de88dfc
commit
13ac38b4ef
2 changed files with 7 additions and 5 deletions
|
|
@ -161,8 +161,9 @@ struct compute_memory_item* compute_memory_postalloc_chunk(
|
|||
void compute_memory_grow_pool(struct compute_memory_pool* pool,
|
||||
struct pipe_context * pipe, int new_size_in_dw)
|
||||
{
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_grow_pool() new_size_in_dw = %d\n",
|
||||
new_size_in_dw);
|
||||
COMPUTE_DBG(pool->screen, "* compute_memory_grow_pool() "
|
||||
"new_size_in_dw = %d (%d bytes)\n",
|
||||
new_size_in_dw, new_size_in_dw * 4);
|
||||
|
||||
assert(new_size_in_dw >= pool->size_in_dw);
|
||||
|
||||
|
|
@ -171,7 +172,8 @@ void compute_memory_grow_pool(struct compute_memory_pool* pool,
|
|||
} else {
|
||||
new_size_in_dw += 1024 - (new_size_in_dw % 1024);
|
||||
|
||||
COMPUTE_DBG(pool->screen, " Aligned size = %d\n", new_size_in_dw);
|
||||
COMPUTE_DBG(pool->screen, " Aligned size = %d (%d bytes)\n",
|
||||
new_size_in_dw, new_size_in_dw * 4);
|
||||
|
||||
compute_memory_shadow(pool, pipe, 1);
|
||||
pool->shadow = realloc(pool->shadow, new_size_in_dw*4);
|
||||
|
|
|
|||
|
|
@ -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_);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue