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:
authorAntonioya <blendergit@gmail.com>2018-11-25 22:00:18 +0300
committerAntonioya <blendergit@gmail.com>2018-11-25 22:00:44 +0300
commit7051a955166b47edc7bbc9cba91aa222da16f66f (patch)
tree0e56b84b5771140df842444f1fc3aa06ac091d21 /source/blender/draw/intern
parent6c704b46327501b6aeeca96c1edfa97156e829e3 (diff)
Cleanup: Silent compiler warning
A void function cannot return a value.
Diffstat (limited to 'source/blender/draw/intern')
-rw-r--r--source/blender/draw/intern/draw_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/intern/draw_cache.c b/source/blender/draw/intern/draw_cache.c
index d6caabcb203..325f607da2e 100644
--- a/source/blender/draw/intern/draw_cache.c
+++ b/source/blender/draw/intern/draw_cache.c
@@ -3293,7 +3293,7 @@ void DRW_cache_mball_face_wireframe_get(
Object *ob, struct GPUTexture **r_vert_tx, struct GPUTexture **r_faceid_tx, int *r_tri_count)
{
BLI_assert(ob->type == OB_MBALL);
- return DRW_metaball_batch_cache_get_wireframes_face_texbuf(ob, r_vert_tx, r_faceid_tx, r_tri_count);
+ DRW_metaball_batch_cache_get_wireframes_face_texbuf(ob, r_vert_tx, r_faceid_tx, r_tri_count);
}
GPUBatch **DRW_cache_mball_surface_shaded_get(