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-05-11 08:48:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-11 08:48:52 +0300
commit33f3298e28d8d16e870c7a6cb8ca0fef756335a2 (patch)
tree4786bbb15913e2651a4406305812e3b90b607fe1 /source/blender/draw/intern/draw_cache_impl_particles.c
parentdf10a2e030583ff9b2210e74ac262ec05d0684ae (diff)
Cleanup: use 'uint' in draw manager
Diffstat (limited to 'source/blender/draw/intern/draw_cache_impl_particles.c')
-rw-r--r--source/blender/draw/intern/draw_cache_impl_particles.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_particles.c b/source/blender/draw/intern/draw_cache_impl_particles.c
index 100b28057f4..017ffabab7a 100644
--- a/source/blender/draw/intern/draw_cache_impl_particles.c
+++ b/source/blender/draw/intern/draw_cache_impl_particles.c
@@ -316,7 +316,7 @@ static int particle_batch_cache_fill_segments(
const int num_path_keys,
const int num_uv_layers,
/*const*/ MTFace **mtfaces,
- unsigned int *uv_id,
+ uint *uv_id,
float (***r_parent_uvs)[2],
Gwn_IndexBufBuilder *elb,
HairAttributeID *attr_id,
@@ -408,7 +408,7 @@ static void particle_batch_cache_ensure_pos_and_seg(ParticleSystem *psys,
static Gwn_VertFormat format = { 0 };
static HairAttributeID attr_id;
- unsigned int *uv_id = NULL;
+ uint *uv_id = NULL;
int num_uv_layers = 0;
MTFace **mtfaces = NULL;
float (**parent_uvs)[2] = NULL;