Merge branch 'Add-missing-denoise-error' into 'master'

Add missing denoise error

See merge request sheepitrenderfarm/client!129
This commit is contained in:
Sheepit Renderfarm
2022-04-29 15:52:16 +00:00
2 changed files with 5 additions and 2 deletions

View File

@@ -52,6 +52,7 @@ public class Error {
ENGINE_NOT_AVAILABLE(27),
VALIDATION_FAILED(25),
IMAGE_WRONG_DIMENSION(26),
DENOISING_NOT_SUPPORTED(29),
// internal error handling
NO_SPACE_LEFT_ON_DEVICE(100),
@@ -198,6 +199,8 @@ public class Error {
return "This Operating System is not supported.";
case CPU_NOT_SUPPORTED:
return "This CPU is not supported.";
case DENOISING_NOT_SUPPORTED:
return "Denoising is not supported on this device.";
case ENGINE_NOT_AVAILABLE:
return "The project requires a rendering engine that isn't supported on this machine. Will try another project in a few minutes.";
case NO_SPACE_LEFT_ON_DEVICE: