Searched refs:BlendEnabled (Results 1 – 25 of 29) sorted by relevance
12
/external/mesa3d/src/mesa/state_tracker/ |
D | st_atom_blend.c | 178 if (ctx->Color.BlendEnabled && in blend_per_rt() 179 (ctx->Color.BlendEnabled != ((1U << ctx->Const.MaxDrawBuffers) - 1))) { in blend_per_rt() 209 else if (ctx->Color.BlendEnabled && !ctx->Color._AdvancedBlendMode) { in st_update_blend() 213 blend->rt[i].blend_enable = (ctx->Color.BlendEnabled >> i) & 0x1; in st_update_blend()
|
D | st_cb_drawpixels.c | 1313 !ctx->Color.BlendEnabled && in blit_copy_pixels()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_pixel.c | 70 if (ctx->Color.BlendEnabled && in intel_check_blit_fragment_ops()
|
D | intel_pixel_copy.c | 128 ctx->Color.BlendEnabled) { in do_blit_copypixels()
|
D | i830_state.c | 244 else if (ctx->Color.BlendEnabled) { in i830EvalLogicOpBlendState() 383 (ctx->Color.BlendEnabled) ? "en" : "dis"); in i830_set_blend_state()
|
D | i915_state.c | 221 if (ctx->Color.BlendEnabled) { in i915EvalLogicOpBlendState()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_pixel.c | 67 if (ctx->Color.BlendEnabled && in intel_check_blit_fragment_ops()
|
D | intel_pixel_copy.c | 132 ctx->Color.BlendEnabled) { in do_blit_copypixels()
|
D | brw_wm.c | 536 (ctx->Color.BlendEnabled & 1) && ctx->Color.Blend[0]._UsesDualSrc; in brw_wm_populate_key()
|
D | genX_state_upload.c | 1885 wm_prog_data->dual_src_blend && (ctx->Color.BlendEnabled & 1) && 2830 ctx->Color.BlendEnabled & (1 << i) : ctx->Color.BlendEnabled; 3867 (ctx->Color.BlendEnabled & 1) && 4587 if (rb && !buffer0_is_integer && (color->BlendEnabled & 1)) {
|
D | brw_draw.c | 551 bool blend_enabled = ctx->Color.BlendEnabled & (1 << i); in brw_predraw_resolve_framebuffer()
|
D | brw_wm_surface_state.c | 921 (ctx->Color.BlendEnabled & (1 << unit))) in gen4_update_renderbuffer_surface()
|
/external/mesa3d/src/mesa/main/ |
D | enable.c | 326 if (newEnabled != ctx->Color.BlendEnabled) { in _mesa_set_enable() 328 ctx->Color.BlendEnabled = newEnabled; in _mesa_set_enable() 1195 if (((ctx->Color.BlendEnabled >> index) & 1) != state) { in _mesa_set_enablei() 1198 ctx->Color.BlendEnabled |= (1 << index); in _mesa_set_enablei() 1200 ctx->Color.BlendEnabled &= ~(1 << index); in _mesa_set_enablei() 1259 return (ctx->Color.BlendEnabled >> index) & 1; in _mesa_IsEnabledi() 1327 return ctx->Color.BlendEnabled & 1; /* return state for buffer[0] */ in _mesa_IsEnabled()
|
D | attrib.c | 325 attr->Blend = ctx->Color.BlendEnabled; in _mesa_PushAttrib() 583 if (ctx->Color.BlendEnabled != enable->Blend) { in pop_enable_group() 1016 if (ctx->Color.BlendEnabled != color->BlendEnabled) { in _mesa_PopAttrib() 1021 (color->BlendEnabled >> i) & 1); in _mesa_PopAttrib() 1025 _mesa_set_enable(ctx, GL_BLEND, (color->BlendEnabled & 1)); in _mesa_PopAttrib()
|
D | api_validate.c | 64 if (ctx->Color.BlendEnabled && ctx->Color._AdvancedBlendMode) { in check_blend_func_error()
|
D | blend.c | 1178 ctx->Color.BlendEnabled = 0x0; in _mesa_init_color()
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nv04_state_raster.c | 210 if (ctx->Color.BlendEnabled) in nv04_emit_blend()
|
D | nv10_state_raster.c | 68 PUSH_DATAb(push, ctx->Color.BlendEnabled); in nv10_emit_blend_equation()
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_state.c | 132 if (ctx->Color.BlendEnabled) in radeonBlendEquationSeparate() 143 if ( (ctx->Color.ColorLogicOpEnabled || (ctx->Color.BlendEnabled in radeonBlendEquationSeparate() 199 if (ctx->Color.BlendEnabled) in radeonBlendFuncSeparate() 243 if (ctx->Color.BlendEnabled) in radeonBlendFuncSeparate() 1480 if ( (ctx->Color.ColorLogicOpEnabled || (ctx->Color.BlendEnabled in radeonEnable() 1619 if ( (ctx->Color.ColorLogicOpEnabled || (ctx->Color.BlendEnabled in radeonEnable()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | meta.c | 496 save->BlendEnabled = ctx->Color.BlendEnabled; in _mesa_meta_begin() 497 if (ctx->Color.BlendEnabled) { in _mesa_meta_begin() 862 if (ctx->Color.BlendEnabled != save->BlendEnabled) { in _mesa_meta_end() 866 _mesa_set_enablei(ctx, GL_BLEND, i, (save->BlendEnabled >> i) & 1); in _mesa_meta_end() 870 _mesa_set_enable(ctx, GL_BLEND, (save->BlendEnabled & 1)); in _mesa_meta_end()
|
D | driverfuncs.c | 245 ctx->Driver.Enable(ctx, GL_BLEND, ctx->Color.BlendEnabled); in _mesa_init_driver_state()
|
D | meta.h | 86 GLbitfield BlendEnabled; member
|
/external/mesa3d/src/mesa/swrast/ |
D | s_context.c | 62 if (ctx->Color.BlendEnabled) rasterMask |= BLEND_BIT; in _swrast_update_rasterflags()
|
D | s_span.c | 1367 else if ((ctx->Color.BlendEnabled >> buf) & 1) { in _swrast_write_rgba_span()
|
/external/mesa3d/src/mesa/program/ |
D | prog_statevars.c | 601 val[0].i = ctx->Color.BlendEnabled ? ctx->Color._AdvancedBlendMode : 0; in _mesa_fetch_state()
|
12