mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 17:58:26 +02:00
svga: adapt to blend changes
This commit is contained in:
parent
4e6bfa6de1
commit
6893948d48
1 changed files with 9 additions and 9 deletions
|
|
@ -182,15 +182,15 @@ svga_create_blend_state(struct pipe_context *pipe,
|
|||
}
|
||||
}
|
||||
else {
|
||||
blend->rt[i].blend_enable = templ->blend_enable;
|
||||
blend->rt[i].blend_enable = templ->rt[0].blend_enable;
|
||||
|
||||
if (templ->blend_enable) {
|
||||
blend->rt[i].srcblend = svga_translate_blend_factor(templ->rgb_src_factor);
|
||||
blend->rt[i].dstblend = svga_translate_blend_factor(templ->rgb_dst_factor);
|
||||
blend->rt[i].blendeq = svga_translate_blend_func(templ->rgb_func);
|
||||
blend->rt[i].srcblend_alpha = svga_translate_blend_factor(templ->alpha_src_factor);
|
||||
blend->rt[i].dstblend_alpha = svga_translate_blend_factor(templ->alpha_dst_factor);
|
||||
blend->rt[i].blendeq_alpha = svga_translate_blend_func(templ->alpha_func);
|
||||
if (templ->rt[0].blend_enable) {
|
||||
blend->rt[i].srcblend = svga_translate_blend_factor(templ->rt[0].rgb_src_factor);
|
||||
blend->rt[i].dstblend = svga_translate_blend_factor(templ->rt[0].rgb_dst_factor);
|
||||
blend->rt[i].blendeq = svga_translate_blend_func(templ->rt[0].rgb_func);
|
||||
blend->rt[i].srcblend_alpha = svga_translate_blend_factor(templ->rt[0].alpha_src_factor);
|
||||
blend->rt[i].dstblend_alpha = svga_translate_blend_factor(templ->rt[0].alpha_dst_factor);
|
||||
blend->rt[i].blendeq_alpha = svga_translate_blend_func(templ->rt[0].alpha_func);
|
||||
|
||||
if (blend->rt[i].srcblend_alpha != blend->rt[i].srcblend ||
|
||||
blend->rt[i].dstblend_alpha != blend->rt[i].dstblend ||
|
||||
|
|
@ -201,7 +201,7 @@ svga_create_blend_state(struct pipe_context *pipe,
|
|||
}
|
||||
}
|
||||
|
||||
blend->rt[i].writemask = templ->colormask;
|
||||
blend->rt[i].writemask = templ->rt[0].colormask;
|
||||
}
|
||||
|
||||
return blend;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue