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>2016-10-26 12:14:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-10-26 15:24:19 +0300
commit8125271ddb29f8e42d00ee7667c24412d67fb2f5 (patch)
treed74c331c76219cea50d64fa745ca8b3f1b55938b /source/blender/blenlib/intern/bitmap_draw_2d.c
parent3e36cbb3deb317c903c32c7361bbcca9535a1aa9 (diff)
Cleanup: rename functions in BLI_bitmap_draw_2d
Diffstat (limited to 'source/blender/blenlib/intern/bitmap_draw_2d.c')
-rw-r--r--source/blender/blenlib/intern/bitmap_draw_2d.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/bitmap_draw_2d.c b/source/blender/blenlib/intern/bitmap_draw_2d.c
index 06d21855197..11072f668c8 100644
--- a/source/blender/blenlib/intern/bitmap_draw_2d.c
+++ b/source/blender/blenlib/intern/bitmap_draw_2d.c
@@ -40,7 +40,7 @@
/**
* Plot a line from \a p1 to \a p2 (inclusive).
*/
-void plot_line_v2v2i(
+void BLI_bitmap_draw_2d_line_v2v2i(
const int p1[2], const int p2[2],
bool (*callback)(int, int, void *), void *userData)
{
@@ -117,7 +117,7 @@ void plot_line_v2v2i(
* } while (++x != x_end);
* \endcode
*/
-void fill_poly_v2i_n(
+void BLI_bitmap_draw_2d_poly_v2i_n(
const int xmin, const int ymin, const int xmax, const int ymax,
const int verts[][2], const int nr,
void (*callback)(int x, int x_end, int y, void *), void *userData)