mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-02-18 04:54:15 +01:00
[d3d9] Disable culling when the app passes an invalid value
This commit is contained in:
parent
991a11617a
commit
4e34c29c56
@ -270,10 +270,10 @@ namespace dxvk {
|
||||
|
||||
VkCullModeFlags DecodeCullMode(D3DCULL Mode) {
|
||||
switch (Mode) {
|
||||
case D3DCULL_NONE: return VK_CULL_MODE_NONE;
|
||||
case D3DCULL_CW: return VK_CULL_MODE_FRONT_BIT;
|
||||
default:
|
||||
case D3DCULL_CCW: return VK_CULL_MODE_BACK_BIT;
|
||||
default:
|
||||
case D3DCULL_NONE: return VK_CULL_MODE_NONE;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user