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_debug.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_debug.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_debug.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_debug.c b/src/gallium/drivers/r300/r300_debug.c index 786fdf6ce8d..145a7985da3 100644 --- a/src/gallium/drivers/r300/r300_debug.c +++ b/src/gallium/drivers/r300/r300_debug.c @@ -28,7 +28,7 @@ static const struct debug_named_value debug_options[] = { { "fp", DBG_FP, "Log fragment program compilation" }, - { "vp", DBG_VP, "Log bertex program compilation" }, + { "vp", DBG_VP, "Log vertex program compilation" }, { "draw", DBG_DRAW, "Log draw calls" }, { "swtcl", DBG_SWTCL, "Log SWTCL-specific info" }, { "rsblock", DBG_RS_BLOCK, "Log rasterizer registers" }, @@ -41,11 +41,13 @@ static const struct debug_named_value debug_options[] = { { "cbzb", DBG_CBZB, "Log fast color clear info" }, { "stats", DBG_STATS, "Log emission statistics" }, { "hyperz", DBG_HYPERZ, "Log HyperZ info" }, + { "scissor", DBG_SCISSOR, "Log scissor info" }, { "fakeocc", DBG_FAKE_OCC, "Use fake occlusion queries" }, { "anisohq", DBG_ANISOHQ, "Use high quality anisotropic filtering" }, { "notiling", DBG_NO_TILING, "Disable tiling" }, { "noimmd", DBG_NO_IMMD, "Disable immediate mode" }, { "noopt", DBG_NO_OPT, "Disable shader optimizations" }, + { "nocbzb", DBG_NO_CBZB, "Disable fast color clear" }, /* must be last */ DEBUG_NAMED_VALUE_END |