- fix model chasecam crash
This commit is contained in:
parent
29c6782aa1
commit
f2e37d506e
2 changed files with 6 additions and 3 deletions
|
|
@ -766,7 +766,7 @@ inline GraphicsPipelineBuilder::GraphicsPipelineBuilder()
|
|||
pipelineInfo.pViewportState = &viewportState;
|
||||
pipelineInfo.pRasterizationState = &rasterizer;
|
||||
pipelineInfo.pMultisampleState = &multisampling;
|
||||
pipelineInfo.pDepthStencilState = nullptr;
|
||||
pipelineInfo.pDepthStencilState = &depthStencil;
|
||||
pipelineInfo.pColorBlendState = &colorBlending;
|
||||
pipelineInfo.pDynamicState = &dynamicState;
|
||||
pipelineInfo.subpass = 0;
|
||||
|
|
@ -896,8 +896,6 @@ inline void GraphicsPipelineBuilder::setDepthStencilEnable(bool test, bool write
|
|||
depthStencil.depthTestEnable = test ? VK_TRUE : VK_FALSE;
|
||||
depthStencil.depthWriteEnable = write ? VK_TRUE : VK_FALSE;
|
||||
depthStencil.stencilTestEnable = stencil ? VK_TRUE : VK_FALSE;
|
||||
|
||||
pipelineInfo.pDepthStencilState = (test || write || stencil) ? &depthStencil : nullptr;
|
||||
}
|
||||
|
||||
inline void GraphicsPipelineBuilder::setStencil(VkStencilOp failOp, VkStencilOp passOp, VkStencilOp depthFailOp, VkCompareOp compareOp, uint32_t compareMask, uint32_t writeMask, uint32_t reference)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue