panfrost: Remove unused dither flag

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10869>
This commit is contained in:
Alyssa Rosenzweig
2021-05-14 16:00:40 -04:00
committed by Marge Bot
parent bb0b3fde10
commit 9ad1403747
2 changed files with 0 additions and 2 deletions

View File

@@ -70,7 +70,6 @@ panfrost_create_blend_state(struct pipe_context *pipe,
struct panfrost_blend_state *so = rzalloc(ctx, struct panfrost_blend_state);
so->base = *blend;
so->pan.dither = blend->dither;
so->pan.logicop_enable = blend->logicop_enable;
so->pan.logicop_func = blend->logicop_func;
so->pan.rt_count = blend->max_rt + 1;

View File

@@ -61,7 +61,6 @@ struct pan_blend_rt_state {
};
struct pan_blend_state {
bool dither;
bool logicop_enable;
enum pipe_logicop logicop_func;
float constants[4];