Mesa (master): mesa: glGet: remove the unused TYPE_API_MASK flags

Oliver McFadden omcfadde at kemper.freedesktop.org
Wed Oct 10 09:45:22 UTC 2012


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

Author: Imre Deak <imre.deak at intel.com>
Date:   Mon Sep 10 08:46:51 2012 +0300

mesa: glGet: remove the unused TYPE_API_MASK flags

Since we generate the hash tables in build time, these flags aren't used
any more, remove them.

Signed-off-by: Imre Deak <imre.deak at intel.com>
Reviewed-by: Brian Paul <brianp at vmware.com>
Reviewed-by: Oliver McFadden <oliver.mcfadden at linux.intel.com>

---

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

diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c
index c5ccd66..b943d69 100644
--- a/src/mesa/main/get.c
+++ b/src/mesa/main/get.c
@@ -84,7 +84,6 @@
 
 enum value_type {
    TYPE_INVALID,
-   TYPE_API_MASK,
    TYPE_INT,
    TYPE_INT_2,
    TYPE_INT_3,
@@ -386,11 +385,6 @@ extra_NV_read_buffer_api_gl[] = {
    EXTRA_END
 };
 
-#define API_OPENGL_BIT (1 << API_OPENGL)
-#define API_OPENGLES_BIT (1 << API_OPENGLES)
-#define API_OPENGLES2_BIT (1 << API_OPENGLES2)
-#define API_OPENGL_CORE_BIT (1 << API_OPENGL_CORE)
-
 /* This is the big table describing all the enums we accept in
  * glGet*v().  The table is partitioned into six parts: enums
  * understood by all GL APIs (OpenGL, GLES and GLES2), enums shared




More information about the mesa-commit mailing list