From 701987c877b5346f39b2258c45cf2b6c989fd9cc Mon Sep 17 00:00:00 2001 From: Daniel Borca Date: Thu, 24 Jun 2004 06:44:38 +0000 Subject: disabled unnecessary assertions in texture replicator --- src/mesa/main/texstore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/main') 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 -- cgit v1.2.3