diff options
author | Chad Versace <[email protected]> | 2017-01-25 12:12:16 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-01-25 19:17:45 -0800 |
commit | c5d99c9983f2fcc70757df224ff8dd8fee9a5215 (patch) | |
tree | 2633f49611435d362cfab99ed278c64303522afa /src/intel | |
parent | fd43bee0ea3742abc8871d146d645db13f7d678f (diff) |
anv: Define macro anv_debug()
This is a printf-like macro that prints a debug message to stderr when
built with DEBUG. If no DEBUG, then do nothing.
Reviewed-by: Jason Ekstranad <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/anv_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 75f2bde66a8..de50dff1a84 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -199,9 +199,11 @@ VkResult __vk_errorf(VkResult error, const char *file, int line, const char *for #ifdef DEBUG #define vk_error(error) __vk_errorf(error, __FILE__, __LINE__, NULL); #define vk_errorf(error, format, ...) __vk_errorf(error, __FILE__, __LINE__, format, ## __VA_ARGS__); +#define anv_debug(format, ...) fprintf(stderr, "debug: " format, ##__VA_ARGS__) #else #define vk_error(error) error #define vk_errorf(error, format, ...) error +#define anv_debug(format, ...) #endif void __anv_finishme(const char *file, int line, const char *format, ...) |