Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_fluid_types.h
| Show First 20 Lines • Show All 246 Lines • ▼ Show 20 Lines | typedef struct FluidDomainSettings { | ||||
| struct FluidModifierData *mmd; /* For fast RNA access. */ | struct FluidModifierData *mmd; /* For fast RNA access. */ | ||||
| struct MANTA *fluid; | struct MANTA *fluid; | ||||
| struct MANTA *fluid_old; /* Adaptive domain needs access to old fluid state. */ | struct MANTA *fluid_old; /* Adaptive domain needs access to old fluid state. */ | ||||
| void *fluid_mutex; | void *fluid_mutex; | ||||
| struct Collection *fluid_group; | struct Collection *fluid_group; | ||||
| struct Collection *force_group; /* UNUSED */ | struct Collection *force_group; /* UNUSED */ | ||||
| struct Collection *effector_group; /* Effector objects group. */ | struct Collection *effector_group; /* Effector objects group. */ | ||||
| struct GPUTexture *tex; | struct GPUTexture *tex_density; | ||||
| struct GPUTexture *tex_color; | |||||
| struct GPUTexture *tex_wt; | struct GPUTexture *tex_wt; | ||||
| struct GPUTexture *tex_shadow; | struct GPUTexture *tex_shadow; | ||||
| struct GPUTexture *tex_flame; | struct GPUTexture *tex_flame; | ||||
| struct GPUTexture *tex_flame_coba; | struct GPUTexture *tex_flame_coba; | ||||
| struct GPUTexture *tex_coba; | struct GPUTexture *tex_coba; | ||||
| struct GPUTexture *tex_field; | struct GPUTexture *tex_field; | ||||
| struct GPUTexture *tex_velocity_x; | struct GPUTexture *tex_velocity_x; | ||||
| struct GPUTexture *tex_velocity_y; | struct GPUTexture *tex_velocity_y; | ||||
| ▲ Show 20 Lines • Show All 327 Lines • Show Last 20 Lines | |||||