Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/intern/DRW_render.h
| Show First 20 Lines • Show All 617 Lines • ▼ Show 20 Lines | void DRW_view_update(DRWView *view, | ||||
| const float (*culling_viewmat)[4], | const float (*culling_viewmat)[4], | ||||
| const float (*culling_winmat)[4]); | const float (*culling_winmat)[4]); | ||||
| void DRW_view_update_sub(DRWView *view, const float viewmat[4][4], const float winmat[4][4]); | void DRW_view_update_sub(DRWView *view, const float viewmat[4][4], const float winmat[4][4]); | ||||
| const DRWView *DRW_view_default_get(void); | const DRWView *DRW_view_default_get(void); | ||||
| void DRW_view_default_set(DRWView *view); | void DRW_view_default_set(DRWView *view); | ||||
| void DRW_view_reset(void); | void DRW_view_reset(void); | ||||
| void DRW_view_set_active(DRWView *view); | void DRW_view_set_active(DRWView *view); | ||||
| const DRWView *DRW_view_get_active(void); | |||||
| void DRW_view_clip_planes_set(DRWView *view, float (*planes)[4], int plane_len); | void DRW_view_clip_planes_set(DRWView *view, float (*planes)[4], int plane_len); | ||||
| void DRW_view_camtexco_set(DRWView *view, float texco[4]); | void DRW_view_camtexco_set(DRWView *view, float texco[4]); | ||||
| /* For all getters, if view is NULL, default view is assumed. */ | /* For all getters, if view is NULL, default view is assumed. */ | ||||
| void DRW_view_winmat_get(const DRWView *view, float mat[4][4], bool inverse); | void DRW_view_winmat_get(const DRWView *view, float mat[4][4], bool inverse); | ||||
| void DRW_view_viewmat_get(const DRWView *view, float mat[4][4], bool inverse); | void DRW_view_viewmat_get(const DRWView *view, float mat[4][4], bool inverse); | ||||
| void DRW_view_persmat_get(const DRWView *view, float mat[4][4], bool inverse); | void DRW_view_persmat_get(const DRWView *view, float mat[4][4], bool inverse); | ||||
| ▲ Show 20 Lines • Show All 151 Lines • Show Last 20 Lines | |||||