Searched refs:aMask (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/mesa/swrast/ |
D | s_masking.c | 75 const GLushort aMask = ctx->Color.ColorMask[buf][ACOMP] ? 0xffff : 0x0; in _swrast_mask_rgba_span() local 83 src[i][ACOMP] = (src[i][ACOMP] & aMask) | (dst[i][ACOMP] & ~aMask); in _swrast_mask_rgba_span() 91 const GLuint aMask = ctx->Color.ColorMask[buf][ACOMP] ? ~0x0 : 0x0; in _swrast_mask_rgba_span() local 99 src[i][ACOMP] = (src[i][ACOMP] & aMask) | (dst[i][ACOMP] & ~aMask); in _swrast_mask_rgba_span()
|
/external/swiftshader/src/Shader/ |
D | PixelRoutine.hpp | 52 void alphaTest(Int &aMask, Short4 &alpha);
|
D | PixelRoutine.cpp | 533 void PixelRoutine::alphaTest(Int &aMask, Short4 &alpha) in alphaTest() argument 541 aMask = 0xF; in alphaTest() 544 aMask = 0x0; in alphaTest() 548 aMask = SignMask(Pack(cmp, Short4(0x0000, 0x0000, 0x0000, 0x0000))); in alphaTest() 552 aMask = SignMask(Pack(cmp, Short4(0x0000, 0x0000, 0x0000, 0x0000))); in alphaTest() 556 aMask = SignMask(Pack(cmp, Short4(0x0000, 0x0000, 0x0000, 0x0000))); in alphaTest() 562 aMask = SignMask(Pack(cmp, Short4(0x0000, 0x0000, 0x0000, 0x0000))); in alphaTest() 566 aMask = SignMask(Pack(cmp, Short4(0x0000, 0x0000, 0x0000, 0x0000))); in alphaTest() 570 aMask = SignMask(Pack(cmp, Short4(0x0000, 0x0000, 0x0000, 0x0000))); in alphaTest()
|
D | PixelProgram.cpp | 548 Int aMask; in alphaTest() local 554 PixelRoutine::alphaTest(aMask, alpha); in alphaTest() 558 cMask[q] &= aMask; in alphaTest()
|
D | PixelPipeline.cpp | 273 Int aMask; in alphaTest() local 277 PixelRoutine::alphaTest(aMask, current.w); in alphaTest() 281 cMask[q] &= aMask; in alphaTest()
|