Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_screen.h
| Show First 20 Lines • Show All 286 Lines • ▼ Show 20 Lines | |||||
| struct ARegion *BKE_area_find_region_type(struct ScrArea *sa, int type); | struct ARegion *BKE_area_find_region_type(struct ScrArea *sa, int type); | ||||
| struct ARegion *BKE_area_find_region_active_win(struct ScrArea *sa); | struct ARegion *BKE_area_find_region_active_win(struct ScrArea *sa); | ||||
| struct ARegion *BKE_area_find_region_xy(struct ScrArea *sa, const int regiontype, int x, int y); | struct ARegion *BKE_area_find_region_xy(struct ScrArea *sa, const int regiontype, int x, int y); | ||||
| struct ScrArea *BKE_screen_find_area_from_space(struct bScreen *sc, struct SpaceLink *sl) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1, 2); | struct ScrArea *BKE_screen_find_area_from_space(struct bScreen *sc, struct SpaceLink *sl) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1, 2); | ||||
| struct ScrArea *BKE_screen_find_big_area(struct bScreen *sc, const int spacetype, const short min); | struct ScrArea *BKE_screen_find_big_area(struct bScreen *sc, const int spacetype, const short min); | ||||
| struct ScrArea *BKE_screen_find_area_xy(struct bScreen *sc, const int spacetype, int x, int y); | struct ScrArea *BKE_screen_find_area_xy(struct bScreen *sc, const int spacetype, int x, int y); | ||||
| unsigned int BKE_screen_view3d_layer_active_ex( | unsigned int BKE_screen_view3d_layer_active(const struct View3D *v3d, const struct Scene *scene) ATTR_NONNULL(2); | ||||
| const struct View3D *v3d, const struct Scene *scene, bool use_localvd) ATTR_NONNULL(2); | |||||
| unsigned int BKE_screen_view3d_layer_active( | |||||
| const struct View3D *v3d, const struct Scene *scene) ATTR_NONNULL(2); | |||||
| unsigned int BKE_screen_view3d_layer_all(const struct bScreen *sc) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1); | unsigned int BKE_screen_view3d_layer_all(const struct bScreen *sc) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1); | ||||
| struct LocalViewInfo BKE_screen_view3d_localview_all(const struct bScreen *sc) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(1); | |||||
| void BKE_screen_view3d_sync(struct View3D *v3d, struct Scene *scene); | void BKE_screen_view3d_sync(struct View3D *v3d, struct Scene *scene); | ||||
| void BKE_screen_view3d_scene_sync(struct bScreen *sc); | void BKE_screen_view3d_scene_sync(struct bScreen *sc); | ||||
| void BKE_screen_view3d_main_sync(ListBase *screen_lb, struct Scene *scene); | void BKE_screen_view3d_main_sync(ListBase *screen_lb, struct Scene *scene); | ||||
| void BKE_screen_view3d_twmode_remove(struct View3D *v3d, const int i); | void BKE_screen_view3d_twmode_remove(struct View3D *v3d, const int i); | ||||
| void BKE_screen_view3d_main_twmode_remove(ListBase *screen_lb, struct Scene *scene, const int i); | void BKE_screen_view3d_main_twmode_remove(ListBase *screen_lb, struct Scene *scene, const int i); | ||||
| void BKE_screen_gpu_fx_validate(struct GPUFXSettings *fx_settings); | void BKE_screen_gpu_fx_validate(struct GPUFXSettings *fx_settings); | ||||
| /* zoom factor conversion */ | /* zoom factor conversion */ | ||||
| Show All 9 Lines | |||||