Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/intern/draw_manager.c
| Show First 20 Lines • Show All 1,850 Lines • ▼ Show 20 Lines | if (cache_is_dirty) { | ||||
| DEG_OBJECT_ITER_END | DEG_OBJECT_ITER_END | ||||
| DRW_engines_cache_finish(); | DRW_engines_cache_finish(); | ||||
| } | } | ||||
| /* Start Drawing */ | /* Start Drawing */ | ||||
| DRW_engines_draw_background(); | DRW_engines_draw_background(); | ||||
| gpuMatrixBegin3D(); | |||||
| DRW_draw_callbacks_pre_scene(); | DRW_draw_callbacks_pre_scene(); | ||||
| // DRW_draw_grid(); | // DRW_draw_grid(); | ||||
| DRW_engines_draw_scene(); | DRW_engines_draw_scene(); | ||||
| DRW_draw_callbacks_post_scene(); | DRW_draw_callbacks_post_scene(); | ||||
| DRW_draw_manipulator(); | DRW_draw_manipulator(); | ||||
| gpuMatrixEnd(); | |||||
| DRW_draw_region_info(); | DRW_draw_region_info(); | ||||
| if (G.debug_value > 20) { | if (G.debug_value > 20) { | ||||
| DRW_debug_cpu_stats(); | DRW_debug_cpu_stats(); | ||||
| DRW_debug_gpu_stats(); | DRW_debug_gpu_stats(); | ||||
| } | } | ||||
| DRW_state_reset(); | DRW_state_reset(); | ||||
| ▲ Show 20 Lines • Show All 62 Lines • Show Last 20 Lines | |||||