mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-04-13 05:43:18 -07:00
vkd3d: Enable Vulkan debug extensions independently of debug log level.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
committed by
Alexandre Julliard
parent
df72746729
commit
e7b94e0337
@@ -22,6 +22,7 @@
|
||||
#include "vkd3d_common.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef VKD3D_NO_TRACE_MESSAGES
|
||||
#define TRACE(args...) do { } while (0)
|
||||
@@ -90,4 +91,13 @@ static inline const char *debugstr_guid(const GUID *guid)
|
||||
|
||||
unsigned int vkd3d_env_var_as_uint(const char *name, unsigned int default_value) DECLSPEC_HIDDEN;
|
||||
|
||||
struct vkd3d_debug_option
|
||||
{
|
||||
const char *name;
|
||||
uint64_t flag;
|
||||
};
|
||||
|
||||
uint64_t vkd3d_parse_debug_options(const char *string,
|
||||
const struct vkd3d_debug_option *options, unsigned int option_count) DECLSPEC_HIDDEN;
|
||||
|
||||
#endif /* __VKD3D_DEBUG_H */
|
||||
|
Reference in New Issue
Block a user