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:
authorCampbell Barton <ideasman42@gmail.com>2017-10-20 01:40:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-10-20 01:40:08 +0300
commitaa7e76b2e35c6ff6c58ccd4373b68dde8283a3a3 (patch)
tree5b1bf92ebe488833668589d3a101311ef3b08faa /source/blender/makesdna
parentfc10484f7c55d425f8374f2ea64f6b525cff2b7d (diff)
parentcb957fd8e0e2e0d0dbbebc3e7e3fcc5bfa8b51a8 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_gpencil_types.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_gpencil_types.h b/source/blender/makesdna/DNA_gpencil_types.h
index ba1bf1520ce..d5a5a1d5d4a 100644
--- a/source/blender/makesdna/DNA_gpencil_types.h
+++ b/source/blender/makesdna/DNA_gpencil_types.h
@@ -60,11 +60,13 @@ typedef enum eGPDspoint_Flag {
} eGPSPoint_Flag;
/* Grease-Pencil Annotations - 'Triangle'
- * -> A triangle contains the index of three vertices for filling the stroke
- * This is only used if high quality fill is enabled
+ * A triangle contains the index of three vertices for filling the stroke
+ * This is only used if high quality fill is enabled.
+ * (not saved to blend file).
*/
typedef struct bGPDtriangle {
- int v1, v2, v3; /* indices for tesselated triangle used for GP Fill */
+ /* indices for tesselated triangle used for GP Fill */
+ unsigned int verts[3];
} bGPDtriangle;
/* GP brush (used for new strokes) */