Lines Matching full:blend
269 struct pipe_blend_state blend;
284 memset(&blend, 0, sizeof blend);
286 blend.independent_blend_enable = 0;
287 blend.rt[0].blend_enable = 0;
288 blend.rt[0].rgb_func = PIPE_BLEND_ADD;
289 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
290 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ONE;
291 blend.rt[0].alpha_func = PIPE_BLEND_ADD;
292 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
293 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
294 blend.logicop_enable = 0;
295 blend.logicop_func = PIPE_LOGICOP_CLEAR;
297 blend.rt[0].colormask = PIPE_MASK_RGBA;
298 blend.dither = 0;
299 zscan->blend = zscan->pipe->create_blend_state(zscan->pipe, &blend);
300 if (!zscan->blend)
329 zscan->pipe->delete_blend_state(zscan->pipe, zscan->blend);
346 zscan->pipe->delete_blend_state(zscan->pipe, zscan->blend);
578 zscan->pipe->bind_blend_state(zscan->pipe, zscan->blend);