Lines Matching defs:ds_state
795 VkPipelineDepthStencilStateCreateInfo ds_state;
796 ds_state.sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO;
797 ds_state.pNext = NULL;
798 ds_state.flags = 0;
799 ds_state.depthTestEnable = ds_output != VK_FORMAT_UNDEFINED;
800 ds_state.depthWriteEnable = true;
801 ds_state.depthCompareOp = VK_COMPARE_OP_ALWAYS;
802 ds_state.depthBoundsTestEnable = false;
803 ds_state.stencilTestEnable = true;
804 ds_state.front.failOp = VK_STENCIL_OP_KEEP;
805 ds_state.front.passOp = VK_STENCIL_OP_REPLACE;
806 ds_state.front.depthFailOp = VK_STENCIL_OP_REPLACE;
807 ds_state.front.compareOp = VK_COMPARE_OP_ALWAYS;
808 ds_state.front.compareMask = 0xffffffff,
809 ds_state.front.writeMask = 0;
810 ds_state.front.reference = 0;
811 ds_state.back = ds_state.front;
849 gfx_pipeline_info.pDepthStencilState = &ds_state;