Home | History | Annotate | Download | only in softpipe

Lines Matching refs:rt

278    switch (softpipe->blend->rt[blend_index].rgb_src_factor) {
449 switch (softpipe->blend->rt[blend_index].alpha_src_factor) {
541 switch (softpipe->blend->rt[blend_index].rgb_dst_factor) {
701 switch (softpipe->blend->rt[blend_index].alpha_dst_factor) {
778 switch (softpipe->blend->rt[blend_index].rgb_func) {
811 switch (softpipe->blend->rt[blend_index].alpha_func) {
993 else if (blend->rt[blend_buf].blend_enable) {
1006 if (blend->rt[blend_buf].colormask != 0xf)
1007 colormask_quad( blend->rt[cbuf].colormask, quadColor, dest);
1231 softpipe->blend->rt[0].colormask == 0xf &&
1234 if (!blend->rt[0].blend_enable) {
1237 else if (blend->rt[0].rgb_src_factor == blend->rt[0].alpha_src_factor &&
1238 blend->rt[0].rgb_dst_factor == blend->rt[0].alpha_dst_factor &&
1239 blend->rt[0].rgb_func == blend->rt[0].alpha_func)
1241 if (blend->rt[0].alpha_func == PIPE_BLEND_ADD) {
1242 if (blend->rt[0].rgb_src_factor == PIPE_BLENDFACTOR_ONE &&
1243 blend->rt[0].rgb_dst_factor == PIPE_BLENDFACTOR_ONE) {
1246 else if (blend->rt[0].rgb_src_factor == PIPE_BLENDFACTOR_SRC_ALPHA &&
1247 blend->rt[0].rgb_dst_factor == PIPE_BLENDFACTOR_INV_SRC_ALPHA)