mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-16 14:55:46 -04:00
GPU/HW: Fix incorrect pipeline layout with texture buffers disabled
This commit is contained in:
@ -1011,8 +1011,8 @@ bool GPU_HW::CompilePipelines()
|
|||||||
if (!fs)
|
if (!fs)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
plconfig.layout =
|
plconfig.layout = use_buffer ? GPUPipeline::Layout::SingleTextureBufferAndPushConstants :
|
||||||
use_buffer ? GPUPipeline::Layout::SingleTextureBufferAndPushConstants : GPUPipeline::Layout::SingleTextureAndUBO;
|
GPUPipeline::Layout::SingleTextureAndPushConstants;
|
||||||
plconfig.fragment_shader = fs.get();
|
plconfig.fragment_shader = fs.get();
|
||||||
for (u8 depth_test = 0; depth_test < 2; depth_test++)
|
for (u8 depth_test = 0; depth_test < 2; depth_test++)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user