tests: Extract ALIGN macro into a common header
authorTvrtko Ursulin <tvrtko.ursulin@intel.com>
Wed, 23 Apr 2014 15:07:55 +0000 (16:07 +0100)
committerThomas Wood <thomas.wood@intel.com>
Thu, 24 Apr 2014 12:49:19 +0000 (13:49 +0100)
Makes for a little bit less code duplication, especially since
it will be used from more callers in the future.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Reviewed-by: Brad Volkin <bradley.d.volkin@intel.com>
Signed-off-by: Thomas Wood <thomas.wood@intel.com>
lib/drmtest.h
lib/media_fill_gen7.c
lib/media_fill_gen8.c
lib/rendercopy_gen6.c
lib/rendercopy_gen7.c
lib/rendercopy_gen8.c

index f3afbaa..84f80dc 100644 (file)
@@ -60,6 +60,15 @@ static inline void *igt_mmap64(void *addr, size_t length, int prot, int flags,
  */
 #define ARRAY_SIZE(arr) (sizeof(arr)/sizeof(arr[0]))
 
+/**
+ * ALIGN:
+ * @v: value to be aligned
+ * @a: alignment unit in bytes
+ *
+ * Macro to align a value @v to a specified unit @a.
+ */
+#define ALIGN(v, a) (((v) + (a)-1) & ~((a)-1))
+
 int drm_get_card(void);
 int drm_open_any(void);
 int drm_open_any_render(void);
index cdf4b60..82c3469 100644 (file)
@@ -4,10 +4,10 @@
 #include "media_fill.h"
 #include "gen7_media.h"
 #include "intel_reg.h"
+#include "drmtest.h"
 
 #include <assert.h>
 
-#define ALIGN(x, y) (((x) + (y)-1) & ~((y)-1))
 
 static const uint32_t media_kernel[][4] = {
        { 0x00400001, 0x20200231, 0x00000020, 0x00000000 },
index 996d4d0..54309d5 100644 (file)
@@ -4,10 +4,10 @@
 #include "media_fill.h"
 #include "gen8_media.h"
 #include "intel_reg.h"
+#include "drmtest.h"
 
 #include <assert.h>
 
-#define ALIGN(x, y) (((x) + (y)-1) & ~((y)-1))
 
 static const uint32_t media_kernel[][4] = {
        { 0x00400001, 0x20202288, 0x00000020, 0x00000000 },
index d806cef..7b3104c 100644 (file)
@@ -20,7 +20,6 @@
 #include "gen6_render.h"
 #include "intel_reg.h"
 
-#define ALIGN(x, y) (((x) + (y)-1) & ~((y)-1))
 #define VERTEX_SIZE (3*4)
 
 static const uint32_t ps_kernel_nomask_affine[][4] = {
index cdbc70c..5131d8f 100644 (file)
@@ -21,7 +21,6 @@
 #include "gen7_render.h"
 #include "intel_reg.h"
 
-#define ALIGN(x, y) (((x) + (y)-1) & ~((y)-1))
 
 static const uint32_t ps_kernel[][4] = {
        { 0x0080005a, 0x2e2077bd, 0x000000c0, 0x008d0040 },
index e846376..6f5a698 100644 (file)
@@ -25,7 +25,6 @@
 
 #include <intel_aub.h>
 
-#define ALIGN(x, y) (((x) + (y)-1) & ~((y)-1))
 #define VERTEX_SIZE (3*4)
 
 #if DEBUG_RENDERCPY