mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
disabled unnecessary assertions in texture replicator
This commit is contained in:
parent
b3eda2443a
commit
701987c877
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue