Home | History | Annotate | Download | only in vl

Lines Matching full:blend

265    struct pipe_blend_state blend;
279 memset(&blend, 0, sizeof blend);
281 blend.independent_blend_enable = 0;
282 blend.rt[0].blend_enable = 0;
283 blend.rt[0].rgb_func = PIPE_BLEND_ADD;
284 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
285 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ONE;
286 blend.rt[0].alpha_func = PIPE_BLEND_ADD;
287 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
288 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
289 blend.logicop_enable = 0;
290 blend.logicop_func = PIPE_LOGICOP_CLEAR;
292 blend.rt[0].colormask = PIPE_MASK_RGBA;
293 blend.dither = 0;
294 zscan->blend = zscan->pipe->create_blend_state(zscan->pipe, &blend);
295 if (!zscan->blend)
324 zscan->pipe->delete_blend_state(zscan->pipe, zscan->blend);
341 zscan->pipe->delete_blend_state(zscan->pipe, zscan->blend);
598 zscan->pipe->bind_blend_state(zscan->pipe, zscan->blend);