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>2019-04-04 00:13:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-04 00:13:13 +0300
commit22bc9fb4a9eca2dce4f51652d61f14f65eef0227 (patch)
tree4e9526723e74702bfcfd23a408c4a437a014a7e9 /source/blender/draw/intern/draw_cache_impl_displist.c
parent2933fd6c7c16d95c8d8e7a5b171edd35632cdb50 (diff)
Cleanup: style
Diffstat (limited to 'source/blender/draw/intern/draw_cache_impl_displist.c')
-rw-r--r--source/blender/draw/intern/draw_cache_impl_displist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/draw/intern/draw_cache_impl_displist.c b/source/blender/draw/intern/draw_cache_impl_displist.c
index 4dfe71df36c..9f90ac4fd6c 100644
--- a/source/blender/draw/intern/draw_cache_impl_displist.c
+++ b/source/blender/draw/intern/draw_cache_impl_displist.c
@@ -597,9 +597,9 @@ static void set_edge_adjacency_lines_indices(EdgeHash *eh, GPUIndexBufBuilder *e
static void set_edges_adjacency_lines_indices(void *thunk, uint v1, uint v2, uint v3)
{
- void **packed = (void**)thunk;
+ void **packed = (void **)thunk;
GPUIndexBufBuilder *elb = (GPUIndexBufBuilder*)packed[0];
- EdgeHash *eh = (EdgeHash*)packed[1];
+ EdgeHash *eh = (EdgeHash *)packed[1];
bool *r_is_manifold = (bool*)packed[2];
set_edge_adjacency_lines_indices(eh, elb, r_is_manifold, v1, v2, v3);