/external/mesa3d/src/mesa/swrast/ |
s_context.c | 68 if (!ctx->Color.ColorMask[i][0] || 69 !ctx->Color.ColorMask[i][1] || 70 !ctx->Color.ColorMask[i][2] || 71 !ctx->Color.ColorMask[i][3]) { 99 if (ctx->Color.ColorMask[i][0] + 100 ctx->Color.ColorMask[i][1] + 101 ctx->Color.ColorMask[i][2] + 102 ctx->Color.ColorMask[i][3] == 0) {
|
/external/deqp/modules/gles2/functional/ |
es2fColorClearTest.cpp | 90 ClearInfo (const tcu::IVec4& rect, deUint8 colorMask, tcu::RGBA color) 91 : m_rect(rect), m_colorMask(colorMask), m_color(color) 158 gl.colorMask((clearMask&0x1) != 0, (clearMask&0x2) != 0, (clearMask&0x4) != 0, (clearMask&0x8) != 0);
|
es2fDepthStencilTests.cpp | 191 tcu::BVec4 colorMask; 302 renderCmd.colorMask = tcu::BVec4(false); 326 cmd.colorMask = tcu::BVec4(false, false, true, false); 351 cmd.colorMask = tcu::BVec4(false, true, false, false); 393 dst.state.colorMask = src.colorMask; 462 glColorMask(command.colorMask[0] ? GL_TRUE : GL_FALSE, 463 command.colorMask[1] ? GL_TRUE : GL_FALSE, 464 command.colorMask[2] ? GL_TRUE : GL_FALSE, 465 command.colorMask[3] ? GL_TRUE : GL_FALSE) [all...] |
es2fDepthStencilClearTests.cpp | 332 gl.colorMask(GL_FALSE, GL_FALSE, GL_TRUE, GL_FALSE); 365 gl.colorMask (GL_FALSE, GL_TRUE, GL_FALSE, GL_FALSE); 392 gl.colorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
|
/external/deqp/modules/gles3/functional/ |
es3fColorClearTest.cpp | 90 ClearInfo (const tcu::IVec4& rect, deUint8 colorMask, tcu::RGBA color) 91 : m_rect(rect), m_colorMask(colorMask), m_color(color) 158 gl.colorMask((clearMask&0x1) != 0, (clearMask&0x2) != 0, (clearMask&0x4) != 0, (clearMask&0x8) != 0);
|
es3fDepthStencilTests.cpp | 191 tcu::BVec4 colorMask; 302 renderCmd.colorMask = tcu::BVec4(false); 326 cmd.colorMask = tcu::BVec4(false, false, true, false); 351 cmd.colorMask = tcu::BVec4(false, true, false, false); 393 dst.state.colorMask = src.colorMask; 462 glColorMask(command.colorMask[0] ? GL_TRUE : GL_FALSE, 463 command.colorMask[1] ? GL_TRUE : GL_FALSE, 464 command.colorMask[2] ? GL_TRUE : GL_FALSE, 465 command.colorMask[3] ? GL_TRUE : GL_FALSE) [all...] |
/external/deqp/modules/glshared/ |
glsInteractionTestUtil.hpp | 100 tcu::BVec4 colorMask;
|
glsFragOpInteractionCase.cpp | 276 ctx.colorMask(state.colorMask[0] ? GL_TRUE : GL_FALSE, 277 state.colorMask[1] ? GL_TRUE : GL_FALSE, 278 state.colorMask[2] ? GL_TRUE : GL_FALSE, 279 state.colorMask[3] ? GL_TRUE : GL_FALSE); 590 ctx.colorMask (GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
nouveau_driver.c | 117 mask = pack_rgba_i(s->format, ctx->Color.ColorMask[0]);
|
nv20_context.c | 58 if (ctx->Color.ColorMask[0][RCOMP]) 60 if (ctx->Color.ColorMask[0][GCOMP]) 62 if (ctx->Color.ColorMask[0][BCOMP]) 64 if (ctx->Color.ColorMask[0][ACOMP])
|
/frameworks/wilhelm/src/ |
devices.c | 92 (SLuint32) ~0 // colorMask
|
/external/deqp/framework/referencerenderer/ |
rrFragmentOperations.hpp | 148 void executeSignedValueWrite (int fragNdxOffset, int numSamplesPerFragment, const Fragment* inputFragments, const tcu::BVec4& colorMask, const tcu::PixelBufferAccess& colorBuffer); 149 void executeUnsignedValueWrite (int fragNdxOffset, int numSamplesPerFragment, const Fragment* inputFragments, const tcu::BVec4& colorMask, const tcu::PixelBufferAccess& colorBuffer);
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_bld_blend_aos.c | 331 fullcolormask = util_format_colormask_full(util_format_description(cbuf_format[rt]), state->colormask); 336 color_mask = lp_build_const_mask_aos_swizzled(gallivm, bld.base.type, state->colormask, swizzle);
|
lp_state_fs.c | 686 * \param rt the render target index (to index blend, colormask state) 742 if(blend->rt[rt].colormask & (1 << chan)) { [all...] |
/external/mesa3d/src/mesa/drivers/common/ |
meta.c | 102 GLubyte ColorMask[MAX_DRAW_BUFFERS][4]; 541 memcpy(save->ColorMask, ctx->Color.ColorMask, 542 sizeof(ctx->Color.ColorMask)); 543 if (!ctx->Color.ColorMask[0][0] || 544 !ctx->Color.ColorMask[0][1] || 545 !ctx->Color.ColorMask[0][2] || 546 !ctx->Color.ColorMask[0][3]) 863 if (!TEST_EQ_4V(ctx->Color.ColorMask[i], save->ColorMask[i])) [all...] |
/external/deqp/modules/gles31/functional/ |
es31fDrawBuffersIndexedTests.cpp | 170 , colorMask (colorMask_) 176 return (!enableBlend) && (!blendEq) && (!blendFunc) && (!colorMask); 182 Maybe<BVec4> colorMask; 195 if (blend.colorMask) 197 const BVec4& mask = *blend.colorMask; 199 gl.colorMask(mask.x(), mask.y(), mask.z(), mask.w()); 239 if (blend.colorMask) 241 const BVec4 mask = *blend.colorMask; 640 if (state.colorMask) 641 fragOps.colorMask = *state.colorMask [all...] |
/external/autotest/client/site_tests/graphics_PiglitBVT/test_scripts/other/ |
graphics_PiglitBVT_6.sh | 35 run_test "spec/ARB_texture_rg/fbo-colormask-formats" 0.0 "bin/fbo-colormask-formats GL_ARB_texture_rg -fbo -auto" 36 run_test "spec/ARB_texture_rg/fbo-colormask-formats-float" 0.0 "bin/fbo-colormask-formats GL_ARB_texture_rg-float -fbo -auto" 181 run_test "spec/EXT_draw_buffers2/fbo-drawbuffers2-colormask" 0.0 "bin/fbo-drawbuffers2-colormask -auto" 182 run_test "spec/EXT_draw_buffers2/fbo-drawbuffers2-colormask clear" 0.0 "bin/fbo-drawbuffers2-colormask clear -auto" [all...] |
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_quad_blend.c | 833 colormask_quad(unsigned colormask, 838 if (!(colormask & PIPE_MASK_R)) 842 if (!(colormask & PIPE_MASK_G)) 846 if (!(colormask & PIPE_MASK_B)) 850 if (!(colormask & PIPE_MASK_A)) [all...] |
/external/mesa3d/src/mesa/main/ |
attrib.c | [all...] |
/external/deqp/framework/opengl/wrapper/ |
glwInitES20Direct.inl | 25 gl->colorMask = &glColorMask;
|
/external/mesa3d/src/gallium/auxiliary/postprocess/ |
pp_program.c | 87 p->blend.rt[0].colormask = PIPE_MASK_RGBA;
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_state.c | 150 if ((blend->rt[0].colormask & PIPE_MASK_R) == 0) 153 if ((blend->rt[0].colormask & PIPE_MASK_G) == 0) 156 if ((blend->rt[0].colormask & PIPE_MASK_B) == 0) 159 if ((blend->rt[0].colormask & PIPE_MASK_A) == 0) [all...] |
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_state.c | 121 if (cso->rt[i].colormask != cso->rt[0].colormask) { 171 SB_DATA(so, nvc0_colormask(cso->rt[i].colormask)); 174 SB_DATA (so, nvc0_colormask(cso->rt[0].colormask));
|
/external/mesa3d/src/gallium/state_trackers/xa/ |
xa_yuv.c | 44 blend.rt[0].colormask = PIPE_MASK_RGBA;
|
/external/mesa3d/src/gallium/tests/graw/ |
shader-leak.c | 235 blend.rt[0].colormask = PIPE_MASK_RGBA;
|