GPU/HW: Fix incorrect pipeline layout with texture buffers disabled

This commit is contained in:
Stenzek 2023-12-27 02:03:50 +10:00
parent 489235f48a
commit 98d5b98ab1
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -1011,8 +1011,8 @@ bool GPU_HW::CompilePipelines()
if (!fs)
return false;
plconfig.layout =
use_buffer ? GPUPipeline::Layout::SingleTextureBufferAndPushConstants : GPUPipeline::Layout::SingleTextureAndUBO;
plconfig.layout = use_buffer ? GPUPipeline::Layout::SingleTextureBufferAndPushConstants :
GPUPipeline::Layout::SingleTextureAndPushConstants;
plconfig.fragment_shader = fs.get();
for (u8 depth_test = 0; depth_test < 2; depth_test++)
{