diff options
author | Brian Paul <brianp@vmware.com> | 2009-08-31 20:25:10 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-08-31 21:15:38 -0600 |
commit | 7a78e6e8af50f1254a6d9d1d8746a7b10add9668 (patch) | |
tree | 999193b90ae9166425c838717480a8c9684a628b /src/mesa/drivers/common | |
parent | 5b0f7c6c3bbef1354725b0231c80509d880a40fe (diff) | |
download | external_mesa3d-7a78e6e8af50f1254a6d9d1d8746a7b10add9668.zip external_mesa3d-7a78e6e8af50f1254a6d9d1d8746a7b10add9668.tar.gz external_mesa3d-7a78e6e8af50f1254a6d9d1d8746a7b10add9668.tar.bz2 |
mesa: disable another debug test
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r-- | src/mesa/drivers/common/meta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index 09c5779..8ed6479 100644 --- a/src/mesa/drivers/common/meta.c +++ b/src/mesa/drivers/common/meta.c @@ -736,7 +736,7 @@ alloc_texture(struct temp_texture *tex, { GLboolean newTex = GL_FALSE; - if (1|| width > tex->Width || + if (width > tex->Width || height > tex->Height || intFormat != tex->IntFormat) { /* alloc new texture (larger or different format) */ |