Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_dynamicpaint.h
| Show All 22 Lines | |||||
| #ifndef __BKE_DYNAMICPAINT_H__ | #ifndef __BKE_DYNAMICPAINT_H__ | ||||
| #define __BKE_DYNAMICPAINT_H__ | #define __BKE_DYNAMICPAINT_H__ | ||||
| /** \file BKE_dynamicpaint.h | /** \file BKE_dynamicpaint.h | ||||
| * \ingroup bke | * \ingroup bke | ||||
| */ | */ | ||||
| struct Scene; | struct Scene; | ||||
| struct SceneLayer; | struct ViewLayer; | ||||
| struct EvaluationContext; | struct EvaluationContext; | ||||
| /* Actual surface point */ | /* Actual surface point */ | ||||
| typedef struct PaintSurfaceData { | typedef struct PaintSurfaceData { | ||||
| void *format_data; /* special data for each surface "format" */ | void *format_data; /* special data for each surface "format" */ | ||||
| void *type_data; /* data used by specific surface type */ | void *type_data; /* data used by specific surface type */ | ||||
| struct PaintAdjData *adj_data; /* adjacency data for current surface */ | struct PaintAdjData *adj_data; /* adjacency data for current surface */ | ||||
| ▲ Show 20 Lines • Show All 65 Lines • Show Last 20 Lines | |||||