Home
last modified time | relevance | path

Searched refs:pDepthStencilState (Results 1 – 25 of 29) sorted by relevance

12

/external/mesa3d/src/intel/vulkan/
Danv_pipeline.c1162 assert(pCreateInfo->pDepthStencilState); in copy_non_dynamic_state()
1166 pCreateInfo->pDepthStencilState->minDepthBounds; in copy_non_dynamic_state()
1168 pCreateInfo->pDepthStencilState->maxDepthBounds; in copy_non_dynamic_state()
1173 pCreateInfo->pDepthStencilState->front.compareMask; in copy_non_dynamic_state()
1175 pCreateInfo->pDepthStencilState->back.compareMask; in copy_non_dynamic_state()
1180 pCreateInfo->pDepthStencilState->front.writeMask; in copy_non_dynamic_state()
1182 pCreateInfo->pDepthStencilState->back.writeMask; in copy_non_dynamic_state()
1187 pCreateInfo->pDepthStencilState->front.reference; in copy_non_dynamic_state()
1189 pCreateInfo->pDepthStencilState->back.reference; in copy_non_dynamic_state()
1223 assert(info->pDepthStencilState); in anv_pipeline_validate_create_info()
DgenX_pipeline.c1688 emit_ds_state(pipeline, pCreateInfo->pDepthStencilState, pass, subpass);
/external/vulkan-validation-layers/layers/
Dparameter_validation_utils.cpp1462 if (pCreateInfos[i].pDepthStencilState != nullptr && uses_depthstencil_attachment) { in manual_PreCallValidateCreateGraphicsPipelines()
1466 … pCreateInfos[i].pDepthStencilState->pNext, 0, NULL, GeneratedVulkanHeaderVersion, in manual_PreCallValidateCreateGraphicsPipelines()
1472 …pCreateInfos[i].pDepthStencilState->flags, "VUID-VkPipelineDepthStencilStateCreateInfo-flags-zerob… in manual_PreCallValidateCreateGraphicsPipelines()
1477 pCreateInfos[i].pDepthStencilState->depthTestEnable); in manual_PreCallValidateCreateGraphicsPipelines()
1482 pCreateInfos[i].pDepthStencilState->depthWriteEnable); in manual_PreCallValidateCreateGraphicsPipelines()
1487 … "VkCompareOp", AllVkCompareOpEnums, pCreateInfos[i].pDepthStencilState->depthCompareOp, in manual_PreCallValidateCreateGraphicsPipelines()
1493 pCreateInfos[i].pDepthStencilState->depthBoundsTestEnable); in manual_PreCallValidateCreateGraphicsPipelines()
1498 pCreateInfos[i].pDepthStencilState->stencilTestEnable); in manual_PreCallValidateCreateGraphicsPipelines()
1503 … "VkStencilOp", AllVkStencilOpEnums, pCreateInfos[i].pDepthStencilState->front.failOp, in manual_PreCallValidateCreateGraphicsPipelines()
1509 … "VkStencilOp", AllVkStencilOpEnums, pCreateInfos[i].pDepthStencilState->front.passOp, in manual_PreCallValidateCreateGraphicsPipelines()
[all …]
Dcore_validation.cpp731 if (pPipe->graphicsPipelineCI.pDepthStencilState && in ValidateDrawStateFlags()
732 (pPipe->graphicsPipelineCI.pDepthStencilState->depthBoundsTestEnable == VK_TRUE)) { in ValidateDrawStateFlags()
736 if (pPipe->graphicsPipelineCI.pDepthStencilState && in ValidateDrawStateFlags()
737 (pPipe->graphicsPipelineCI.pDepthStencilState->stencilTestEnable == VK_TRUE)) { in ValidateDrawStateFlags()
1535 if (!pPipeline->graphicsPipelineCI.pDepthStencilState) { in ValidatePipelineUnlocked()
1542 … } else if ((pPipeline->graphicsPipelineCI.pDepthStencilState->depthBoundsTestEnable == VK_TRUE) && in ValidatePipelineUnlocked()
1665 if (pPipeline->graphicsPipelineCI.pDepthStencilState) { in ValidatePipelineUnlocked()
1666 …const bool ds_test_enabled = (pPipeline->graphicsPipelineCI.pDepthStencilState->depthTestEnable ==… in ValidatePipelineUnlocked()
1667 … (pPipeline->graphicsPipelineCI.pDepthStencilState->depthBoundsTestEnable == VK_TRUE) || in ValidatePipelineUnlocked()
1668 … (pPipeline->graphicsPipelineCI.pDepthStencilState->stencilTestEnable == VK_TRUE); in ValidatePipelineUnlocked()
/external/mesa3d/src/amd/vulkan/
Dradv_pipeline.c697 const VkPipelineDepthStencilStateCreateInfo *vkds = pCreateInfo->pDepthStencilState; in radv_pipeline_init_depth_stencil_state()
1122 assert(pCreateInfo->pDepthStencilState); in radv_pipeline_init_dynamic_state()
1126 pCreateInfo->pDepthStencilState->minDepthBounds; in radv_pipeline_init_dynamic_state()
1128 pCreateInfo->pDepthStencilState->maxDepthBounds; in radv_pipeline_init_dynamic_state()
1133 pCreateInfo->pDepthStencilState->front.compareMask; in radv_pipeline_init_dynamic_state()
1135 pCreateInfo->pDepthStencilState->back.compareMask; in radv_pipeline_init_dynamic_state()
1140 pCreateInfo->pDepthStencilState->front.writeMask; in radv_pipeline_init_dynamic_state()
1142 pCreateInfo->pDepthStencilState->back.writeMask; in radv_pipeline_init_dynamic_state()
1147 pCreateInfo->pDepthStencilState->front.reference; in radv_pipeline_init_dynamic_state()
1149 pCreateInfo->pDepthStencilState->back.reference; in radv_pipeline_init_dynamic_state()
Dradv_meta_decompress.c171 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) { in create_pipeline()
Dradv_meta_blit.c973 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) { in radv_device_init_meta_blit_depth()
1134 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) { in radv_device_init_meta_blit_stencil()
Dradv_meta_blit2d.c939 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) { in blit2d_init_depth_only_pipeline()
1101 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) { in blit2d_init_stencil_only_pipeline()
Dradv_meta_clear.c160 .pDepthStencilState = ds_state, in create_pipeline()
/external/skia/src/gpu/vk/
DGrVkCopyPipeline.cpp171 pipelineCreateInfo.pDepthStencilState = &stencilInfo; in Create()
DGrVkPipeline.cpp555 pipelineCreateInfo.pDepthStencilState = &depthStencilInfo; in Create()
/external/skqp/src/gpu/vk/
DGrVkCopyPipeline.cpp167 pipelineCreateInfo.pDepthStencilState = &stencilInfo; in Create()
DGrVkPipeline.cpp551 pipelineCreateInfo.pDepthStencilState = &depthStencilInfo; in Create()
/external/swiftshader/src/Vulkan/
DVkPipeline.cpp303 const VkPipelineDepthStencilStateCreateInfo* depthStencilState = pCreateInfo->pDepthStencilState; in GraphicsPipeline()
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawCreateInfoUtil.cpp1134 pDepthStencilState = &m_dynamicDepthStencilState; in addState()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationSmokeTests.cpp840 pipelineState.pDepthStencilState = &depthStencilState; in generateWork()
/external/vulkan-validation-layers/tests/
Dvkrenderframework.cpp1586 gp_ci->pDepthStencilState = m_ds_state; in InitGraphicsPipelineCreateInfo()
/external/deqp/external/vulkancts/framework/vulkan/
DvkStructTypes.inl780 const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState; member
DvkVulkan_c.inl2261 const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState; member
/external/mesa3d/include/vulkan/
Dvulkan.h2188 const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState; member
/external/skia/include/third_party/vulkan/vulkan/
Dvulkan_core.h2358 const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState; member
/external/skqp/include/third_party/vulkan/vulkan/
Dvulkan_core.h2358 const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState; member
/external/vulkan-headers/include/vulkan/
Dvulkan_core.h2523 const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState; member
/external/swiftshader/include/vulkan/
Dvulkan_core.h2476 const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState; member
/external/deqp/external/vulkancts/scripts/src/
Dvulkan.h.in2258 const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState; member

12