mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-15 00:41:57 +00:00
- fix typos
This commit is contained in:
parent
ddf21ffd72
commit
99c3d72aa0
2 changed files with 2 additions and 2 deletions
|
@ -298,7 +298,7 @@ void VkRenderPassSetup::CreatePipeline(const VkRenderPassKey &key)
|
||||||
builder.setDepthClampEnable(key.DepthClamp);
|
builder.setDepthClampEnable(key.DepthClamp);
|
||||||
builder.setDepthBias(key.DepthBias, 0.0f, 0.0f, 0.0f);
|
builder.setDepthBias(key.DepthBias, 0.0f, 0.0f, 0.0f);
|
||||||
builder.setCull(key.CullMode == Cull_None ? VK_CULL_MODE_NONE : VK_CULL_MODE_FRONT_AND_BACK, key.CullMode == Cull_CW ? VK_FRONT_FACE_CLOCKWISE : VK_FRONT_FACE_COUNTER_CLOCKWISE);
|
builder.setCull(key.CullMode == Cull_None ? VK_CULL_MODE_NONE : VK_CULL_MODE_FRONT_AND_BACK, key.CullMode == Cull_CW ? VK_FRONT_FACE_CLOCKWISE : VK_FRONT_FACE_COUNTER_CLOCKWISE);
|
||||||
builder.setColorWriteMask((VkColorComponentFlagBits)key.ColorMask);
|
builder.setColorWriteMask((VkColorComponentFlags)key.ColorMask);
|
||||||
builder.setStencil(VK_STENCIL_OP_KEEP, op2vk[key.StencilPassOp], VK_STENCIL_OP_KEEP, VK_COMPARE_OP_EQUAL, 0xffffffff, 0xffffffff, 0);
|
builder.setStencil(VK_STENCIL_OP_KEEP, op2vk[key.StencilPassOp], VK_STENCIL_OP_KEEP, VK_COMPARE_OP_EQUAL, 0xffffffff, 0xffffffff, 0);
|
||||||
builder.setBlendMode((VkBlendOp)blendequation, (VkBlendFactor)srcblend, (VkBlendFactor)dstblend);
|
builder.setBlendMode((VkBlendOp)blendequation, (VkBlendFactor)srcblend, (VkBlendFactor)dstblend);
|
||||||
|
|
||||||
|
|
|
@ -99,7 +99,7 @@ void VkRenderState::SetStencil(int offs, int op, int flags)
|
||||||
{
|
{
|
||||||
bool cmon = !(flags & SF_ColorMaskOff);
|
bool cmon = !(flags & SF_ColorMaskOff);
|
||||||
SetColorMask(cmon, cmon, cmon, cmon); // don't write to the graphics buffer
|
SetColorMask(cmon, cmon, cmon, cmon); // don't write to the graphics buffer
|
||||||
mDepthWrite = cmon;
|
mDepthWrite = !(flags & SF_DepthMaskOff);
|
||||||
}
|
}
|
||||||
|
|
||||||
mNeedApply = true;
|
mNeedApply = true;
|
||||||
|
|
Loading…
Reference in a new issue