[Bf-blender-cvs] [0e97d3f2ba3] temp-greasepencil-vfx: Reorder FX shader types

Antonio Vazquez noreply at git.blender.org
Sun Jul 1 11:22:10 CEST 2018


Commit: 0e97d3f2ba372ed69a0a39cf34b9722d645d217f
Author: Antonio Vazquez
Date:   Sun Jul 1 11:21:59 2018 +0200
Branches: temp-greasepencil-vfx
https://developer.blender.org/rB0e97d3f2ba372ed69a0a39cf34b9722d645d217f

Reorder FX shader types

===================================================================

M	source/blender/makesdna/DNA_shader_fx_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_shader_fx_types.h b/source/blender/makesdna/DNA_shader_fx_types.h
index 3c229539ae7..2990c177b9e 100644
--- a/source/blender/makesdna/DNA_shader_fx_types.h
+++ b/source/blender/makesdna/DNA_shader_fx_types.h
@@ -35,11 +35,11 @@
 typedef enum ShaderFxType {
 	eShaderFxType_None      = 0,
 	eShaderFxType_Blur      = 1,
-	eShaderFxType_Wave      = 2,
-	eShaderFxType_Pixel     = 3,
-	eShaderFxType_Swirl     = 4,
-	eShaderFxType_Flip      = 5,
-	eShaderFxType_Light     = 6,
+	eShaderFxType_Flip      = 2,
+	eShaderFxType_Light     = 3,
+	eShaderFxType_Pixel     = 4,
+	eShaderFxType_Swirl     = 5,
+	eShaderFxType_Wave      = 6,
 	NUM_SHADER_FX_TYPES
 } ShaderFxType;



More information about the Bf-blender-cvs mailing list