Mesa (master): dri_util: Elminiate the bytes_per_pixel table

Ian Romanick idr at kemper.freedesktop.org
Mon Oct 29 16:59:01 UTC 2012


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

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Thu Jul 12 11:48:53 2012 -0700

dri_util: Elminiate the bytes_per_pixel table

With fewer formats to support, it's kind of useless.

Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>
Reviewed-by: Eric Anholt <eric at anholt.net>
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

 src/mesa/drivers/dri/common/utils.c |   12 +++---------
 1 files changed, 3 insertions(+), 9 deletions(-)

diff --git a/src/mesa/drivers/dri/common/utils.c b/src/mesa/drivers/dri/common/utils.c
index 1b33782..5117ff7 100644
--- a/src/mesa/drivers/dri/common/utils.c
+++ b/src/mesa/drivers/dri/common/utils.c
@@ -227,13 +227,6 @@ driCreateConfigs(GLenum fb_format, GLenum fb_type,
       { 0x00FF0000, 0x0000FF00, 0x000000FF, 0xFF000000 }, /* 8_8_8_8_REV */
    };
 
-   static const uint8_t bytes_per_pixel[6] = {
-      2, /* 5_6_5       */
-      2, /* 5_6_5_REV   */
-      4, /* 8_8_8_8     */
-      4  /* 8_8_8_8_REV */
-   };
-
    const uint8_t  * bits;
    const uint32_t * masks;
    int index;
@@ -292,8 +285,9 @@ driCreateConfigs(GLenum fb_format, GLenum fb_type,
          return NULL;
    }
 
-   switch ( bytes_per_pixel[ index ] ) {
-      case 2:
+   switch ( index ) {
+      case 0:
+      case 1:
 	 bits = bits_table[0];
 	 break;
       default:




More information about the mesa-commit mailing list