summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_perf.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-02-08 13:09:18 -0700
committerBrian Paul <brianp@vmware.com>2010-02-08 16:57:23 -0700
commit4aeacdf8530d69d543cb2b997c1e65edb71ae01a (patch)
treed6907cb8e8675fa3e3102292cd9d9d8939a6e429 /src/gallium/drivers/llvmpipe/lp_perf.h
parenta8270c7c29b141025f606c811812304a72e42d2e (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.h4
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 d982bcc989..a9629dae3c 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;
};