From: Roland Scheidegger Date: Wed, 22 Sep 2010 15:59:00 +0000 (+0200) Subject: gallivm: fix copy&paste bug X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=26dc60d0a32f3e5b8084fda5991b762a721662e8;p=mesa.git gallivm: fix copy&paste bug looks like pot_depth should be used, not pot_height (found by accident, not verified) --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c index db2a6a0b22b..e3e8548d93b 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c @@ -605,7 +605,7 @@ lp_build_sample_image_nearest(struct lp_build_sample_context *bld, if (dims == 3) { z = lp_build_sample_wrap_nearest(bld, r, depth_vec, - bld->static_state->pot_height, + bld->static_state->pot_depth, bld->static_state->wrap_r); lp_build_name(z, "tex.z.wrapped"); }