/external/swiftshader/src/Vulkan/ |
D | VkPipeline.cpp | 303 const VkPipelineDepthStencilStateCreateInfo* depthStencilState = pCreateInfo->pDepthStencilState; in GraphicsPipeline() local 304 if((depthStencilState->flags != 0) || in GraphicsPipeline() 305 (depthStencilState->depthBoundsTestEnable != 0) || in GraphicsPipeline() 306 (depthStencilState->minDepthBounds != 0.0f) || in GraphicsPipeline() 307 (depthStencilState->maxDepthBounds != 1.0f)) in GraphicsPipeline() 312 context.depthBufferEnable = depthStencilState->depthTestEnable; in GraphicsPipeline() 313 context.depthWriteEnable = depthStencilState->depthWriteEnable; in GraphicsPipeline() 314 context.depthCompareMode = depthStencilState->depthCompareOp; in GraphicsPipeline() 316 context.stencilEnable = context.twoSidedStencil = depthStencilState->stencilTestEnable; in GraphicsPipeline() 319 context.stencilMask = depthStencilState->front.compareMask; in GraphicsPipeline() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/synchronization/ |
D | vktSynchronizationSmokeTests.cpp | 635 VkPipelineDepthStencilStateCreateInfo depthStencilState; in generateWork() local 781 deMemset(&depthStencilState, 0xcd, sizeof(depthStencilState)); in generateWork() 782 depthStencilState.sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO; in generateWork() 783 depthStencilState.pNext = DE_NULL; in generateWork() 784 depthStencilState.flags = 0; in generateWork() 785 depthStencilState.depthTestEnable = VK_FALSE; in generateWork() 786 depthStencilState.depthWriteEnable = VK_FALSE; in generateWork() 787 depthStencilState.depthCompareOp = VK_COMPARE_OP_ALWAYS; in generateWork() 788 depthStencilState.depthBoundsTestEnable = VK_FALSE; in generateWork() 789 depthStencilState.stencilTestEnable = VK_FALSE; in generateWork() [all …]
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | api.cpp | 679 pState->depthStencilState = *pDSState; in SwrSetDepthStencilState() 934 (pState->state.depthStencilState.depthTestEnable == FALSE) && in SetupPipeline() 935 (pState->state.depthStencilState.depthWriteEnable == FALSE) && in SetupPipeline() 936 (pState->state.depthStencilState.stencilTestEnable == FALSE) && in SetupPipeline() 937 (pState->state.depthStencilState.stencilWriteEnable == FALSE) && in SetupPipeline() 988 pState->state.depthHottileEnable = ((!(pState->state.depthStencilState.depthTestEnable && in SetupPipeline() 989 !pState->state.depthStencilState.depthWriteEnable && in SetupPipeline() 991 … pState->state.depthStencilState.depthTestFunc == ZFUNC_ALWAYS)) && in SetupPipeline() 992 (pState->state.depthStencilState.depthTestEnable || in SetupPipeline() 993 pState->state.depthStencilState.depthWriteEnable || in SetupPipeline() [all …]
|
D | backend_singlesample.cpp | 136 …DepthStencilWrite(&state.vp[work.triFlags.viewportIndex], &state.depthStencilState, work.triFlags.… in BackendSingleSample() 169 …DepthStencilWrite(&state.vp[work.triFlags.viewportIndex], &state.depthStencilState, work.triFlags.… in BackendSingleSample() 194 …DepthStencilWrite(&state.vp[work.triFlags.viewportIndex], &state.depthStencilState, work.triFlags.… in BackendSingleSample()
|
D | backend_sample.cpp | 152 …DepthStencilWrite(&state.vp[work.triFlags.viewportIndex], &state.depthStencilState, work.triFlags.… in BackendSampleRate() 186 …DepthStencilWrite(&state.vp[work.triFlags.viewportIndex], &state.depthStencilState, work.triFlags.… in BackendSampleRate() 209 …DepthStencilWrite(&state.vp[work.triFlags.viewportIndex], &state.depthStencilState, work.triFlags.… in BackendSampleRate()
|
D | depthstencil.h | 126 const SWR_DEPTH_STENCIL_STATE* pDSState = &pState->depthStencilState; in DepthStencilTest()
|
D | context.h | 293 SWR_DEPTH_STENCIL_STATE depthStencilState; in OSALIGNLINE() local
|
D | backend.cpp | 287 …DepthStencilWrite(&state.vp[work.triFlags.viewportIndex], &state.depthStencilState, work.triFlags.… in BackendNullPS()
|
D | backend_impl.h | 649 …DepthStencilWrite(&state.vp[work.triFlags.viewportIndex], &state.depthStencilState, work.triFlags.… 1015 …DepthStencilWrite(&state.vp[work.triFlags.viewportIndex], &state.depthStencilState, work.triFlags.…
|
/external/mesa3d/src/gallium/drivers/swr/ |
D | swr_state.cpp | 1577 SWR_DEPTH_STENCIL_STATE depthStencilState = {{0}}; in swr_update_derived() local 1587 depthStencilState.stencilWriteEnable = 1; in swr_update_derived() 1588 depthStencilState.stencilTestEnable = 1; in swr_update_derived() 1589 depthStencilState.stencilTestFunc = in swr_update_derived() 1592 depthStencilState.stencilPassDepthPassOp = in swr_update_derived() 1594 depthStencilState.stencilPassDepthFailOp = in swr_update_derived() 1596 depthStencilState.stencilFailOp = in swr_update_derived() 1598 depthStencilState.stencilWriteMask = stencil[0].writemask; in swr_update_derived() 1599 depthStencilState.stencilTestMask = stencil[0].valuemask; in swr_update_derived() 1600 depthStencilState.stencilRefValue = ctx->stencil_ref.ref_value[0]; in swr_update_derived() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/renderpass/ |
D | vktRenderPassDepthStencilResolveTests.cpp | 578 const VkPipelineDepthStencilStateCreateInfo depthStencilState = in createRenderPipeline() local 639 …&depthStencilState, // const VkPipelineDepthStencilStateCreateInfo* depthStencilStateC… in createRenderPipeline()
|
D | vktRenderPassMultisampleResolveTests.cpp | 685 const VkPipelineDepthStencilStateCreateInfo depthStencilState = in createRenderPipeline() local 748 …&depthStencilState, // const VkPipelineDepthStencilStateCreateInfo* depthStencilStateCrea… in createRenderPipeline()
|
D | vktRenderPassMultisampleTests.cpp | 801 const VkPipelineDepthStencilStateCreateInfo depthStencilState = in createRenderPipeline() local 864 …&depthStencilState, // const VkPipelineDepthStencilStateCreateInfo* depthStencilStateCreateI… in createRenderPipeline()
|
D | vktRenderPassTests.cpp | 1892 const VkPipelineDepthStencilStateCreateInfo depthStencilState = in createSubpassPipeline() local 1953 …&depthStencilState, // const VkPipelineDepthStencilStateCreateInfo* depthStencilStateCreateInfo in createSubpassPipeline()
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiObjectManagementTests.cpp | 1728 const VkPipelineDepthStencilStateCreateInfo depthStencilState = in createMultiple() local 1780 &depthStencilState, in createMultiple()
|