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>2019-04-18 08:21:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-18 08:59:28 +0300
commit333cdbb41025db012239e0549a439515880aad9b (patch)
tree7f34b68d8d412bd69073eabee1ed01e2ded0437f /source/blender/blenkernel/BKE_modifier.h
parent93e876c4f89909ff1e399d7f038aac134367b120 (diff)
Cleanup: comment blocks
Diffstat (limited to 'source/blender/blenkernel/BKE_modifier.h')
-rw-r--r--source/blender/blenkernel/BKE_modifier.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/source/blender/blenkernel/BKE_modifier.h b/source/blender/blenkernel/BKE_modifier.h
index 68ef413b198..5b6f3cf17c4 100644
--- a/source/blender/blenkernel/BKE_modifier.h
+++ b/source/blender/blenkernel/BKE_modifier.h
@@ -110,13 +110,16 @@ typedef void (*TexWalkFunc)(void *userData,
const char *propname);
typedef enum ModifierApplyFlag {
- MOD_APPLY_RENDER = 1 << 0, /* Render time. */
- MOD_APPLY_USECACHE = 1 << 1, /* Result of evaluation will be cached, so modifier might
- * want to cache data for quick updates (used by subsurf) */
- MOD_APPLY_ORCO = 1 << 2, /* Modifier evaluated for undeformed texture coordinates */
- MOD_APPLY_IGNORE_SIMPLIFY = 1 << 3, /* Ignore scene simplification flag and use subdivisions
- * level set in multires modifier.
- */
+ /** Render time. */
+ MOD_APPLY_RENDER = 1 << 0,
+ /** Result of evaluation will be cached, so modifier might
+ * want to cache data for quick updates (used by subsurf) */
+ MOD_APPLY_USECACHE = 1 << 1,
+ /** Modifier evaluated for undeformed texture coordinates */
+ MOD_APPLY_ORCO = 1 << 2,
+ /** Ignore scene simplification flag and use subdivisions
+ * level set in multires modifier. */
+ MOD_APPLY_IGNORE_SIMPLIFY = 1 << 3,
} ModifierApplyFlag;
typedef struct ModifierUpdateDepsgraphContext {