diff options
author | Brian Paul <[email protected]> | 2010-01-21 14:59:01 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-01-21 15:39:57 -0700 |
commit | cd9d9e2436a0815f6ed3a61d2cdf8fad53278506 (patch) | |
tree | 4361bb4916bf5e3148031fc6afe7bebf7fe3fc44 /src/gallium/drivers/llvmpipe/lp_screen.c | |
parent | 63f249bf909cab60635c2df9122db86eaab6c421 (diff) |
llvmpipe: added simple perf/statistics counting facility
Currently counting number of tris, how many tiles of each size are
fully covered, partially covered or empty, etc.
Set LP_DEBUG=counters to enable. Results are printed upon context
destruction.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_screen.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 72f2e8ebf80..9dd4ea7ef67 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -54,6 +54,7 @@ static const struct debug_named_value lp_debug_flags[] = { { "jit", DEBUG_JIT }, { "show_tiles", DEBUG_SHOW_TILES }, { "show_subtiles", DEBUG_SHOW_SUBTILES }, + { "counters", DEBUG_COUNTERS }, {NULL, 0} }; #endif |