19 stats->topology_refiner_creation_time = 0.0;
20 stats->subdiv_to_mesh_time = 0.0;
21 stats->subdiv_to_mesh_geometry_time = 0.0;
22 stats->evaluator_creation_time = 0.0;
23 stats->evaluator_refine_time = 0.0;
24 stats->subdiv_to_ccg_time = 0.0;
25 stats->subdiv_to_ccg_elements_time = 0.0;
26 stats->topology_compare_time = 0.0;
46#define STATS_PRINT_TIME(stats, value, description) \
48 if ((stats)->value > 0.0) { \
49 printf(" %s: %f (sec)\n", description, (stats)->value); \
53 printf(
"Subdivision surface statistics:\n");
55 STATS_PRINT_TIME(stats, topology_refiner_creation_time,
"Topology refiner creation time");
64#undef STATS_PRINT_TIME