mesa: Move ROUND_DOWN_TO() macro from i915/i965 to macros.h.
authorKenneth Graunke <kenneth@whitecape.org>
Mon, 8 Jul 2013 01:38:38 +0000 (18:38 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Sun, 13 Oct 2013 07:10:44 +0000 (00:10 -0700)
This seems generally useful, so it may as well live in core Mesa.

In fact, the comment for ALIGN() in macros.h actually says to "see also"
ROUND_DOWN_TO, which...was in a driver somewhere.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/drivers/dri/i915/intel_context.h
src/mesa/main/macros.h

index 6edb1895d9cbbf5fb2a607153267dd0374459780..32730a115ce912a4fe590d11de8f0c7002725d83 100644 (file)
@@ -293,19 +293,6 @@ extern char *__progname;
 #define SUBPIXEL_X 0.125
 #define SUBPIXEL_Y 0.125
 
-/**
- * Align a value down to an alignment value
- *
- * If \c value is not already aligned to the requested alignment value, it
- * will be rounded down.
- *
- * \param value  Value to be rounded
- * \param alignment  Alignment value to be used.  This must be a power of two.
- *
- * \sa ALIGN()
- */
-#define ROUND_DOWN_TO(value, alignment) ((value) & ~(alignment - 1))
-
 static INLINE uint32_t
 U_FIXED(float value, uint32_t frac_bits)
 {
index 05aad4eb8b1e939c39fb5c331abd54c973ae8191..4bb17d8d17478ea8eacbc2bb70c0c579a37f15e0 100644 (file)
@@ -675,6 +675,18 @@ minify(unsigned value, unsigned levels)
  */
 #define ALIGN(value, alignment)  (((value) + (alignment) - 1) & ~((alignment) - 1))
 
+/**
+ * Align a value down to an alignment value
+ *
+ * If \c value is not already aligned to the requested alignment value, it
+ * will be rounded down.
+ *
+ * \param value  Value to be rounded
+ * \param alignment  Alignment value to be used.  This must be a power of two.
+ *
+ * \sa ALIGN()
+ */
+#define ROUND_DOWN_TO(value, alignment) ((value) & ~(alignment - 1))
 
 
 /** Cross product of two 3-element vectors */