mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-30 04:24:11 +01:00
[d3d11] Fixed compiler errors
Why the hell did my GCC not complain about this earlier?
This commit is contained in:
parent
687ef77860
commit
bd5254f8d3
@ -21,8 +21,6 @@ namespace dxvk {
|
||||
m_msState.sampleMask = 0; // Set during bind
|
||||
m_msState.enableAlphaToCoverage = desc.AlphaToCoverageEnable;
|
||||
m_msState.enableAlphaToOne = VK_FALSE;
|
||||
m_msState.enableSampleShading = VK_FALSE;
|
||||
m_msState.minSampleShading = 0.0f;
|
||||
|
||||
// Vulkan only supports a global logic op for the blend
|
||||
// state, which might be problematic in some cases.
|
||||
|
@ -72,8 +72,6 @@ namespace dxvk {
|
||||
msState.sampleMask = 0xffffffff;
|
||||
msState.enableAlphaToCoverage = VK_FALSE;
|
||||
msState.enableAlphaToOne = VK_FALSE;
|
||||
msState.enableSampleShading = VK_FALSE;
|
||||
msState.minSampleShading = 0.0f;
|
||||
m_context->setMultisampleState(msState);
|
||||
|
||||
VkStencilOpState stencilOp;
|
||||
|
Loading…
Reference in New Issue
Block a user