From: José Fonseca Date: Fri, 8 Oct 2010 13:09:22 +0000 (+0100) Subject: gallivm: Fix copy'n'paste typo in previous commit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c8179ef5e8db46afd4efdf5cbb4d9c9d37e488f8;p=mesa.git gallivm: Fix copy'n'paste typo in previous commit. --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_sample.c b/src/gallium/auxiliary/gallivm/lp_bld_sample.c index cf6da2c2783..754902891b9 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_sample.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_sample.c @@ -452,10 +452,10 @@ lp_build_linear_mip_levels(struct lp_build_sample_context *bld, "clamp_lod_to_last"); *level0_out = LLVMBuildSelect(builder, clamp_max, - int_bld->zero, *level0_out, ""); + last_level, *level0_out, ""); *level1_out = LLVMBuildSelect(builder, clamp_max, - int_bld->zero, *level1_out, ""); + last_level, *level1_out, ""); *lod_fpart_inout = LLVMBuildSelect(builder, clamp_max, float_bld->zero, *lod_fpart_inout, "");