/external/angle/src/libANGLE/renderer/vulkan/shaders/src/ |
D | ExportStencil.frag | 20 uint stencilValue = subpassLoad(stencilIn).x; 21 if ((stencilValue >> params.bit & 1u) == 0)
|
D | BlitResolveStencilNoExport.comp | 116 uint stencilValue = TEXEL_FETCH(stencil, srcImageCoords, 0).x; 119 outStencils |= (stencilValue & 0xFF) << ((3 - i) * 8); 121 outStencils |= (stencilValue & 0xFF) << (i * 8);
|
/external/angle/src/libANGLE/renderer/d3d/ |
D | FramebufferD3D.cpp | 43 clearParams.stencilValue = state.getStencilClearValue(); in GetClearParameters() 178 clearParams.stencilValue = values[0]; in clearBufferiv() 195 clearParams.stencilValue = stencil; in clearBufferfi()
|
D | FramebufferD3D.h | 49 GLint stencilValue; member
|
/external/angle/src/libANGLE/renderer/vulkan/shaders/gen/ |
D | ExportStencil.frag.00000000.inc | 48 // uint stencilValue = subpassLoad(stencilIn). x; 49 // if((stencilValue >> params . bit & 1u)== 0)
|
D | BlitResolveStencilNoExport.comp.00000002.inc | 146 // uint stencilValue = texelFetch(stencil, srcImageCoords, 0). x; 148 // outStencils |=(stencilValue & 0xFF)<<(i * 8);
|
D | BlitResolveStencilNoExport.comp.00000000.inc | 155 // uint stencilValue = texture(usampler2D(stencil, blitSampler), srcImageCoords * param… 157 // outStencils |=(stencilValue & 0xFF)<<(i * 8);
|
D | BlitResolveStencilNoExport.comp.00000003.inc | 148 // uint stencilValue = texelFetch(stencil, ivec3(srcImageCoords, params . srcLayer), 0)… 150 // outStencils |=(stencilValue & 0xFF)<<(i * 8);
|
D | BlitResolveStencilNoExport.comp.00000001.inc | 158 // uint stencilValue = texture(usampler2DArray(stencil, blitSampler), vec3(srcImageCoor… 160 // outStencils |=(stencilValue & 0xFF)<<(i * 8);
|
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/ |
D | vktFragmentOperationsEarlyFragmentTests.cpp | 858 int stencilValue = (m_testMode == MODE_STENCIL) ? dsPixelAccess.getPixStencil(x, y, z) : 0; in iterate() local 884 if (m_useEarlyTests && ((x < 16 && stencilValue != 2u) || (x >= 16 && stencilValue != 4u))) in iterate() 887 … stencil value [ "<< x << ", " << y << ", " << z << "] is not correct: " << stencilValue << " != "; in iterate() 892 if (!m_useEarlyTests && ((x < 16 && stencilValue != 1u) || (x >= 16 && stencilValue != 3u))) in iterate() 895 … stencil value [ "<< x << ", " << y << ", " << z << "] is not correct: " << stencilValue << " != "; in iterate() 1633 int stencilValue = (m_testMode == MODE_STENCIL) ? dsPixelAccess.getPixStencil(x, y, z) : 0; in iterate() local 1657 if (m_useEarlyTests && ((x < 16 && stencilValue != 2u) || (x >= 16 && stencilValue != 4u))) in iterate() 1660 … stencil value [ "<< x << ", " << y << ", " << z << "] is not correct: " << stencilValue << " != "; in iterate() 1665 if (!m_useEarlyTests && ((x < 16 && stencilValue != 1u) || (x >= 16 && stencilValue != 3u))) in iterate() 1668 … stencil value [ "<< x << ", " << y << ", " << z << "] is not correct: " << stencilValue << " != "; in iterate()
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Clear11.cpp | 592 const UINT8 stencilClear = clearParams.stencilValue & 0xFF; in clearFramebuffer() 711 const UINT stencilValue = clearParams.stencilValue & 0xFF; in clearFramebuffer() local 712 stateManager->setDepthStencilState(dsState, stencilValue); in clearFramebuffer()
|
/external/deqp/external/vulkancts/modules/vulkan/api/ |
D | vktApiImageClearingTests.cpp | 1227 deUint32 stencilValue; in verifyResultImage() local 1239 stencilValue = m_params.clearValue[0].depthStencil.stencil; in verifyResultImage() 1243 stencilValue = m_params.initValue.depthStencil.stencil; in verifyResultImage() 1248 if (!comparePixelToStencilClearValue(image->getLevel(0), x, y, z, stencilValue, message)) in verifyResultImage()
|
D | vktApiCommandBuffersTests.cpp | 4649 const auto stencilValue = stencilAccess.getPixStencil(x, y); in iterate() local 4650 const bool stencilMismatch = (stencilValue != expectedStencil); in iterate()
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkImageUtil.hpp | 380 deUint32 stencilValue,
|
D | vkImageUtil.cpp | 4901 deUint32 stencilValue, in clearDepthStencilImage() argument 4910 …const VkClearDepthStencilValue clearValue = makeClearValueDepthStencil(depthValue, stencilValue)… in clearDepthStencilImage()
|
/external/deqp/modules/gles2/functional/ |
D | es2fDepthStencilTests.cpp | 284 int stencilValue = stencilValues[y0*numL0CellsX + x0]; in generateBaseClearAndDepthCommands() local 294 … clearCommands.push_back(ClearCommand(cellL1Rect, GL_STENCIL_BUFFER_BIT, Vec4(0), stencilValue)); in generateBaseClearAndDepthCommands()
|
/external/deqp/modules/gles3/functional/ |
D | es3fDepthStencilTests.cpp | 284 int stencilValue = stencilValues[y0*numL0CellsX + x0]; in generateBaseClearAndDepthCommands() local 294 … clearCommands.push_back(ClearCommand(cellL1Rect, GL_STENCIL_BUFFER_BIT, Vec4(0), stencilValue)); in generateBaseClearAndDepthCommands()
|
/external/angle/src/tests/gl_tests/ |
D | WebGLCompatibilityTest.cpp | 6055 const uint8_t stencilValue = 42; in TEST_P() local 6061 &stencilValue); in TEST_P() 6081 const uint32_t stencilValue = 42; in TEST_P() local 6088 GL_UNSIGNED_INT_24_8, &stencilValue); in TEST_P()
|
D | ClearTest.cpp | 108 void verifyStencil(uint32_t stencilValue, uint32_t size) in verifyStencil() argument 133 glStencilFunc(GL_EQUAL, stencilValue, 0xFF); in verifyStencil()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | meta.c | 3479 GLint stencilValue = 0; in cleartexsubimage_depth_stencil() local 3511 stencilValue = depthStencilValue[1] & 0xff; in cleartexsubimage_depth_stencil() 3519 _mesa_ClearBufferfi(GL_DEPTH_STENCIL, 0, depthValue, stencilValue); in cleartexsubimage_depth_stencil()
|
/external/deqp/external/vulkancts/modules/vulkan/geometry/ |
D | vktGeometryLayeredRenderingTests.cpp | 1433 const deUint8 stencilValue = 0; in testLayeredReadBack() local 1441 deMemset(bufferLayerStart, stencilValue, bufferSliceSize); in testLayeredReadBack()
|
/external/angle/src/libANGLE/renderer/d3d/d3d9/ |
D | Renderer9.cpp | 1966 DWORD stencil = clearParams.stencilValue & 0x000000FF; in clear()
|