1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-31 14:52:11 +01:00

[hud] Fixed uninitialized depth bounds values

This commit is contained in:
Philip Rebohle 2018-05-07 21:53:32 +02:00
parent cd92d0b992
commit 33e511485c
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -211,6 +211,8 @@ namespace dxvk::hud {
dsState.depthCompareOp = VK_COMPARE_OP_NEVER;
dsState.stencilOpFront = stencilOp;
dsState.stencilOpBack = stencilOp;
dsState.depthBoundsMin = 0.0f;
dsState.depthBoundsMax = 1.0f;
m_context->setDepthStencilState(dsState);
DxvkLogicOpState loState;