From: Roland Scheidegger Date: Wed, 7 Feb 2018 21:02:54 +0000 (+0100) Subject: u_blit: (trivial) fix bogus argument order for set_fragment_shader X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=def09f8db0ce77fc41f5188418e0b06356ce59b7;p=mesa.git u_blit: (trivial) fix bogus argument order for set_fragment_shader Amazingly this still worked sometimes, albeit I'm not even sure why... This fixes d7bec6f7a6a2a35c80be939db8532011af1e9b67. --- diff --git a/src/gallium/auxiliary/util/u_blit.c b/src/gallium/auxiliary/util/u_blit.c index 817eeac9f0d..de39422e329 100644 --- a/src/gallium/auxiliary/util/u_blit.c +++ b/src/gallium/auxiliary/util/u_blit.c @@ -603,8 +603,8 @@ util_blit_pixels_tex(struct blit_state *ctx, cso_set_sampler_views(ctx->cso, PIPE_SHADER_FRAGMENT, 1, &src_sampler_view); /* shaders */ - set_fragment_shader(ctx, src_xrbias, - src_sampler_view->format, + set_fragment_shader(ctx, src_sampler_view->format, + src_xrbias, src_sampler_view->texture->target); set_vertex_shader(ctx); cso_set_tessctrl_shader_handle(ctx->cso, NULL);