From: Rob Clark Date: Thu, 19 Sep 2013 14:28:52 +0000 (-0400) Subject: freedreno/a3xx: fix typo mixup w/ mipfilter X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7dab097a515c019afa8e1e84af497e5e1e85be5d;p=mesa.git freedreno/a3xx: fix typo mixup w/ mipfilter Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/a3xx/fd3_texture.c b/src/gallium/drivers/freedreno/a3xx/fd3_texture.c index a44ac46beb1..88b3f8eaab5 100644 --- a/src/gallium/drivers/freedreno/a3xx/fd3_texture.c +++ b/src/gallium/drivers/freedreno/a3xx/fd3_texture.c @@ -85,7 +85,7 @@ fd3_sampler_state_create(struct pipe_context *pctx, if (!so) return NULL; - if (cso->min_mip_filter == PIPE_TEX_MIPFILTER_NEAREST) + if (cso->min_mip_filter == PIPE_TEX_MIPFILTER_LINEAR) miplinear = true; so->base = *cso;