summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesa/main/texstore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c
index c5f39c4453..56a72507f9 100644
--- a/src/mesa/main/texstore.c
+++ b/src/mesa/main/texstore.c
@@ -3455,8 +3455,8 @@ _mesa_upscale_teximage2d (GLsizei inWidth, GLsizei inHeight,
ASSERT(outWidth >= inWidth);
ASSERT(outHeight >= inHeight);
- ASSERT(inWidth == 1 || inWidth == 2 || inHeight == 1 || inHeight == 2);
#if 0
+ ASSERT(inWidth == 1 || inWidth == 2 || inHeight == 1 || inHeight == 2);
ASSERT((outWidth & 3) == 0);
ASSERT((outHeight & 3) == 0);
#endif