PostProcessing/FX: Log pipeline creation error description

This commit is contained in:
Stenzek 2024-09-03 23:28:27 +10:00
parent e8eac9f3a8
commit 2a05e8fb99
No known key found for this signature in database

View file

@ -1448,10 +1448,10 @@ bool PostProcessing::ReShadeFXShader::CompilePipeline(GPUTexture::Format format,
return false;
}
pass.pipeline = g_gpu_device->CreatePipeline(plconfig);
pass.pipeline = g_gpu_device->CreatePipeline(plconfig, &error);
if (!pass.pipeline)
{
ERROR_LOG("Failed to create pipeline for pass '{}'", info.name);
ERROR_LOG("Failed to create pipeline for pass '{}': {}", info.name, error.GetDescription());
progress->PopState();
return false;
}