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>2012-04-16 09:03:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-16 09:03:04 +0400
commit79693e45431bb7ea3ba980a83081b0c98cd422de (patch)
tree8606a48fab2109cd7caca586e0375a6287213d7c /source/blender/blenlib/BLI_scanfill.h
parentd89db25c53b4b00038061dc15fede87dd36276a0 (diff)
code cleanup: avoid confusion with incorrectly named argument to BLI_edgefill(), was 'mat_nr', now 'do_quad_tri_speedup'
Diffstat (limited to 'source/blender/blenlib/BLI_scanfill.h')
-rw-r--r--source/blender/blenlib/BLI_scanfill.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_scanfill.h b/source/blender/blenlib/BLI_scanfill.h
index 1fe71bffba8..6dcc1df41a3 100644
--- a/source/blender/blenlib/BLI_scanfill.h
+++ b/source/blender/blenlib/BLI_scanfill.h
@@ -86,7 +86,7 @@ struct ScanFillEdge *BLI_addfilledge(struct ScanFillVert *v1, struct ScanFillVer
#define FILLBOUNDARY 1
int BLI_begin_edgefill(void);
-int BLI_edgefill(short mat_nr);
+int BLI_edgefill(const short do_quad_tri_speedup);
void BLI_end_edgefill(void);
/* These callbacks are needed to make the lib finction properly */