Searched defs:colormask (Results 1 - 6 of 6) sorted by relevance
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
H A D | sp_quad_blend.c | 833 colormask_quad(unsigned colormask, argument 838 if (!(colormask & PIPE_MASK_R)) 842 if (!(colormask & PIPE_MASK_G)) 846 if (!(colormask & PIPE_MASK_B)) 850 if (!(colormask & PIPE_MASK_A)) 1006 if (blend->rt[blend_buf].colormask != 0xf) 1007 colormask_quad( blend->rt[cbuf].colormask, quadColor, dest); 1231 softpipe->blend->rt[0].colormask == 0xf &&
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_quad_blend.c | 833 colormask_quad(unsigned colormask, argument 838 if (!(colormask & PIPE_MASK_R)) 842 if (!(colormask & PIPE_MASK_G)) 846 if (!(colormask & PIPE_MASK_B)) 850 if (!(colormask & PIPE_MASK_A)) 1006 if (blend->rt[blend_buf].colormask != 0xf) 1007 colormask_quad( blend->rt[cbuf].colormask, quadColor, dest); 1231 softpipe->blend->rt[0].colormask == 0xf &&
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
H A D | u_format.h | 521 * Give the RGBA colormask of the channels that can be represented in this 529 unsigned colormask; local 536 colormask = 0; 539 colormask |= (1 << chan); 542 return colormask; 555 * @param desc a format description to check colormask with 556 * @param colormask a bit mask for channels, matches format of PIPE_MASK_RGBA 559 util_format_colormask_full(const struct util_format_description *desc, unsigned colormask) argument 561 return (~colormask & util_format_colormask(desc)) == 0;
|
/external/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_format.h | 521 * Give the RGBA colormask of the channels that can be represented in this 529 unsigned colormask; local 536 colormask = 0; 539 colormask |= (1 << chan); 542 return colormask; 555 * @param desc a format description to check colormask with 556 * @param colormask a bit mask for channels, matches format of PIPE_MASK_RGBA 559 util_format_colormask_full(const struct util_format_description *desc, unsigned colormask) argument 561 return (~colormask & util_format_colormask(desc)) == 0;
|
/external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/ |
H A D | p_state.h | 264 unsigned colormask:4; /**< bitmask of PIPE_MASK_R/G/B/A */ member in struct:pipe_rt_blend_state
|
/external/mesa3d/src/gallium/include/pipe/ |
H A D | p_state.h | 264 unsigned colormask:4; /**< bitmask of PIPE_MASK_R/G/B/A */ member in struct:pipe_rt_blend_state
|
Completed in 541 milliseconds