mesa: remove unused BITFIELD64 macros
authorBrian Paul <brianp@vmware.com>
Wed, 9 Feb 2011 02:25:04 +0000 (19:25 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 9 Feb 2011 02:25:04 +0000 (19:25 -0700)
src/mesa/main/mtypes.h

index 4e7621239123e3ae1c7d5a57bc75e22eb5fd6fcb..6f0aac6ee3b5bb0d5736ca4fe0fa406a43c4a509 100644 (file)
 /*@{*/
 typedef GLuint64 GLbitfield64;
 
-#define BITFIELD64_ONE         1ULL
-#define BITFIELD64_ALLONES     ~0ULL
-
 /** Set a single bit */
-#define BITFIELD64_BIT(b)      (BITFIELD64_ONE << (b))
-
-/** Set a mask of the least significant \c b bits */
-#define BITFIELD64_MASK(b)     (((b) >= 64) ? BITFIELD64_ALLONES : \
-                               (BITFIELD64_BIT(b) - 1))
-
-/**
- * Set all bits from l (low bit) to h (high bit), inclusive.
- *
- * \note \C BITFIELD_64_RANGE(0, 63) return 64 set bits.
- */
-#define BITFIELD64_RANGE(l, h) (BITFIELD64_MASK((h) + 1) & ~BITFIELD64_MASK(l))
-/*@}*/
+#define BITFIELD64_BIT(b)      (1ULL << (b))
 
 
 /**