Changeset View
Changeset View
Standalone View
Standalone View
source/blender/draw/intern/draw_manager.h
| Show First 20 Lines • Show All 324 Lines • ▼ Show 20 Lines | struct DRWPass { | ||||
| /* Linked list */ | /* Linked list */ | ||||
| struct { | struct { | ||||
| DRWShadingGroup *first; | DRWShadingGroup *first; | ||||
| DRWShadingGroup *last; | DRWShadingGroup *last; | ||||
| } shgroups; | } shgroups; | ||||
| DRWResourceHandle handle; | DRWResourceHandle handle; | ||||
| DRWState state; | DRWState state; | ||||
| /* XXX: This needs a better solution */ | |||||
| float line_width; | |||||
| char name[MAX_PASS_NAME]; | char name[MAX_PASS_NAME]; | ||||
| }; | }; | ||||
| /* keep in sync with viewBlock */ | /* keep in sync with viewBlock */ | ||||
| typedef struct DRWViewUboStorage { | typedef struct DRWViewUboStorage { | ||||
| /* View matrices */ | /* View matrices */ | ||||
| float persmat[4][4]; | float persmat[4][4]; | ||||
| float persinv[4][4]; | float persinv[4][4]; | ||||
| ▲ Show 20 Lines • Show All 234 Lines • Show Last 20 Lines | |||||