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>2014-05-31 16:25:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-06-14 02:21:51 +0400
commitf0f45eea2e1c83138ba2cf01b363c67f7f6dcb59 (patch)
tree2d08e5512f943b52abc829d18526b7284b07fbdb /source/blender/blenlib/BLI_polyfill2d.h
parent0ce3a755f83b047f49f78da1729a73b56b9c9d55 (diff)
Polyfill2d: replace array with linklist, faster resizing
approx 4.0x speedup
Diffstat (limited to 'source/blender/blenlib/BLI_polyfill2d.h')
-rw-r--r--source/blender/blenlib/BLI_polyfill2d.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/blenlib/BLI_polyfill2d.h b/source/blender/blenlib/BLI_polyfill2d.h
index d434e1b82b9..bdc9c105d05 100644
--- a/source/blender/blenlib/BLI_polyfill2d.h
+++ b/source/blender/blenlib/BLI_polyfill2d.h
@@ -23,14 +23,6 @@
struct MemArena;
-void BLI_polyfill_calc_ex(
- const float (*coords)[2],
- const unsigned int count,
- unsigned int (*r_tris)[3],
-
- /* avoid allocating each time */
- unsigned int *r_indices, signed char *r_coords_sign);
-
void BLI_polyfill_calc_arena(
const float (*coords)[2],
const unsigned int coords_tot,