diff options
author | Daniel Borca <[email protected]> | 2004-06-24 06:44:38 +0000 |
---|---|---|
committer | Daniel Borca <[email protected]> | 2004-06-24 06:44:38 +0000 |
commit | 701987c877b5346f39b2258c45cf2b6c989fd9cc (patch) | |
tree | 4e7028dd7772c001002deda5c13662b89c16cbb0 /src/mesa/main/texstore.c | |
parent | b3eda2443ad0e260997c9c3df789b297326114c1 (diff) |
disabled unnecessary assertions in texture replicator
Diffstat (limited to 'src/mesa/main/texstore.c')
-rw-r--r-- | src/mesa/main/texstore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index c5f39c44536..56a72507f96 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 |