diff --git a/src/gallium/drivers/panfrost/pan_blend_cso.c b/src/gallium/drivers/panfrost/pan_blend_cso.c index cce2c263bdb..c61da749121 100644 --- a/src/gallium/drivers/panfrost/pan_blend_cso.c +++ b/src/gallium/drivers/panfrost/pan_blend_cso.c @@ -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; diff --git a/src/panfrost/lib/pan_blend.h b/src/panfrost/lib/pan_blend.h index 8fa61381099..73bf8c69188 100644 --- a/src/panfrost/lib/pan_blend.h +++ b/src/panfrost/lib/pan_blend.h @@ -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];