From 7dab097a515c019afa8e1e84af497e5e1e85be5d Mon Sep 17 00:00:00 2001 From: Rob Clark Date: Thu, 19 Sep 2013 10:28:52 -0400 Subject: [PATCH] freedreno/a3xx: fix typo mixup w/ mipfilter Signed-off-by: Rob Clark --- src/gallium/drivers/freedreno/a3xx/fd3_texture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2