[Mesa-dev] [PATCH 06/18] i965: Add a CHECK macro to call more complicated validation funcs.

Matt Turner mattst88 at gmail.com
Tue Nov 22 19:59:40 UTC 2016


---
 src/mesa/drivers/dri/i965/brw_eu_validate.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/src/mesa/drivers/dri/i965/brw_eu_validate.c b/src/mesa/drivers/dri/i965/brw_eu_validate.c
index e23f1ec..3225386 100644
--- a/src/mesa/drivers/dri/i965/brw_eu_validate.c
+++ b/src/mesa/drivers/dri/i965/brw_eu_validate.c
@@ -53,6 +53,15 @@ cat(struct string *dest, const struct string src)
       }                              \
    } while(0)
 
+#define CHECK(func, args...)                             \
+   do {                                                  \
+      struct string __msg = func(devinfo, inst, ##args); \
+      if (__msg.str) {                                   \
+         cat(&error_msg, __msg);                         \
+         free(__msg.str);                                \
+      }                                                  \
+   } while (0)
+
 static bool
 src0_is_null(const struct gen_device_info *devinfo, const brw_inst *inst)
 {
-- 
2.7.3



More information about the mesa-dev mailing list