Searched refs:depthFailOp (Results 1 - 24 of 24) sorted by relevance

/external/deqp/modules/glshared/
H A DglsInteractionTestUtil.hpp64 deUint32 depthFailOp; member in struct:deqp::gls::InteractionTestUtil::StencilState
74 , depthFailOp (0)
H A DglsInteractionTestUtil.cpp178 state.stencil[ndx].depthFailOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
H A DglsFragOpInteractionCase.cpp245 ctx.stencilOpSeparate(glFace, sParams.stencilFailOp, sParams.depthFailOp, sParams.depthPassOp);
/external/deqp/modules/gles2/functional/
H A Des2fDepthStencilTests.cpp79 deUint32 depthFailOp; member in struct:deqp::gles2::Functional::DepthStencilCaseUtil::StencilParams
89 , depthFailOp (0)
125 << " depth fail = " << glu::getStencilOpStr(params.depthFailOp) << "\n"
358 cmd.params.stencil[rr::FACETYPE_FRONT].depthFailOp = GL_KEEP;
374 dst.dpFail = sglr::rr_util::mapGLStencilOp(src.depthFailOp);
446 glStencilOpSeparate(glFace, sParams.stencilFailOp, sParams.depthFailOp, sParams.depthPassOp);
767 params.stencil[ndx].depthFailOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
876 params.stencil[visible].depthFailOp = functionCases[ndx].dFail;
884 params.stencil[notVisible].depthFailOp = GL_REPLACE;
947 params.stencil[visible].depthFailOp
[all...]
H A Des2fRandomFragmentOpTests.cpp83 dst.dpFail = sglr::rr_util::mapGLStencilOp(src.depthFailOp);
174 wrapper.glStencilOpSeparate(glFace, sParams.stencilFailOp, sParams.depthFailOp, sParams.depthPassOp);
/external/deqp/modules/gles3/functional/
H A Des3fDepthStencilTests.cpp79 deUint32 depthFailOp; member in struct:deqp::gles3::Functional::DepthStencilCaseUtil::StencilParams
89 , depthFailOp (0)
125 << " depth fail = " << glu::getStencilOpStr(params.depthFailOp) << "\n"
358 cmd.params.stencil[rr::FACETYPE_FRONT].depthFailOp = GL_KEEP;
374 dst.dpFail = sglr::rr_util::mapGLStencilOp(src.depthFailOp);
446 glStencilOpSeparate(glFace, sParams.stencilFailOp, sParams.depthFailOp, sParams.depthPassOp);
767 params.stencil[ndx].depthFailOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
876 params.stencil[visible].depthFailOp = functionCases[ndx].dFail;
884 params.stencil[notVisible].depthFailOp = GL_REPLACE;
947 params.stencil[visible].depthFailOp
[all...]
H A Des3fRandomFragmentOpTests.cpp83 dst.dpFail = sglr::rr_util::mapGLStencilOp(src.depthFailOp);
174 wrapper.glStencilOpSeparate(glFace, sParams.stencilFailOp, sParams.depthFailOp, sParams.depthPassOp);
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkTypeUtil.inl189 inline VkStencilOpState makeStencilOpState (VkStencilOp failOp, VkStencilOp passOp, VkStencilOp depthFailOp, VkCompareOp compareOp, deUint32 compareMask, deUint32 writeMask, deUint32 reference)
194 res.depthFailOp = depthFailOp;
H A DvkStructTypes.inl711 VkStencilOp depthFailOp;
H A DvkStrUtilImpl.inl2351 s << "\tdepthFailOp = " << value.depthFailOp << '\n';
/external/skia/src/gpu/vk/
H A DGrVkPipeline.cpp168 stencilInfo->front.depthFailOp = stencilInfo->front.failOp;
178 stencilInfo->back.depthFailOp = stencilInfo->front.failOp;
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineStencilTests.cpp230 m_stencilOps[stencilDepthFailOpIndex], // VkStencilOp depthFailOp;
953 refStencilFront.dpFail = mapVkStencilOp(m_stencilOpStateFront.depthFailOp);
958 refStencilBack.dpFail = mapVkStencilOp(m_stencilOpStateBack.depthFailOp);
1052 << "_dfail_" << getShortName(stencilOpState.depthFailOp)
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawCreateInfoUtil.hpp412 vk::VkStencilOp depthFailOp = vk::VK_STENCIL_OP_REPLACE,
H A DvktDrawCreateInfoUtil.cpp960 depthFailOp = _depthFailOp;
/external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateCreateInfoUtil.hpp414 vk::VkStencilOp depthFailOp = vk::VK_STENCIL_OP_REPLACE,
H A DvktDynamicStateCreateInfoUtil.cpp959 depthFailOp = _depthFailOp;
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
H A DvktQueryPoolCreateInfoUtil.hpp412 vk::VkStencilOp depthFailOp = vk::VK_STENCIL_OP_REPLACE,
H A DvktQueryPoolCreateInfoUtil.cpp966 depthFailOp = _depthFailOp;
/external/deqp/external/vulkancts/modules/vulkan/
H A DvktSynchronization.cpp813 depthStencilState.front.depthFailOp = VK_STENCIL_OP_KEEP;
/external/vulkan-validation-layers/layers/
H A Dparameter_validation.cpp3117 if (pCreateInfos->pDepthStencilState->front.depthFailOp < VK_STENCIL_OP_BEGIN_RANGE ||
3118 pCreateInfos->pDepthStencilState->front.depthFailOp > VK_STENCIL_OP_END_RANGE) {
3120 "vkCreateGraphicsPipelines parameter, VkStencilOp pCreateInfos->pDepthStencilState->front.depthFailOp, is "
3145 if (pCreateInfos->pDepthStencilState->back.depthFailOp < VK_STENCIL_OP_BEGIN_RANGE ||
3146 pCreateInfos->pDepthStencilState->back.depthFailOp > VK_STENCIL_OP_END_RANGE) {
3148 "vkCreateGraphicsPipelines parameter, VkStencilOp pCreateInfos->pDepthStencilState->back.depthFailOp, is "
/external/vulkan-validation-layers/tests/
H A Dvkrenderframework.cpp1176 m_ds_state.back.depthFailOp = VK_STENCIL_OP_KEEP;
H A Dlayer_validation_tests.cpp447 stencil.depthFailOp = VK_STENCIL_OP_KEEP;
/external/skia/third_party/vulkan/
H A Dvulkan.h1767 VkStencilOp depthFailOp; member in struct:VkStencilOpState
/external/vulkan-validation-layers/include/vulkan/
H A Dvulkan.h1776 VkStencilOp depthFailOp; member in struct:VkStencilOpState

Completed in 618 milliseconds