Mesa (master): gallium/util: fix blitter sampler view target initialization

Roland Scheidegger sroland at kemper.freedesktop.org
Wed May 13 20:59:31 UTC 2015


Module: Mesa
Branch: master
Commit: 2712f70d57a0df25db6371496eb567564a588e13
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2712f70d57a0df25db6371496eb567564a588e13

Author: Roland Scheidegger <sroland at vmware.com>
Date:   Tue May 12 17:27:59 2015 +0200

gallium/util: fix blitter sampler view target initialization

This was missing, and drivers relying on the target in the view could get
into quite some trouble.

Signed-off-by: Roland Scheidegger <sroland at vmware.com>
Reviewed-by: Dave Airlie <airlied at redhat.com>
Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/gallium/auxiliary/util/u_blitter.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/src/gallium/auxiliary/util/u_blitter.c b/src/gallium/auxiliary/util/u_blitter.c
index 9d087fe..24a5b93 100644
--- a/src/gallium/auxiliary/util/u_blitter.c
+++ b/src/gallium/auxiliary/util/u_blitter.c
@@ -1306,6 +1306,7 @@ void util_blitter_default_src_texture(struct pipe_sampler_view *src_templ,
                                       unsigned srclevel)
 {
     memset(src_templ, 0, sizeof(*src_templ));
+    src_templ->target = src->target;
     src_templ->format = util_format_linear(src->format);
     src_templ->u.tex.first_level = srclevel;
     src_templ->u.tex.last_level = srclevel;




More information about the mesa-commit mailing list