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>2018-04-21 21:22:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-04-21 21:22:12 +0300
commit46a9038f60da4449d58075c4bbeb26b4b3982c55 (patch)
tree03fd1746784f5931827a5553a1d4d40d86db5b92 /source/blender/blenlib/BLI_bitmap_draw_2d.h
parent1e9fb355bf7d4b162e924de24bdeadb197416d1b (diff)
Cleanup: variable naming
Diffstat (limited to 'source/blender/blenlib/BLI_bitmap_draw_2d.h')
-rw-r--r--source/blender/blenlib/BLI_bitmap_draw_2d.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_bitmap_draw_2d.h b/source/blender/blenlib/BLI_bitmap_draw_2d.h
index e41439e38d2..7036196425a 100644
--- a/source/blender/blenlib/BLI_bitmap_draw_2d.h
+++ b/source/blender/blenlib/BLI_bitmap_draw_2d.h
@@ -27,7 +27,7 @@
void BLI_bitmap_draw_2d_line_v2v2i(
const int p1[2], const int p2[2],
- bool (*callback)(int, int, void *), void *userData);
+ bool (*callback)(int, int, void *), void *user_data);
void BLI_bitmap_draw_2d_tri_v2i(
const int p1[2], const int p2[2], const int p3[2],
@@ -35,7 +35,7 @@ void BLI_bitmap_draw_2d_tri_v2i(
void BLI_bitmap_draw_2d_poly_v2i_n(
const int xmin, const int ymin, const int xmax, const int ymax,
- const int polyXY[][2], const int polyCorners,
- void (*callback)(int x, int x_end, int y, void *), void *userData);
+ const int verts[][2], const int verts_len,
+ void (*callback)(int x, int x_end, int y, void *), void *user_data);
#endif /* __BLI_BITMAP_DRAW_2D_H__ */