Mesa (master): mesa: remove unneeded compressed texure size checks

Brian Paul brianp at kemper.freedesktop.org
Fri Nov 28 20:54:15 UTC 2008


Module: Mesa
Branch: master
Commit: 3b5cd7d74adaeb4c0cf27925ba187235c7a4cff4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3b5cd7d74adaeb4c0cf27925ba187235c7a4cff4

Author: Phillip Klaus Krause <pkk at spth.de>
Date:   Fri Nov 28 13:54:08 2008 -0700

mesa: remove unneeded compressed texure size checks

---

 src/mesa/main/texcompress.c |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/src/mesa/main/texcompress.c b/src/mesa/main/texcompress.c
index c44d594..3ff633a 100644
--- a/src/mesa/main/texcompress.c
+++ b/src/mesa/main/texcompress.c
@@ -149,8 +149,6 @@ _mesa_compressed_texture_size( GLcontext *ctx,
       /* Textures smaller than 8x4 will effectively be made into 8x4 and
        * take 16 bytes.
        */
-      if (size < 16)
-         size = 16;
       return size;
    case MESA_FORMAT_RGB_DXT1:
    case MESA_FORMAT_RGBA_DXT1:
@@ -162,8 +160,6 @@ _mesa_compressed_texture_size( GLcontext *ctx,
       /* Textures smaller than 4x4 will effectively be made into 4x4 and
        * take 8 bytes.
        */
-      if (size < 8)
-         size = 8;
       return size;
    case MESA_FORMAT_RGBA_DXT3:
    case MESA_FORMAT_RGBA_DXT5:
@@ -175,8 +171,6 @@ _mesa_compressed_texture_size( GLcontext *ctx,
       /* Textures smaller than 4x4 will effectively be made into 4x4 and
        * take 16 bytes.
        */
-      if (size < 16)
-         size = 16;
       return size;
    default:
       _mesa_problem(ctx, "bad mesaFormat in _mesa_compressed_texture_size");




More information about the mesa-commit mailing list