summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_perf.h
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2010-08-20 15:45:25 +0100
committerKeith Whitwell <keithw@vmware.com>2010-08-25 10:29:27 +0100
commit98f3ff8f4a761d579ee9b42ee3090635519213a5 (patch)
tree7962c36d0141eced4f37b0ad206d6b08af1a1dbc /src/gallium/drivers/llvmpipe/lp_perf.h
parent5a45e53df4419fde1fe7696f3a9459893363f7c5 (diff)
llvmpipe: more rasterization counters
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_perf.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_perf.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_perf.h b/src/gallium/drivers/llvmpipe/lp_perf.h
index 4774f64550..c28652fc30 100644
--- a/src/gallium/drivers/llvmpipe/lp_perf.h
+++ b/src/gallium/drivers/llvmpipe/lp_perf.h
@@ -44,11 +44,16 @@ struct lp_counters
unsigned nr_empty_64;
unsigned nr_fully_covered_64;
unsigned nr_partially_covered_64;
+ unsigned nr_pure_shade_opaque_64;
+ unsigned nr_pure_shade_64;
+ unsigned nr_shade_64;
unsigned nr_shade_opaque_64;
unsigned nr_empty_16;
unsigned nr_fully_covered_16;
unsigned nr_partially_covered_16;
unsigned nr_empty_4;
+ unsigned nr_fully_covered_4;
+ unsigned nr_partially_covered_4;
unsigned nr_non_empty_4;
unsigned nr_llvm_compiles;
int64_t llvm_compile_time; /**< total, in microseconds */
@@ -66,9 +71,11 @@ extern struct lp_counters lp_count;
#ifdef DEBUG
#define LP_COUNT(counter) lp_count.counter++
#define LP_COUNT_ADD(counter, incr) lp_count.counter += (incr)
+#define LP_COUNT_GET(counter) (lp_count.counter)
#else
#define LP_COUNT(counter)
#define LP_COUNT_ADD(counter, incr) (void) incr
+#define LP_COUNT_GET(counter) 0
#endif