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:
authorDalai Felinto <dfelinto@gmail.com>2019-05-15 00:11:54 +0300
committerDalai Felinto <dfelinto@gmail.com>2019-05-15 00:11:54 +0300
commitf4902fa268862c9c024b6d68a8b848dd00d2cd41 (patch)
tree92fcefef8288ae221f49eb98af19d80eacf0752f /source/blender/draw/modes/paint_texture_mode.c
parent777a546c0c789648f0f75315333d99e58050cd09 (diff)
Code style cleanup: `make format`
Diffstat (limited to 'source/blender/draw/modes/paint_texture_mode.c')
-rw-r--r--source/blender/draw/modes/paint_texture_mode.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/draw/modes/paint_texture_mode.c b/source/blender/draw/modes/paint_texture_mode.c
index d0594241f7a..e99a0c0dab2 100644
--- a/source/blender/draw/modes/paint_texture_mode.c
+++ b/source/blender/draw/modes/paint_texture_mode.c
@@ -316,8 +316,7 @@ static void PAINT_TEXTURE_cache_populate(void *vedata, Object *ob)
for (int i = 0; i < mat_nr; i++) {
const int index = use_material_slots ? i : 0;
if ((i < me->totcol) && stl->g_data->shgroup_image_array[index]) {
- DRW_shgroup_call(
- stl->g_data->shgroup_image_array[index], geom_array[i], ob->obmat);
+ DRW_shgroup_call(stl->g_data->shgroup_image_array[index], geom_array[i], ob->obmat);
}
else {
DRW_shgroup_call(stl->g_data->shgroup_fallback, geom_array[i], ob->obmat);