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:
authorSybren A. Stüvel <sybren@blender.org>2020-08-07 13:39:35 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-08-07 14:38:06 +0300
commitc889d93c80c52603a501b6b76f6e251b7a6112d2 (patch)
treee39563837bc237f92b1ad5a9e429b41fe69a6e4c /source/blender/gpu/intern/gpu_select_pick.c
parent326e137a8cfaac6587a83d4c61d2889832926827 (diff)
Cleanup: GPU, Clang-Tidy else-after-return fixes
This addresses warnings from Clang-Tidy's `readability-else-after-return` rule in the `source/blender/gpu` module. No functional changes.
Diffstat (limited to 'source/blender/gpu/intern/gpu_select_pick.c')
-rw-r--r--source/blender/gpu/intern/gpu_select_pick.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/source/blender/gpu/intern/gpu_select_pick.c b/source/blender/gpu/intern/gpu_select_pick.c
index 3025b5d66da..0f6f29fab40 100644
--- a/source/blender/gpu/intern/gpu_select_pick.c
+++ b/source/blender/gpu/intern/gpu_select_pick.c
@@ -204,12 +204,11 @@ static int depth_id_cmp(const void *v1, const void *v2)
if (d1->id < d2->id) {
return -1;
}
- else if (d1->id > d2->id) {
+ if (d1->id > d2->id) {
return 1;
}
- else {
- return 0;
- }
+
+ return 0;
}
static int depth_cmp(const void *v1, const void *v2)
@@ -218,12 +217,11 @@ static int depth_cmp(const void *v1, const void *v2)
if (d1->depth < d2->depth) {
return -1;
}
- else if (d1->depth > d2->depth) {
+ if (d1->depth > d2->depth) {
return 1;
}
- else {
- return 0;
- }
+
+ return 0;
}
/* depth sorting */