Searched refs:ds_info (Results 1 – 3 of 3) sorted by relevance
148 VkPipelineDepthStencilStateCreateInfo ds_info = { in get_clear_pipeline() local156 ds_info.depthTestEnable = VK_TRUE; in get_clear_pipeline()157 ds_info.depthWriteEnable = VK_TRUE; in get_clear_pipeline()158 ds_info.depthCompareOp = VK_COMPARE_OP_ALWAYS; in get_clear_pipeline()161 ds_info.stencilTestEnable = VK_TRUE; in get_clear_pipeline()162 ds_info.front.compareOp = VK_COMPARE_OP_ALWAYS; in get_clear_pipeline()163 ds_info.front.passOp = VK_STENCIL_OP_REPLACE; in get_clear_pipeline()164 ds_info.front.compareMask = ~0u; in get_clear_pipeline()165 ds_info.front.writeMask = ~0u; in get_clear_pipeline()166 ds_info.back = ds_info.front; in get_clear_pipeline()[all …]
403 VkPipelineDepthStencilStateCreateInfo ds_info = { in get_blit_pipeline() local418 ds_info.depthTestEnable = VK_TRUE; in get_blit_pipeline()419 ds_info.depthWriteEnable = VK_TRUE; in get_blit_pipeline()420 ds_info.depthCompareOp = VK_COMPARE_OP_ALWAYS; in get_blit_pipeline()424 ds_info.stencilTestEnable = VK_TRUE; in get_blit_pipeline()425 ds_info.front.compareOp = VK_COMPARE_OP_ALWAYS; in get_blit_pipeline()426 ds_info.front.passOp = VK_STENCIL_OP_REPLACE; in get_blit_pipeline()427 ds_info.front.compareMask = ~0u; in get_blit_pipeline()428 ds_info.front.writeMask = ~0u; in get_blit_pipeline()429 ds_info.front.reference = ~0; in get_blit_pipeline()[all …]
809 const VkPipelineDepthStencilStateCreateInfo *ds_info) in vk_depth_stencil_state_init() argument814 if (!ds_info) in vk_depth_stencil_state_init()817 ds->depth.test_enable = ds_info->depthTestEnable; in vk_depth_stencil_state_init()818 ds->depth.write_enable = ds_info->depthWriteEnable; in vk_depth_stencil_state_init()819 ds->depth.compare_op = ds_info->depthCompareOp; in vk_depth_stencil_state_init()820 ds->depth.bounds_test.enable = ds_info->depthBoundsTestEnable; in vk_depth_stencil_state_init()821 ds->depth.bounds_test.min = ds_info->minDepthBounds; in vk_depth_stencil_state_init()822 ds->depth.bounds_test.max = ds_info->maxDepthBounds; in vk_depth_stencil_state_init()823 ds->stencil.test_enable = ds_info->stencilTestEnable; in vk_depth_stencil_state_init()824 vk_stencil_test_face_state_init(&ds->stencil.front, &ds_info->front); in vk_depth_stencil_state_init()[all …]