[Mesa-dev] [PATCH 23/33] intel/anv: Use #defines for all __gen_ helpers

Jason Ekstrand jason at jlekstrand.net
Wed Aug 31 21:22:42 UTC 2016


This allows us to #undef them later if we don't want them to persist
---
 src/intel/vulkan/anv_private.h | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h
index 805b3aa..5ef81d9 100644
--- a/src/intel/vulkan/anv_private.h
+++ b/src/intel/vulkan/anv_private.h
@@ -807,12 +807,9 @@ struct anv_address {
    uint32_t offset;
 };
 
-#define __gen_address_type struct anv_address
-#define __gen_user_data struct anv_batch
-
 static inline uint64_t
-__gen_combine_address(struct anv_batch *batch, void *location,
-                      const struct anv_address address, uint32_t delta)
+_anv_combine_address(struct anv_batch *batch, void *location,
+                     const struct anv_address address, uint32_t delta)
 {
    if (address.bo == NULL) {
       return address.offset + delta;
@@ -823,6 +820,10 @@ __gen_combine_address(struct anv_batch *batch, void *location,
    }
 }
 
+#define __gen_address_type struct anv_address
+#define __gen_user_data struct anv_batch
+#define __gen_combine_address _anv_combine_address
+
 /* Wrapper macros needed to work around preprocessor argument issues.  In
  * particular, arguments don't get pre-evaluated if they are concatenated.
  * This means that, if you pass GENX(3DSTATE_PS) into the emit macro, the
-- 
2.5.0.400.gff86faf



More information about the mesa-dev mailing list