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>2014-10-10 00:39:59 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-10-10 00:44:03 +0400
commit30dab51c29e863d3f605343f6308c71d0a6d3ce1 (patch)
tree5bb2f3ca81cff63ac0529277114bb373ebb5424a /source/blender/editors/sculpt_paint/sculpt.c
parentad4980ce5e411e094bd2ccb67dfab4d1fa697a83 (diff)
Cleanup: use bool and const args
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 766048d54bb..0e0012c198f 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -268,8 +268,8 @@ typedef struct {
/* Original coordinate, normal, and mask */
const float *co;
- float mask;
const short *no;
+ float mask;
} SculptOrigVertData;
@@ -4008,7 +4008,7 @@ typedef struct {
const float *ray_start, *ray_normal;
bool hit;
float dist;
- int original;
+ bool original;
} SculptRaycastData;
typedef struct {