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:
authorCampbell Barton <ideasman42@gmail.com>2015-07-27 08:52:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-27 09:01:56 +0300
commite48c4d73d378b5ac7e8679b1eea04b265ef31612 (patch)
tree74d831dfc943024f8d305785623600c0a5313987 /source/blender/blenkernel/BKE_dynamicpaint.h
parentcdf2dbeb1fa28a91c5fea6b5b4de95f644dc970f (diff)
Replace MFace with looptri for dynamicpaint
D1429 by @lichtwerk, with edits
Diffstat (limited to 'source/blender/blenkernel/BKE_dynamicpaint.h')
-rw-r--r--source/blender/blenkernel/BKE_dynamicpaint.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/source/blender/blenkernel/BKE_dynamicpaint.h b/source/blender/blenkernel/BKE_dynamicpaint.h
index e7384fb1a9c..00256176d98 100644
--- a/source/blender/blenkernel/BKE_dynamicpaint.h
+++ b/source/blender/blenkernel/BKE_dynamicpaint.h
@@ -45,12 +45,10 @@ typedef struct PaintPoint {
/* Wet paint is handled at effect layer only
* and mixed to surface when drying */
- float e_color[3];
- float e_alpha;
+ float e_color[4];
float wetness;
short state;
- float color[3];
- float alpha;
+ float color[4];
} PaintPoint;
/* heigh field waves */