Lines Matching defs:depthCompareOp
693 VkCompareOp depthCompareOp)
701 /* If compareOp is NEVER or depthCompareOp is NEVER then one of the depth
705 depthCompareOp == VK_COMPARE_OP_NEVER)
708 /* If compareOp is NEVER or depthCompareOp is ALWAYS then either the
713 depthCompareOp == VK_COMPARE_OP_ALWAYS)
767 state->depthCompareOp = VK_COMPARE_OP_ALWAYS;
786 /* If depthCompareOp is EQUAL then the value we would be writing to the
790 if (state->depthCompareOp == VK_COMPARE_OP_EQUAL)
796 if (!sanitize_stencil_face(&state->front, state->depthCompareOp) &&
797 !sanitize_stencil_face(&state->back, state->depthCompareOp))
803 if (state->depthCompareOp == VK_COMPARE_OP_ALWAYS &&
864 .DepthTestFunction = vk_to_gen_compare_op[info.depthCompareOp],