Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_attribute_access.hh
| Show First 20 Lines • Show All 301 Lines • ▼ Show 20 Lines | public: | ||||
| } | } | ||||
| }; | }; | ||||
| using BooleanReadAttribute = TypedReadAttribute<bool>; | using BooleanReadAttribute = TypedReadAttribute<bool>; | ||||
| using FloatReadAttribute = TypedReadAttribute<float>; | using FloatReadAttribute = TypedReadAttribute<float>; | ||||
| using Float2ReadAttribute = TypedReadAttribute<float2>; | using Float2ReadAttribute = TypedReadAttribute<float2>; | ||||
| using Float3ReadAttribute = TypedReadAttribute<float3>; | using Float3ReadAttribute = TypedReadAttribute<float3>; | ||||
| using Int32ReadAttribute = TypedReadAttribute<int>; | using Int32ReadAttribute = TypedReadAttribute<int>; | ||||
| using Color4fReadAttribute = TypedReadAttribute<Color4f>; | using ColorGeometryReadAttribute = TypedReadAttribute<ColorGeometry>; | ||||
| using BooleanWriteAttribute = TypedWriteAttribute<bool>; | using BooleanWriteAttribute = TypedWriteAttribute<bool>; | ||||
| using FloatWriteAttribute = TypedWriteAttribute<float>; | using FloatWriteAttribute = TypedWriteAttribute<float>; | ||||
| using Float2WriteAttribute = TypedWriteAttribute<float2>; | using Float2WriteAttribute = TypedWriteAttribute<float2>; | ||||
| using Float3WriteAttribute = TypedWriteAttribute<float3>; | using Float3WriteAttribute = TypedWriteAttribute<float3>; | ||||
| using Int32WriteAttribute = TypedWriteAttribute<int>; | using Int32WriteAttribute = TypedWriteAttribute<int>; | ||||
| using Color4fWriteAttribute = TypedWriteAttribute<Color4f>; | using ColorGeometryWriteAttribute = TypedWriteAttribute<ColorGeometry>; | ||||
| } // namespace blender::bke | } // namespace blender::bke | ||||