Home | History | Annotate | Download | only in vl

Lines Matching full:blend

508    struct pipe_blend_state blend;
524 memset(&blend, 0, sizeof blend);
526 blend.independent_blend_enable = 0;
527 blend.rt[0].blend_enable = 0;
528 blend.rt[0].rgb_func = PIPE_BLEND_ADD;
529 blend.rt[0].rgb_src_factor = PIPE_BLENDFACTOR_ONE;
530 blend.rt[0].rgb_dst_factor = PIPE_BLENDFACTOR_ONE;
531 blend.rt[0].alpha_func = PIPE_BLEND_ADD;
532 blend.rt[0].alpha_src_factor = PIPE_BLENDFACTOR_ONE;
533 blend.rt[0].alpha_dst_factor = PIPE_BLENDFACTOR_ONE;
534 blend.logicop_enable = 0;
535 blend.logicop_func = PIPE_LOGICOP_CLEAR;
537 blend.rt[0].colormask = PIPE_MASK_RGBA;
538 blend.dither = 0;
539 idct->blend = idct->pipe->create_blend_state(idct->pipe, &blend);
540 if (!idct->blend)
569 idct->pipe->delete_blend_state(idct->pipe, idct->blend);
584 idct->pipe->delete_blend_state(idct->pipe, idct->blend);
823 idct->pipe->bind_blend_state(idct->pipe, idct->blend);