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:
Diffstat (limited to 'source/blender/blenlib/BLI_polyfill_2d.h')
-rw-r--r--source/blender/blenlib/BLI_polyfill_2d.h22
1 files changed, 10 insertions, 12 deletions
diff --git a/source/blender/blenlib/BLI_polyfill_2d.h b/source/blender/blenlib/BLI_polyfill_2d.h
index cf4b280a2fb..4b229cc6c1e 100644
--- a/source/blender/blenlib/BLI_polyfill_2d.h
+++ b/source/blender/blenlib/BLI_polyfill_2d.h
@@ -23,21 +23,19 @@
struct MemArena;
-void BLI_polyfill_calc_arena(
- const float (*coords)[2],
- const unsigned int coords_tot,
- const int coords_sign,
- unsigned int (*r_tris)[3],
+void BLI_polyfill_calc_arena(const float (*coords)[2],
+ const unsigned int coords_tot,
+ const int coords_sign,
+ unsigned int (*r_tris)[3],
- struct MemArena *arena);
+ struct MemArena *arena);
-void BLI_polyfill_calc(
- const float (*coords)[2],
- const unsigned int coords_tot,
- const int coords_sign,
- unsigned int (*r_tris)[3]);
+void BLI_polyfill_calc(const float (*coords)[2],
+ const unsigned int coords_tot,
+ const int coords_sign,
+ unsigned int (*r_tris)[3]);
/* default size of polyfill arena */
#define BLI_POLYFILL_ARENA_SIZE MEM_SIZE_OPTIMAL(1 << 14)
-#endif /* __BLI_POLYFILL_2D_H__ */
+#endif /* __BLI_POLYFILL_2D_H__ */