Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/intern/wm_draw.c
| Show First 20 Lines • Show All 215 Lines • ▼ Show 20 Lines | static bool wm_draw_region_stereo_set(Main *bmain, | ||||
| } | } | ||||
| return false; | return false; | ||||
| } | } | ||||
| static void wm_area_mark_invalid_backbuf(ScrArea *area) | static void wm_area_mark_invalid_backbuf(ScrArea *area) | ||||
| { | { | ||||
| if (area->spacetype == SPACE_VIEW3D) { | if (area->spacetype == SPACE_VIEW3D) { | ||||
| ((View3D *)area->spacedata.first)->flag |= V3D_INVALID_BACKBUF; | BLI_assert(!(((View3D *)area->spacedata.first)->runtime.flag & V3D_RUNTIME_DEPTHBUF_OVERRIDDEN)); | ||||
| } | } | ||||
| } | } | ||||
| static void wm_region_test_gizmo_do_draw(bContext *C, | static void wm_region_test_gizmo_do_draw(bContext *C, | ||||
| ScrArea *area, | ScrArea *area, | ||||
| ARegion *region, | ARegion *region, | ||||
| bool tag_redraw) | bool tag_redraw) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 922 Lines • Show Last 20 Lines | |||||