diff options
author | Brian Paul <[email protected]> | 2010-02-08 13:09:18 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-08 16:57:23 -0700 |
commit | 4aeacdf8530d69d543cb2b997c1e65edb71ae01a (patch) | |
tree | d6907cb8e8675fa3e3102292cd9d9d8939a6e429 /src/gallium/drivers/llvmpipe/lp_perf.h | |
parent | a8270c7c29b141025f606c811812304a72e42d2e (diff) |
llvmpipe: added counters for color tile clear, load, store
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_perf.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_perf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_perf.h b/src/gallium/drivers/llvmpipe/lp_perf.h index d982bcc989b..a9629dae3c7 100644 --- a/src/gallium/drivers/llvmpipe/lp_perf.h +++ b/src/gallium/drivers/llvmpipe/lp_perf.h @@ -51,6 +51,10 @@ struct lp_counters unsigned nr_non_empty_4; unsigned nr_llvm_compiles; int64_t llvm_compile_time; /**< total, in microseconds */ + + unsigned nr_color_tile_clear; + unsigned nr_color_tile_load; + unsigned nr_color_tile_store; }; |