diff options
author | Brian Paul <[email protected]> | 2011-10-07 08:22:35 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-10-07 08:23:24 -0600 |
commit | 26b8dfc8cadf0f1a8604fc77b226cc7de005f9ca (patch) | |
tree | eace2c4f02e360600f472d4d6ce88cc597537b49 | |
parent | ba69c4a0025e73ec2997795ddb4c3d6a210bfe32 (diff) |
swrast: silence unused var warnings in non-debug builds
-rw-r--r-- | src/mesa/swrast/s_texfilter.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/swrast/s_texfilter.c b/src/mesa/swrast/s_texfilter.c index ca9133b212a..121e0fce2cc 100644 --- a/src/mesa/swrast/s_texfilter.c +++ b/src/mesa/swrast/s_texfilter.c @@ -1369,6 +1369,7 @@ opt_sample_rgb_2d(struct gl_context *ctx, ASSERT(img->Border==0); ASSERT(img->TexFormat == MESA_FORMAT_RGB888); ASSERT(swImg->_IsPowerOfTwo); + (void) swImg; for (k=0; k<n; k++) { GLint i = IFLOOR(texcoords[k][0] * width) & colMask; @@ -1412,6 +1413,7 @@ opt_sample_rgba_2d(struct gl_context *ctx, ASSERT(img->Border==0); ASSERT(img->TexFormat == MESA_FORMAT_RGBA8888); ASSERT(swImg->_IsPowerOfTwo); + (void) swImg; for (i = 0; i < n; i++) { const GLint col = IFLOOR(texcoords[i][0] * width) & colMask; |