1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2024-12-02 01:24:11 +01:00

[d3d11] Fixed pixel shader constant buffer bindings

This commit is contained in:
Philip Rebohle 2017-12-09 01:40:15 +01:00
parent a35b128860
commit e0495c6ecb

View File

@ -970,7 +970,7 @@ namespace dxvk {
ID3D11Buffer* const* ppConstantBuffers) { ID3D11Buffer* const* ppConstantBuffers) {
this->BindConstantBuffers( this->BindConstantBuffers(
DxbcProgramType::PixelShader, DxbcProgramType::PixelShader,
&m_state.vs.constantBuffers, &m_state.ps.constantBuffers,
StartSlot, NumBuffers, StartSlot, NumBuffers,
ppConstantBuffers); ppConstantBuffers);
} }