vk/util: Add a anv_finishme function/macro
authorJason Ekstrand <jason.ekstrand@intel.com>
Tue, 12 May 2015 20:43:36 +0000 (13:43 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Tue, 12 May 2015 20:43:36 +0000 (13:43 -0700)
src/vulkan/private.h
src/vulkan/util.c

index 778e2b0..0ee0dab 100644 (file)
@@ -85,6 +85,14 @@ vk_error(VkResult error)
    return error;
 }
 
+void __anv_finishme(const char *file, int line, const char *format, ...);
+
+/**
+ * Print a FINISHME message, including its source location.
+ */
+#define anv_finishme(format, ...) \
+   __anv_finishme(__FILE__, __LINE__, format, ##__VA_ARGS__);
+
 /**
  * A dynamically growable, circular buffer.  Elements are added at head and
  * removed from tail. head and tail are free-running uint32_t indices and we
index 847d13b..92f9e40 100644 (file)
 
 #include "private.h"
 
+void
+__anv_finishme(const char *file, int line, const char *format, ...)
+{
+   va_list ap;
+
+   va_start(ap, format);
+   fprintf(stderr, "%s:%d: FINISHME: ", file, line);
+   vfprintf(stderr, format, ap);
+   fprintf(stderr, "\n");
+   va_end(ap);
+}
+
 int
 anv_vector_init(struct anv_vector *vector, uint32_t element_size, uint32_t size)
 {