Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_modifier_types.h
| Show First 20 Lines • Show All 172 Lines • ▼ Show 20 Lines | typedef enum { | ||||
| SUBSURF_UV_SMOOTH_ALL = 5, | SUBSURF_UV_SMOOTH_ALL = 5, | ||||
| } eSubsurfUVSmooth; | } eSubsurfUVSmooth; | ||||
| typedef enum { | typedef enum { | ||||
| SUBSURF_BOUNDARY_SMOOTH_ALL = 0, | SUBSURF_BOUNDARY_SMOOTH_ALL = 0, | ||||
| SUBSURF_BOUNDARY_SMOOTH_PRESERVE_CORNERS = 1, | SUBSURF_BOUNDARY_SMOOTH_PRESERVE_CORNERS = 1, | ||||
| } eSubsurfBoundarySmooth; | } eSubsurfBoundarySmooth; | ||||
| typedef struct SubsurfRuntimeData { | |||||
| /* Cached subdivision surface descriptor, with topology and settings. */ | |||||
| struct Subdiv *subdiv; | |||||
| char set_by_draw_code; | |||||
| char _pad[7]; | |||||
| } SubsurfRuntimeData; | |||||
| typedef struct SubsurfModifierData { | typedef struct SubsurfModifierData { | ||||
| ModifierData modifier; | ModifierData modifier; | ||||
| short subdivType, levels, renderLevels, flags; | short subdivType, levels, renderLevels, flags; | ||||
| short uv_smooth; | short uv_smooth; | ||||
| short quality; | short quality; | ||||
| short boundary_smooth; | short boundary_smooth; | ||||
| char _pad[2]; | char _pad[2]; | ||||
| ▲ Show 20 Lines • Show All 2,192 Lines • Show Last 20 Lines | |||||