Lines Matching full:blend
510 struct pipe_blend_state blend;
525 memset(&blend, 0, sizeof blend);
527 blend.independent_blend_enable = 0;
528 blend.rt[0].blend_enable = 0;
529 blend.rt[0].rgb_func = PIPE_BLEND_ADD;
530 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
531 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ONE;
532 blend.rt[0].alpha_func = PIPE_BLEND_ADD;
533 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
534 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
535 blend.logicop_enable = 0;
536 blend.logicop_func = PIPE_LOGICOP_CLEAR;
538 blend.rt[0].colormask = PIPE_MASK_RGBA;
539 blend.dither = 0;
540 idct->blend = idct->pipe->create_blend_state(idct->pipe, &blend);
541 if (!idct->blend)
570 idct->pipe->delete_blend_state(idct->pipe, idct->blend);
585 idct->pipe->delete_blend_state(idct->pipe, idct->blend);
838 idct->pipe->bind_blend_state(idct->pipe, idct->blend);