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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-11-29 18:16:10 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-11-29 18:25:23 +0300
commit51c85a23cafdf90aa88d57faea60f6a8103d1c7a (patch)
treeb80bfdb5713c14192fa9237fe9e37be3f904951e /source/blender/makesdna/DNA_particle_types.h
parente6605d5f3746c1610b4f6e976c7e29074e82c3cd (diff)
Cleanup: mark `PART_DRAW_EMITTER` of ParticleSetting drawflags as dreprecated.
Diffstat (limited to 'source/blender/makesdna/DNA_particle_types.h')
-rw-r--r--source/blender/makesdna/DNA_particle_types.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_particle_types.h b/source/blender/makesdna/DNA_particle_types.h
index ebccb36a671..5d830cf3d5f 100644
--- a/source/blender/makesdna/DNA_particle_types.h
+++ b/source/blender/makesdna/DNA_particle_types.h
@@ -347,7 +347,9 @@ typedef enum eParticleDrawFlag {
PART_DRAW_VEL = (1 << 0),
PART_DRAW_GLOBAL_OB = (1 << 1),
PART_DRAW_SIZE = (1 << 2),
- PART_DRAW_EMITTER = (1 << 3), /* render emitter also */
+#ifdef DNA_DEPRECATED
+ PART_DRAW_EMITTER = (1 << 3), /* render emitter also */ /* DEPRECATED */
+#endif
PART_DRAW_HEALTH = (1 << 4),
PART_ABS_PATH_TIME = (1 << 5),
PART_DRAW_COUNT_GR = (1 << 6),