fix for own error - vertex custom-data flag wasnt working with the decimator

This commit is contained in:
Campbell Barton
2012-11-01 06:38:25 +00:00
parent 53160bd508
commit bd574fe2a2

View File

@@ -52,9 +52,9 @@
#define BOUNDARY_PRESERVE_WEIGHT 100.0f #define BOUNDARY_PRESERVE_WEIGHT 100.0f
typedef enum CD_UseFlag { typedef enum CD_UseFlag {
CD_DO_VERT, CD_DO_VERT = (1 << 0),
CD_DO_EDGE, CD_DO_EDGE = (1 << 1),
CD_DO_LOOP CD_DO_LOOP = (1 << 2)
} CD_UseFlag; } CD_UseFlag;