[Mesa-dev] [PATCH 2/2] freedreno/a3xx: disable filtering for texture buffers and int textures
Ilia Mirkin
imirkin at alum.mit.edu
Wed Sep 16 23:04:22 PDT 2015
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
src/gallium/drivers/freedreno/a3xx/fd3_texture.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/gallium/drivers/freedreno/a3xx/fd3_texture.c b/src/gallium/drivers/freedreno/a3xx/fd3_texture.c
index 3367f23..6ed5e0c 100644
--- a/src/gallium/drivers/freedreno/a3xx/fd3_texture.c
+++ b/src/gallium/drivers/freedreno/a3xx/fd3_texture.c
@@ -229,6 +229,8 @@ fd3_sampler_view_create(struct pipe_context *pctx, struct pipe_resource *prsc,
fd3_tex_swiz(cso->format, cso->swizzle_r, cso->swizzle_g,
cso->swizzle_b, cso->swizzle_a);
+ if (prsc->target == PIPE_BUFFER || util_format_is_pure_integer(cso->format))
+ so->texconst0 |= A3XX_TEX_CONST_0_NOCONVERT;
if (util_format_is_srgb(cso->format))
so->texconst0 |= A3XX_TEX_CONST_0_SRGB;
--
2.4.6
More information about the mesa-dev
mailing list