From 3261ad7e4e805bbe47682c51bef615b129cba95c Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Mon, 4 Mar 2019 23:35:34 -0800 Subject: Updates to comply with addition of ShaderFlags to IPipelineState::BindStaticResources --- Tests/TestApp/src/TestTexturing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tests/TestApp/src/TestTexturing.cpp') diff --git a/Tests/TestApp/src/TestTexturing.cpp b/Tests/TestApp/src/TestTexturing.cpp index 3913b80..d57e540 100644 --- a/Tests/TestApp/src/TestTexturing.cpp +++ b/Tests/TestApp/src/TestTexturing.cpp @@ -273,7 +273,7 @@ void TestTexturing::Init( IRenderDevice *pDevice, IDeviceContext *pDeviceContext pDevice->CreatePipelineState(PSODesc, &m_pPSO); - m_pPSO->BindStaticResources(m_pResourceMapping, 0); + m_pPSO->BindStaticResources(SHADER_TYPE_VERTEX | SHADER_TYPE_PIXEL, m_pResourceMapping, 0); m_pPSO->CreateShaderResourceBinding(&m_pSRB, true); -- cgit v1.2.3