summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_texfilter.c
diff options
context:
space:
mode:
authorEtienne Clement <etienne.clement@autodesk.com>2007-02-14 13:21:12 -0700
committerBrian <brian@nostromo.localnet.net>2007-02-14 13:21:12 -0700
commit1e2b46963595e02172b4d651cc8a219e9f5c8176 (patch)
tree7358be14de040cebf838c16676ee99df1e083c8b /src/mesa/swrast/s_texfilter.c
parent7d8ed0f5f5960a492734cb415b8a85ef4ad79846 (diff)
test for POT before using sample_2d_linear_repeat()
Diffstat (limited to 'src/mesa/swrast/s_texfilter.c')
-rw-r--r--src/mesa/swrast/s_texfilter.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_texfilter.c b/src/mesa/swrast/s_texfilter.c
index f55e23422d..b2c5574d95 100644
--- a/src/mesa/swrast/s_texfilter.c
+++ b/src/mesa/swrast/s_texfilter.c
@@ -1196,7 +1196,9 @@ sample_linear_2d( GLcontext *ctx,
GLuint i;
struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel];
(void) lambda;
- if (tObj->WrapS == GL_REPEAT && tObj->WrapT == GL_REPEAT) {
+ if (tObj->WrapS == GL_REPEAT &&
+ tObj->WrapT == GL_REPEAT &&
+ image->_IsPowerOfTwo) {
for (i=0;i<n;i++) {
sample_2d_linear_repeat(ctx, tObj, image, texcoords[i], rgba[i]);
}