mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 23:05:43 +00:00
Fix compilation, oops
This commit is contained in:
parent
3c3d15eb72
commit
0775822f35
@ -436,8 +436,8 @@ impl<Vdef, L, Rp> GraphicsPipeline<Vdef, L, Rp>
|
||||
else { vk::FALSE },
|
||||
depthCompareOp: params.depth_stencil.depth_compare as u32,
|
||||
depthBoundsTestEnable: db.0,
|
||||
stencilTestEnable: if params.stencil_front.always_keep() &&
|
||||
params.stencil_back.always_keep()
|
||||
stencilTestEnable: if params.depth_stencil.stencil_front.always_keep() &&
|
||||
params.depth_stencil.stencil_back.always_keep()
|
||||
{ vk::FALSE } else { vk::TRUE },
|
||||
front: vk::StencilOpState {
|
||||
failOp: params.depth_stencil.stencil_front.fail_op as u32,
|
||||
|
Loading…
Reference in New Issue
Block a user