mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[d3d9] Set correct input topology for SWVP emulation
Otherwise we'll run the input patch pass, even if it doesn't do anything.
This commit is contained in:
parent
0359a3521d
commit
fcbdff3b72
1 changed files with 2 additions and 1 deletions
|
@ -293,6 +293,7 @@ namespace dxvk {
|
|||
info.bindingCount = 1;
|
||||
info.bindings = &m_bufferBinding;
|
||||
info.inputMask = m_inputMask;
|
||||
info.inputTopology = VK_PRIMITIVE_TOPOLOGY_POINT_LIST;
|
||||
|
||||
return new DxvkShader(info, m_module.compile());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue