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:
authorJoseph Eagar <joeedh@gmail.com>2011-04-17 03:58:49 +0400
committerJoseph Eagar <joeedh@gmail.com>2011-04-17 03:58:49 +0400
commit489eaaa46d35d60feec16166cd6ba52674e945dd (patch)
treefca30982a61bf400e5ac6fd56c1e69fe92915135 /source/blender/blenlib/BLI_scanfill.h
parenta141cea6febe753d8d6109611581f9de34458739 (diff)
=bmesh= build modifier works now, also made scanfill thread-safe
Diffstat (limited to 'source/blender/blenlib/BLI_scanfill.h')
-rw-r--r--source/blender/blenlib/BLI_scanfill.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_scanfill.h b/source/blender/blenlib/BLI_scanfill.h
index e2f102c20eb..b0ed9271132 100644
--- a/source/blender/blenlib/BLI_scanfill.h
+++ b/source/blender/blenlib/BLI_scanfill.h
@@ -53,6 +53,8 @@ extern "C" {
/* scanfill.c: used in displist only... */
struct EditVert *BLI_addfillvert(float *vec);
struct EditEdge *BLI_addfilledge(struct EditVert *v1, struct EditVert *v2);
+
+int BLI_begin_edgefill(void);
int BLI_edgefill(int mat_nr);
void BLI_end_edgefill(void);