From 75b52da82612e3f01ecf5f82df4f89fdb6fd3308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Wed, 16 Sep 2020 01:58:23 +0200 Subject: Cleanup: DNA_fluid_types: Add DNA member name before enum declarations --- source/blender/makesdna/DNA_fluid_types.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_fluid_types.h b/source/blender/makesdna/DNA_fluid_types.h index 8e7f3471e1e..9e1691726d1 100644 --- a/source/blender/makesdna/DNA_fluid_types.h +++ b/source/blender/makesdna/DNA_fluid_types.h @@ -87,12 +87,14 @@ typedef enum FLUID_DisplayInterpolationMethod { FLUID_DISPLAY_INTERP_CLOSEST = 2, } FLUID_DisplayInterpolationMethod; +/* FluidDomainSettings.vector_draw_type */ enum { VECTOR_DRAW_NEEDLE = 0, VECTOR_DRAW_STREAMLINE = 1, VECTOR_DRAW_MAC = 2, }; +/* FluidDomainSettings.vector_draw_mac_components */ enum { VECTOR_DRAW_MAC_X = (1 << 0), VECTOR_DRAW_MAC_Y = (1 << 1), @@ -106,11 +108,13 @@ typedef enum FLUID_DisplayVectorField { FLUID_DOMAIN_VECTOR_FIELD_FORCE = 2, } FLUID_DisplayVectorField; +/* FluidDomainSettings.sndparticle_boundary */ enum { SNDPARTICLE_BOUNDARY_DELETE = 0, SNDPARTICLE_BOUNDARY_PUSHOUT = 1, }; +/* FluidDomainSettings.sndparticle_combined_export */ enum { SNDPARTICLE_COMBINED_EXPORT_OFF = 0, SNDPARTICLE_COMBINED_EXPORT_SPRAY_FOAM = 1, @@ -119,6 +123,7 @@ enum { SNDPARTICLE_COMBINED_EXPORT_SPRAY_FOAM_BUBBLE = 4, }; +/* FluidDomainSettings.coba_field */ enum { FLUID_DOMAIN_FIELD_DENSITY = 0, FLUID_DOMAIN_FIELD_HEAT = 1, -- cgit v1.2.3