/external/mesa3d/src/gallium/drivers/nv30/ |
D | nv30_state.c | 63 cmask[0] = !!(cso->rt[0].colormask & PIPE_MASK_A) << 24 | in nv30_blend_state_create() 64 !!(cso->rt[0].colormask & PIPE_MASK_R) << 16 | in nv30_blend_state_create() 65 !!(cso->rt[0].colormask & PIPE_MASK_G) << 8 | in nv30_blend_state_create() 66 !!(cso->rt[0].colormask & PIPE_MASK_B); in nv30_blend_state_create() 72 cmask[1] |= !!(cso->rt[i].colormask & PIPE_MASK_A) << (0 + (i * 4)) | in nv30_blend_state_create() 73 !!(cso->rt[i].colormask & PIPE_MASK_R) << (1 + (i * 4)) | in nv30_blend_state_create() 74 !!(cso->rt[i].colormask & PIPE_MASK_G) << (2 + (i * 4)) | in nv30_blend_state_create() 75 !!(cso->rt[i].colormask & PIPE_MASK_B) << (3 + (i * 4)); in nv30_blend_state_create()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format.h | 529 unsigned colormask; in util_format_colormask() local 536 colormask = 0; in util_format_colormask() 539 colormask |= (1 << chan); in util_format_colormask() 542 return colormask; in util_format_colormask() 559 util_format_colormask_full(const struct util_format_description *desc, unsigned colormask) in util_format_colormask_full() argument 561 return (~colormask & util_format_colormask(desc)) == 0; in util_format_colormask_full()
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_quad_blend.c | 833 colormask_quad(unsigned colormask, in colormask_quad() argument 838 if (!(colormask & PIPE_MASK_R)) in colormask_quad() 842 if (!(colormask & PIPE_MASK_G)) in colormask_quad() 846 if (!(colormask & PIPE_MASK_B)) in colormask_quad() 850 if (!(colormask & PIPE_MASK_A)) in colormask_quad() 1006 if (blend->rt[blend_buf].colormask != 0xf) in blend_fallback() 1007 colormask_quad( blend->rt[cbuf].colormask, quadColor, dest); in blend_fallback() 1231 softpipe->blend->rt[0].colormask == 0xf && in choose_blend_quad()
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_cb_clear.c | 239 blend.rt[0].colormask |= PIPE_MASK_R; in clear_with_quad() 241 blend.rt[0].colormask |= PIPE_MASK_G; in clear_with_quad() 243 blend.rt[0].colormask |= PIPE_MASK_B; in clear_with_quad() 245 blend.rt[0].colormask |= PIPE_MASK_A; in clear_with_quad()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_bld_blend_aos.c | 331 …colormask = util_format_colormask_full(util_format_description(cbuf_format[rt]), state->colormask); in lp_build_blend_aos() 336 … color_mask = lp_build_const_mask_aos_swizzled(gallivm, bld.base.type, state->colormask, swizzle); in lp_build_blend_aos()
|
D | lp_state_fs.c | 742 if(blend->rt[rt].colormask & (1 << chan)) { in generate_blend() 1168 debug_printf("blend.colormask = 0x%x\n", key->blend.rt[0].colormask); in dump_fs_variant_key() 1248 fullcolormask = util_format_colormask_full(cbuf0_format_desc, key->blend.rt[0].colormask); in generate_variant() 1609 blend_rt->colormask = lp->blend->rt[i].colormask; in make_variant_key() 1614 blend_rt->colormask &= util_format_colormask(format_desc); in make_variant_key()
|
D | lp_bld_blend_soa.c | 234 if (blend->rt[rt].colormask & (1 << i)) { in lp_build_blend_soa()
|
D | lp_test_blend.c | 776 blend.rt[0].colormask = PIPE_MASK_RGBA; in test_all() 836 blend.rt[0].colormask = PIPE_MASK_RGBA; in test_some()
|
/external/mesa3d/src/gallium/docs/source/cso/ |
D | blend.rst | 98 color gets passed unmodified (but colormask still applies). 111 colormask
|
/external/mesa3d/src/gallium/auxiliary/postprocess/ |
D | pp_program.c | 87 p->blend.rt[0].colormask = PIPE_MASK_RGBA; in pp_init_prog()
|
/external/mesa3d/src/gallium/state_trackers/xa/ |
D | xa_yuv.c | 44 blend.rt[0].colormask = PIPE_MASK_RGBA; in xa_yuv_bind_blend_state()
|
/external/mesa3d/src/gallium/drivers/i915/ |
D | i915_state.c | 150 if ((blend->rt[0].colormask & PIPE_MASK_R) == 0) in i915_create_blend_state() 153 if ((blend->rt[0].colormask & PIPE_MASK_G) == 0) in i915_create_blend_state() 156 if ((blend->rt[0].colormask & PIPE_MASK_B) == 0) in i915_create_blend_state() 159 if ((blend->rt[0].colormask & PIPE_MASK_A) == 0) in i915_create_blend_state()
|
/external/mesa3d/src/gallium/include/pipe/ |
D | p_state.h | 264 unsigned colormask:4; /**< bitmask of PIPE_MASK_R/G/B/A */ member
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | renderer.c | 399 blend.rt[0].colormask |= PIPE_MASK_R; in renderer_set_blend() 401 blend.rt[0].colormask |= PIPE_MASK_G; in renderer_set_blend() 403 blend.rt[0].colormask |= PIPE_MASK_B; in renderer_set_blend() 405 blend.rt[0].colormask |= PIPE_MASK_A; in renderer_set_blend() 1268 blend.rt[0].colormask = PIPE_MASK_RGBA; in renderer_validate_blend()
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
D | nvc0_state.c | 121 if (cso->rt[i].colormask != cso->rt[0].colormask) { in nvc0_blend_state_create() 171 SB_DATA(so, nvc0_colormask(cso->rt[i].colormask)); in nvc0_blend_state_create() 174 SB_DATA (so, nvc0_colormask(cso->rt[0].colormask)); in nvc0_blend_state_create()
|
/external/mesa3d/src/gallium/tests/graw/ |
D | tri-gs.c | 240 blend.rt[0].colormask = PIPE_MASK_RGBA; in init()
|
D | shader-leak.c | 235 blend.rt[0].colormask = PIPE_MASK_RGBA; in init()
|
D | tri-instanced.c | 291 blend.rt[0].colormask = PIPE_MASK_RGBA; in init()
|
D | quad-sample.c | 362 blend.rt[0].colormask = PIPE_MASK_RGBA; in init()
|
D | graw_util.h | 156 blend.rt[0].colormask = PIPE_MASK_RGBA; in graw_util_default_state()
|
D | fs-test.c | 489 blend.rt[0].colormask = PIPE_MASK_RGBA; in init()
|
/external/mesa3d/src/gallium/tests/trivial/ |
D | tri.c | 147 p->blend.rt[0].colormask = PIPE_MASK_RGBA; in init_prog()
|
D | quad-tex.c | 196 p->blend.rt[0].colormask = PIPE_MASK_RGBA; in init_prog()
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_pipe_blend.c | 198 blend->rt[i].writemask = templ->rt[0].colormask; in svga_create_blend_state()
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_matrix_filter.c | 185 blend.rt[0].colormask = PIPE_MASK_RGBA; in vl_matrix_filter_init()
|