Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/Vulkan-Loader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'loader/log.h')
-rw-r--r--loader/log.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/loader/log.h b/loader/log.h
index 84bf6e199..b45a26494 100644
--- a/loader/log.h
+++ b/loader/log.h
@@ -49,3 +49,8 @@ uint32_t loader_get_debug_level(void);
// Logs a message to stderr
// May output to DebugUtils if the instance isn't null and the extension is enabled.
void loader_log(const struct loader_instance *inst, VkFlags msg_type, int32_t msg_code, const char *format, ...);
+
+// Used for the assembly code to emit an specific error message
+// This is a work around for linux 32 bit error handling not passing relocatable strings correctly
+void loader_log_asm_function_not_supported(const struct loader_instance *inst, VkFlags msg_type, int32_t msg_code,
+ const char *func_name);