projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3eda24
)
disabled unnecessary assertions in texture replicator
author
Daniel Borca
<dborca@users.sourceforge.net>
Thu, 24 Jun 2004 06:44:38 +0000
(06:44 +0000)
committer
Daniel Borca
<dborca@users.sourceforge.net>
Thu, 24 Jun 2004 06:44:38 +0000
(06:44 +0000)
src/mesa/main/texstore.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/texstore.c
b/src/mesa/main/texstore.c
index c5f39c445366628dfc53c988dd65ebb213a41f5a..56a72507f96e5413f790082b6b009693fc928813 100644
(file)
--- 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