i915g: Add blitter_context argument.
authorVinson Lee <vlee@freedesktop.org>
Thu, 8 Jun 2017 07:15:59 +0000 (00:15 -0700)
committerVinson Lee <vlee@freedesktop.org>
Thu, 8 Jun 2017 20:47:39 +0000 (13:47 -0700)
Fix build error.

  CC       i915_surface.lo
i915_surface.c:108:63: error: too few arguments to function call, expected 4, have 3
   util_blitter_default_src_texture(&src_templ, src, src_level);
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                           ^
../../../../src/gallium/auxiliary/util/u_blitter.h:271:1: note: 'util_blitter_default_src_texture' declared here
void util_blitter_default_src_texture(struct blitter_context *blitter,
^

Fixes: a893c9169733 ("gallium/u_blitter: use 2D_ARRAY for cubemap blits if possible")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101340
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Reviewed-by: Juan A. Suarez Romero <jasuarez@igalia.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
src/gallium/drivers/i915/i915_surface.c

index 27b0d9eae8571863c64238bf2f8e7ab831241dd8..57e90c6ed23a8c2c672c5966cef606d3fda817be 100644 (file)
@@ -105,7 +105,7 @@ i915_surface_copy_render(struct pipe_context *pipe,
       goto fallback;
 
    util_blitter_default_dst_texture(&dst_templ, dst, dst_level, dstz);
-   util_blitter_default_src_texture(&src_templ, src, src_level);
+   util_blitter_default_src_texture(i915->blitter, &src_templ, src, src_level);
 
    if (!util_blitter_is_copy_supported(i915->blitter, dst, src))
       goto fallback;