Lines Matching refs:depthStencilState
714 VkPipelineDepthStencilStateCreateInfo depthStencilState;
860 deMemset(&depthStencilState, 0xcd, sizeof(depthStencilState));
861 depthStencilState.sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO;
862 depthStencilState.pNext = DE_NULL;
863 depthStencilState.flags = 0;
864 depthStencilState.depthTestEnable = VK_FALSE;
865 depthStencilState.depthWriteEnable = VK_FALSE;
866 depthStencilState.depthCompareOp = VK_COMPARE_OP_ALWAYS;
867 depthStencilState.depthBoundsTestEnable = VK_FALSE;
868 depthStencilState.stencilTestEnable = VK_FALSE;
869 depthStencilState.front.failOp = VK_STENCIL_OP_KEEP;
870 depthStencilState.front.passOp = VK_STENCIL_OP_KEEP;
871 depthStencilState.front.depthFailOp = VK_STENCIL_OP_KEEP;
872 depthStencilState.front.compareOp = VK_COMPARE_OP_ALWAYS;
873 depthStencilState.front.compareMask = 0u;
874 depthStencilState.front.writeMask = 0u;
875 depthStencilState.front.reference = 0u;
876 depthStencilState.back = depthStencilState.front;
919 pipelineState.pDepthStencilState = &depthStencilState;