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/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 {