Fix: a GPU driver issue is not the same as out of vram.

This commit is contained in:
Raimund58
2023-11-28 12:28:39 +00:00
committed by Sheepit Renderfarm
parent 1aa4ff3063
commit 199ee44671
2 changed files with 10 additions and 103 deletions

View File

@@ -49,6 +49,7 @@ public class Error {
OS_NOT_SUPPORTED(17),
CPU_NOT_SUPPORTED(18),
GPU_NOT_SUPPORTED(19),
GPU_OR_DRIVER_ERROR(32),
ENGINE_NOT_AVAILABLE(27),
VALIDATION_FAILED(25),
IMAGE_WRONG_DIMENSION(26),
@@ -228,6 +229,8 @@ public class Error {
return "Blender failed to read the project files. Will try another project in a few minutes.";
case DETECT_DEVICE_ERROR:
return "Blender failed to detect the render device. Please check if you have all the necessary libraries installed and if your drivers are up to date.";
case GPU_OR_DRIVER_ERROR:
return "There was an error with your GPU or driver. Please ensure you have the latest driver and don't run extreme over/underclockings.";
default:
return in.toString();
}