Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_gpencil_types.h
| Show First 20 Lines • Show All 499 Lines • ▼ Show 20 Lines | typedef struct bGPdata_Runtime { | ||||
| /** Flags for stroke that cache represents. */ | /** Flags for stroke that cache represents. */ | ||||
| short sbuffer_sflag; | short sbuffer_sflag; | ||||
| char _pad1[2]; | char _pad1[2]; | ||||
| /** Number of elements currently used in cache. */ | /** Number of elements currently used in cache. */ | ||||
| int sbuffer_used; | int sbuffer_used; | ||||
| /** Number of total elements available in cache. */ | /** Number of total elements available in cache. */ | ||||
| int sbuffer_size; | int sbuffer_size; | ||||
| /** Vertex Color applied to point (while drawing). */ | |||||
| float vert_color[4]; | |||||
| /** Vertex Color applied to Fill (while drawing). */ | /** Vertex Color applied to Fill (while drawing). */ | ||||
| float vert_color_fill[4]; | float vert_color_fill[4]; | ||||
| /** Number of control-points for stroke. */ | /** Number of control-points for stroke. */ | ||||
| int tot_cp_points; | int tot_cp_points; | ||||
| char _pad2[4]; | char _pad2[4]; | ||||
| /** Array of control-points for stroke. */ | /** Array of control-points for stroke. */ | ||||
| bGPDcontrolpoint *cp_points; | bGPDcontrolpoint *cp_points; | ||||
| ▲ Show 20 Lines • Show All 223 Lines • Show Last 20 Lines | |||||