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:
authorJeroen Bakker <jeroen@blender.org>2022-10-21 15:57:54 +0300
committerJeroen Bakker <jeroen@blender.org>2022-10-21 15:58:27 +0300
commitd39f2eed980dc97de2180d29a7f8c45f4233e70c (patch)
treeb2756849c029a9b7ca9810f106c6cdf7a7fd5363
parente8c4411035234696742b9cd97525fe094fd3f4ac (diff)
GPU: Don't exit after first GPUBackend.
-rw-r--r--source/blender/gpu/intern/gpu_shader_builder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_shader_builder.cc b/source/blender/gpu/intern/gpu_shader_builder.cc
index 9a67ddde5e6..abb45ca074a 100644
--- a/source/blender/gpu/intern/gpu_shader_builder.cc
+++ b/source/blender/gpu/intern/gpu_shader_builder.cc
@@ -115,8 +115,8 @@ int main(int argc, const char *argv[])
exit_code = 1;
}
builder.exit();
- exit(exit_code);
}
+ exit(exit_code);
return exit_code;
}