Add Render engines and add clean after error

This commit is contained in:
Raimund58
2023-09-02 08:54:25 +00:00
committed by harlekin
parent 6282fc72e3
commit 2219151405

View File

@@ -1073,10 +1073,12 @@ import java.util.regex.Pattern;
// Saved: '/tmp/cache/8_0001.png' // Saved: '/tmp/cache/8_0001.png'
return Error.Type.GPU_NOT_SUPPORTED; return Error.Type.GPU_NOT_SUPPORTED;
} }
else if (line.contains("Engine 'CYCLES' not available for scene") || line.contains("Engine 'BLENDER_EEVEE' not available for scene")) { else if (line.contains("Engine 'CYCLES' not available for scene") || line.contains("Engine 'BLENDER_EEVEE' not available for scene") || line.contains("Engine 'BLENDER_WORKBENCH' not available for scene") || line.contains("Engine 'HYDRA_STORM' not available for scene")) {
this.configuration.cleanWorkingDirectory();
return Error.Type.ENGINE_NOT_AVAILABLE; return Error.Type.ENGINE_NOT_AVAILABLE;
} }
else if (line.contains("Warning: Cycles is not enabled!")) { else if (line.contains("Warning: Cycles is not enabled!")) {
this.configuration.cleanWorkingDirectory();
return Error.Type.ENGINE_NOT_AVAILABLE; return Error.Type.ENGINE_NOT_AVAILABLE;
} }
else if (line.contains("OpenImageDenoise error: SSE4.1 support is required at minimum") || line.contains("OpenImageDenoiser is not supported on this CPU:") || line.contains("No device available to denoise on")) { else if (line.contains("OpenImageDenoise error: SSE4.1 support is required at minimum") || line.contains("OpenImageDenoiser is not supported on this CPU:") || line.contains("No device available to denoise on")) {