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:
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_intern.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_intern.h b/source/blender/editors/sculpt_paint/sculpt_intern.h
index 4b12947a37d..91656cb2ad5 100644
--- a/source/blender/editors/sculpt_paint/sculpt_intern.h
+++ b/source/blender/editors/sculpt_paint/sculpt_intern.h
@@ -30,6 +30,7 @@
#include "BLI_bitmap.h"
#include "BLI_threads.h"
+#include "BLI_gsqueue.h"
#include "BKE_paint.h"
#include "BKE_pbvh.h"
@@ -173,7 +174,7 @@ void SCULPT_flip_quat_by_symm_area(float quat[3],
/* Flood Fill. */
typedef struct {
- struct GSQueue *queue;
+ GSQueue *queue;
char *visited_vertices;
} SculptFloodFill;