diff options
author | Marek Olšák <[email protected]> | 2010-09-10 09:18:03 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2010-09-13 07:49:43 +0200 |
commit | ab7cc445801b99a4482ea50429ceea1d0601a221 (patch) | |
tree | 0c869af913208ef5188fe669a391d85d381235a4 /src/gallium/drivers/r300/r300_texture.c | |
parent | c3c5646b93eb20013d2739c7966da7ddad532877 (diff) |
r300g: add new debug options for dumping scissor regs and disabling CBZB clear
Diffstat (limited to 'src/gallium/drivers/r300/r300_texture.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_texture.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_texture.c b/src/gallium/drivers/r300/r300_texture.c index dae5f2aedf9..34105aa4bcd 100644 --- a/src/gallium/drivers/r300/r300_texture.c +++ b/src/gallium/drivers/r300/r300_texture.c @@ -881,9 +881,11 @@ struct pipe_surface* r300_get_tex_surface(struct pipe_screen* screen, surface->cbzb_format = R300_DEPTHFORMAT_16BIT_INT_Z; SCREEN_DBG(r300_screen(screen), DBG_CBZB, - "CBZB Dim: %ix%i, Misalignment: %i, Macro: %s\n", + "CBZB Allowed: %s, Dim: %ix%i, Misalignment: %i, Micro: %s, Macro: %s\n", + surface->cbzb_allowed ? "YES" : " NO", surface->cbzb_width, surface->cbzb_height, offset & 2047, + tex->desc.microtile ? "YES" : " NO", tex->desc.macrotile[level] ? "YES" : " NO"); } |