| /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/ |
| H A D | panvk_vX_pipeline.c | 669 pipeline->zs.z_test = builder->create_info->pDepthStencilState->depthTestEnable; 670 pipeline->zs.z_write = builder->create_info->pDepthStencilState->depthWriteEnable; 672 panvk_per_arch(translate_compare_func)(builder->create_info->pDepthStencilState->depthCompareOp); 673 pipeline->zs.s_test = builder->create_info->pDepthStencilState->stencilTestEnable; 675 translate_stencil_op(builder->create_info->pDepthStencilState->front.failOp); 677 translate_stencil_op(builder->create_info->pDepthStencilState->front.passOp); 679 translate_stencil_op(builder->create_info->pDepthStencilState->front.depthFailOp); 681 panvk_per_arch(translate_compare_func)(builder->create_info->pDepthStencilState->front.compareOp); 683 builder->create_info->pDepthStencilState->front.compareMask; 685 builder->create_info->pDepthStencilState [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/d3d10umd/ |
| H A D | State.h | 281 DepthStencilState *pDepthStencilState = CastDepthStencilState(hDepthStencilState); local in function:CastPipeDepthStencilState 282 return pDepthStencilState ? pDepthStencilState->handle : NULL;
|
| H A D | OutputMerger.cpp | 897 DepthStencilState *pDepthStencilState = CastDepthStencilState(hDepthStencilState); local in function:CreateDepthStencilState 944 pDepthStencilState->handle = 966 DepthStencilState *pDepthStencilState = CastDepthStencilState(hDepthStencilState); local in function:DestroyDepthStencilState 968 pipe->delete_depth_stencil_alpha_state(pipe, pDepthStencilState->handle);
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/ |
| H A D | anv_pipeline.c | 1484 * pDepthStencilState. The Vulkan spec states that pDepthStencilState may 1485 * be NULL in this case. Even if pDepthStencilState is non-NULL, there is 1491 * pDepthStencilState is [...] NULL if the pipeline has rasterization 1497 assert(pCreateInfo->pDepthStencilState); 1501 pCreateInfo->pDepthStencilState->minDepthBounds; 1503 pCreateInfo->pDepthStencilState->maxDepthBounds; 1508 pCreateInfo->pDepthStencilState->front.compareMask; 1510 pCreateInfo->pDepthStencilState->back.compareMask; 1515 pCreateInfo->pDepthStencilState [all...] |
| H A D | genX_pipeline.c | 1942 emit_ds_state(pipeline, pCreateInfo->pDepthStencilState, pass, subpass);
|
| /xsrc/external/mit/MesaLib/dist/src/virtio/vulkan/ |
| H A D | vn_pipeline.c | 262 create_infos[i].pDepthStencilState || 285 infos[i].pDepthStencilState = NULL;
|
| /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/ |
| H A D | radv_pipeline.c | 980 if (pCreateInfo->pDepthStencilState && 983 pCreateInfo->pDepthStencilState; 1290 if (!pCreateInfo->pDepthStencilState || 1291 !pCreateInfo->pDepthStencilState->depthBoundsTestEnable) 1294 if (!pCreateInfo->pDepthStencilState || 1295 !pCreateInfo->pDepthStencilState->stencilTestEnable) 1378 * pDepthStencilState. The Vulkan spec states that pDepthStencilState may 1379 * be NULL in this case. Even if pDepthStencilState is non-NULL, there is 1385 * pDepthStencilState i [all...] |
| H A D | radv_meta_decompress.c | 183 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) {
|
| H A D | radv_meta_blit.c | 902 vk_pipeline_info.pDepthStencilState = &depth_info; 905 vk_pipeline_info.pDepthStencilState = &stencil_info;
|
| H A D | radv_meta_blit2d.c | 1029 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) { 1199 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) {
|
| /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/ |
| H A D | anv_pipeline.c | 2116 * pDepthStencilState. The Vulkan spec states that pDepthStencilState may 2117 * be NULL in this case. Even if pDepthStencilState is non-NULL, there is 2123 * pDepthStencilState is [...] NULL if the pipeline has rasterization 2128 assert(pCreateInfo->pDepthStencilState); 2132 pCreateInfo->pDepthStencilState->minDepthBounds; 2134 pCreateInfo->pDepthStencilState->maxDepthBounds; 2139 pCreateInfo->pDepthStencilState->front.compareMask; 2141 pCreateInfo->pDepthStencilState->back.compareMask; 2146 pCreateInfo->pDepthStencilState [all...] |
| /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/ |
| H A D | radv_pipeline.c | 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 [all...] |
| H A D | radv_meta_blit.c | 832 vk_pipeline_info.pDepthStencilState = &depth_info; 835 vk_pipeline_info.pDepthStencilState = &stencil_info;
|
| H A D | radv_meta_blit2d.c | 1013 .pDepthStencilState = 1205 .pDepthStencilState =
|
| H A D | radv_meta_decompress.c | 325 .pDepthStencilState =
|
| H A D | radv_meta_resolve_fs.c | 588 .pDepthStencilState = &depth_stencil_state,
|
| H A D | radv_meta_clear.c | 139 .pDepthStencilState = ds_state,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/lavapipe/ |
| H A D | lvp_pipeline.c | 369 /* pDepthStencilState */ 370 if (src->pDepthStencilState && !rasterization_disabled && pass->has_zs_attachment) { 371 LVP_PIPELINE_DUP(dst->pDepthStencilState, 372 src->pDepthStencilState, 376 dst->pDepthStencilState = NULL;
|
| /xsrc/external/mit/MesaLib/dist/src/virtio/venus-protocol/ |
| H A D | vn_protocol_driver_pipeline.h | 1114 size += vn_sizeof_simple_pointer(val->pDepthStencilState); 1115 if (val->pDepthStencilState) 1116 size += vn_sizeof_VkPipelineDepthStencilStateCreateInfo(val->pDepthStencilState); 1175 if (vn_encode_simple_pointer(enc, val->pDepthStencilState)) 1176 vn_encode_VkPipelineDepthStencilStateCreateInfo(enc, val->pDepthStencilState);
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/ |
| H A D | v3dv_pipeline.c | 2690 const VkPipelineDepthStencilStateCreateInfo *pDepthStencilState, 2731 if (pDepthStencilState) { 2734 pDepthStencilState->front.compareMask; 2736 pDepthStencilState->back.compareMask; 2740 dynamic->stencil_write_mask.front = pDepthStencilState->front.writeMask; 2741 dynamic->stencil_write_mask.back = pDepthStencilState->back.writeMask; 2745 dynamic->stencil_reference.front = pDepthStencilState->front.reference; 2746 dynamic->stencil_reference.back = pDepthStencilState->back.reference; 2963 raster_enabled ? pCreateInfo->pDepthStencilState : NULL; 2686 pipeline_init_dynamic_state(struct v3dv_pipeline * pipeline,const VkPipelineDynamicStateCreateInfo * pDynamicState,const VkPipelineViewportStateCreateInfo * pViewportState,const VkPipelineDepthStencilStateCreateInfo * pDepthStencilState,const VkPipelineColorBlendStateCreateInfo * pColorBlendState,const VkPipelineRasterizationStateCreateInfo * pRasterizationState,const VkPipelineColorWriteCreateInfoEXT * pColorWriteState) argument
|
| H A D | v3dv_meta_clear.c | 546 .pDepthStencilState = ds_state,
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/ |
| H A D | zink_pipeline.c | 249 pci.pDepthStencilState = &depth_stencil_state;
|
| /xsrc/external/mit/MesaLib/dist/src/amd/compiler/tests/ |
| H A D | helpers.cpp | 771 gfx_pipeline_info.pDepthStencilState = &ds_state;
|
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/ |
| H A D | tu_pipeline.c | 1625 * pDepthStencilState is a pointer to an instance of the 1636 ? builder->create_info->pDepthStencilState
|
| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/overlay-layer/ |
| H A D | overlay.cpp | 1323 info.pDepthStencilState = &depth_info;
|