disabled unnecessary assertions in texture replicator
authorDaniel Borca <dborca@users.sourceforge.net>
Thu, 24 Jun 2004 06:44:38 +0000 (06:44 +0000)
committerDaniel Borca <dborca@users.sourceforge.net>
Thu, 24 Jun 2004 06:44:38 +0000 (06:44 +0000)
src/mesa/main/texstore.c

index c5f39c445366628dfc53c988dd65ebb213a41f5a..56a72507f96e5413f790082b6b009693fc928813 100644 (file)
@@ -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