diff options
author | Marek Olšák <maraeo@gmail.com> | 2010-06-09 20:22:27 +0200 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2010-06-09 20:22:52 +0200 |
commit | f571a569a03edc66ecd76d67f10db0a4bb600a40 (patch) | |
tree | 2a21e6e512ab8bb9f2a74da4412a4647c9a3d3b6 | |
parent | 950be3fa3c22d67f3b80e7ed5d274d957f0bff93 (diff) |
r300g: debug output texture size
-rw-r--r-- | src/gallium/drivers/r300/r300_texture.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_texture.c b/src/gallium/drivers/r300/r300_texture.c index c95a3f79af..4ca8ce037b 100644 --- a/src/gallium/drivers/r300/r300_texture.c +++ b/src/gallium/drivers/r300/r300_texture.c @@ -966,11 +966,12 @@ struct pipe_resource* r300_texture_create(struct pipe_screen* screen, SCREEN_DBG(rscreen, DBG_TEX, "r300: texture_create: Macro: %s, Micro: %s, Pitch: %i, " - "Dim: %ix%ix%i, LastLevel: %i, Format: %s\n", + "Dim: %ix%ix%i, LastLevel: %i, Size: %i, Format: %s\n", tex->macrotile ? "YES" : " NO", tex->microtile ? "YES" : " NO", tex->hwpitch[0], base->width0, base->height0, base->depth0, base->last_level, + tex->size, util_format_short_name(base->format)); tex->domain = base->flags & R300_RESOURCE_FLAG_TRANSFER ? R300_DOMAIN_GTT : |