summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Scheidegger <sroland@vmware.com>2010-09-22 17:59:00 +0200
committerJosé Fonseca <jfonseca@vmware.com>2010-09-25 12:19:31 +0100
commit26dc60d0a32f3e5b8084fda5991b762a721662e8 (patch)
tree221af7e0b0c7091c8736b714f434f039459a78b3
parent16a457bba6909d0c34036277eb3a56f27f425c3d (diff)
gallivm: fix copy&paste bug
looks like pot_depth should be used, not pot_height (found by accident, not verified)
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c2
1 files changed, 1 insertions, 1 deletions
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");
}