Searched refs:lp_count (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
H A Dlp_perf.c34 struct lp_counters lp_count; variable in typeref:struct:lp_counters
40 memset(&lp_count, 0, sizeof(lp_count));
51 debug_printf("llvmpipe: nr_triangles: %9u\n", lp_count.nr_tris);
52 debug_printf("llvmpipe: nr_culled_triangles: %9u\n", lp_count.nr_culled_tris);
54 total_64 = (lp_count.nr_empty_64 +
55 lp_count.nr_fully_covered_64 +
56 lp_count.nr_partially_covered_64);
58 p1 = 100.0 * (float) lp_count.nr_empty_64 / (float) total_64;
59 p2 = 100.0 * (float) lp_count
[all...]
H A Dlp_perf.h68 extern struct lp_counters lp_count;
73 #define LP_COUNT(counter) lp_count.counter++
74 #define LP_COUNT_ADD(counter, incr) lp_count.counter += (incr)
75 #define LP_COUNT_GET(counter) (lp_count.counter)
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_perf.c34 struct lp_counters lp_count; variable in typeref:struct:lp_counters
40 memset(&lp_count, 0, sizeof(lp_count));
51 debug_printf("llvmpipe: nr_triangles: %9u\n", lp_count.nr_tris);
52 debug_printf("llvmpipe: nr_culled_triangles: %9u\n", lp_count.nr_culled_tris);
53 debug_printf("llvmpipe: nr_rectangles: %9u\n", lp_count.nr_rects);
54 debug_printf("llvmpipe: nr_culled_rectangles: %9u\n", lp_count.nr_culled_rects);
56 total_64 = (lp_count.nr_empty_64 +
57 lp_count.nr_fully_covered_64 +
58 lp_count
[all...]
H A Dlp_perf.h74 extern struct lp_counters lp_count;
79 #define LP_COUNT(counter) lp_count.counter++
80 #define LP_COUNT_ADD(counter, incr) lp_count.counter += (incr)
81 #define LP_COUNT_GET(counter) (lp_count.counter)

Completed in 7 milliseconds