Lines Matching refs:pDepthStencilState
128 return pCreateInfo->pDepthStencilState;
1347 if (!pCreateInfo->pDepthStencilState ||
1348 (!pCreateInfo->pDepthStencilState->depthBoundsTestEnable &&
1352 if (!pCreateInfo->pDepthStencilState ||
1353 (!pCreateInfo->pDepthStencilState->stencilTestEnable &&
1580 * pDepthStencilState. The Vulkan spec states that pDepthStencilState may
1581 * be NULL in this case. Even if pDepthStencilState is non-NULL, there is
1587 * pDepthStencilState is [...] NULL if the pipeline has rasterization
1593 dynamic->depth_bounds.min = pCreateInfo->pDepthStencilState->minDepthBounds;
1594 dynamic->depth_bounds.max = pCreateInfo->pDepthStencilState->maxDepthBounds;
1598 dynamic->stencil_compare_mask.front = pCreateInfo->pDepthStencilState->front.compareMask;
1599 dynamic->stencil_compare_mask.back = pCreateInfo->pDepthStencilState->back.compareMask;
1603 dynamic->stencil_write_mask.front = pCreateInfo->pDepthStencilState->front.writeMask;
1604 dynamic->stencil_write_mask.back = pCreateInfo->pDepthStencilState->back.writeMask;
1608 dynamic->stencil_reference.front = pCreateInfo->pDepthStencilState->front.reference;
1609 dynamic->stencil_reference.back = pCreateInfo->pDepthStencilState->back.reference;
1613 dynamic->depth_test_enable = pCreateInfo->pDepthStencilState->depthTestEnable;
1617 dynamic->depth_write_enable = pCreateInfo->pDepthStencilState->depthWriteEnable;
1621 dynamic->depth_compare_op = pCreateInfo->pDepthStencilState->depthCompareOp;
1625 dynamic->depth_bounds_test_enable = pCreateInfo->pDepthStencilState->depthBoundsTestEnable;
1629 dynamic->stencil_test_enable = pCreateInfo->pDepthStencilState->stencilTestEnable;
1633 dynamic->stencil_op.front.compare_op = pCreateInfo->pDepthStencilState->front.compareOp;
1634 dynamic->stencil_op.front.fail_op = pCreateInfo->pDepthStencilState->front.failOp;
1635 dynamic->stencil_op.front.pass_op = pCreateInfo->pDepthStencilState->front.passOp;
1637 pCreateInfo->pDepthStencilState->front.depthFailOp;
1639 dynamic->stencil_op.back.compare_op = pCreateInfo->pDepthStencilState->back.compareOp;
1640 dynamic->stencil_op.back.fail_op = pCreateInfo->pDepthStencilState->back.failOp;
1641 dynamic->stencil_op.back.pass_op = pCreateInfo->pDepthStencilState->back.passOp;
1642 dynamic->stencil_op.back.depth_fail_op = pCreateInfo->pDepthStencilState->back.depthFailOp;