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-01-04 14:50:05 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-01-04 14:50:05 +0300
commit7a10960947cd0cfe739fe677603ae6f69343b1fb (patch)
treef2a35e70a038f7bb18c06d0894856d076d5e3c67 /source/blender/gpu/intern
parent785fc137cefd7b7afda0b724be9954a2faa27763 (diff)
Provide more information on unknown GPU
Diffstat (limited to 'source/blender/gpu/intern')
-rw-r--r--source/blender/gpu/intern/gpu_extensions.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/gpu/intern/gpu_extensions.c b/source/blender/gpu/intern/gpu_extensions.c
index 10bd5810cc9..6bdc9c03297 100644
--- a/source/blender/gpu/intern/gpu_extensions.c
+++ b/source/blender/gpu/intern/gpu_extensions.c
@@ -345,6 +345,9 @@ void gpu_extensions_init(void)
}
else {
printf("Warning: Could not find a matching GPU name. Things may not behave as expected.\n");
+ printf("Detected OpenGL configuration:\n");
+ printf("Vendor: %s\n", vendor);
+ printf("Renderer: %s\n", renderer);
GG.device = GPU_DEVICE_ANY;
GG.driver = GPU_DRIVER_ANY;
}