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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-10-09 17:47:16 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-10-09 17:47:16 +0300
commitb8e34355c1aa120b121655a9a8adaa9c58f2e80d (patch)
treeef013f39595e7ff48dcf062fbbe1e0bbb1f44059 /source/blender/gpu
parentbc6f439e94a56be4e52e588593a0d8003f8d65e5 (diff)
GPU: Consider softpipe as software renderer
Diffstat (limited to 'source/blender/gpu')
-rw-r--r--source/blender/gpu/intern/gpu_platform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpu/intern/gpu_platform.c b/source/blender/gpu/intern/gpu_platform.c
index b161052acc3..871052bb070 100644
--- a/source/blender/gpu/intern/gpu_platform.c
+++ b/source/blender/gpu/intern/gpu_platform.c
@@ -186,7 +186,7 @@ void gpu_platform_init(void)
GPG.device = GPU_DEVICE_SOFTWARE;
GPG.driver = GPU_DRIVER_SOFTWARE;
}
- else if (strstr(renderer, "llvmpipe")) {
+ else if (strstr(renderer, "llvmpipe") || strstr(renderer, "softpipe")) {
GPG.device = GPU_DEVICE_SOFTWARE;
GPG.driver = GPU_DRIVER_SOFTWARE;
}