Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/simulation/intern')
-rw-r--r--source/blender/simulation/intern/hair_volume.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/simulation/intern/hair_volume.cpp b/source/blender/simulation/intern/hair_volume.cpp
index 1b65dd8f22c..08af2344bc4 100644
--- a/source/blender/simulation/intern/hair_volume.cpp
+++ b/source/blender/simulation/intern/hair_volume.cpp
@@ -68,13 +68,13 @@ BLI_INLINE int hair_grid_size(const int res[3])
return res[0] * res[1] * res[2];
}
-typedef struct HairGridVert {
+struct HairGridVert {
int samples;
float velocity[3];
float density;
float velocity_smooth[3];
-} HairGridVert;
+};
struct HairGrid {
HairGridVert *verts;