mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-22 01:11:42 +00:00
[vulkan] Fix missing debug utils for 64-bit windows
My wordsize check was probably for 686 builds.
This commit is contained in:
parent
69af6a6234
commit
394eae2284
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "QF/simd/types.h"
|
||||
|
||||
#if (defined(_WIN32) && !defined(_WIN64)) || (__WORDSIZE < 64)
|
||||
#if (defined(_WIN32) && !defined(_WIN64)) || (!defined(_WIN32) && __WORDSIZE < 64)
|
||||
#define QFV_duCmdBeginLabel(device, cmd, name...)
|
||||
#define QFV_duCmdEndLabel(device, cmd)
|
||||
#define QFV_duCmdInsertLabel(device, cmd, name...)
|
||||
|
|
|
@ -196,7 +196,7 @@ QFV_RunRenderPassCmd (VkCommandBuffer cmd, vulkan_ctx_t *ctx,
|
|||
}
|
||||
|
||||
dfunc->vkCmdEndRenderPass (cmd);
|
||||
QFV_CmdEndLabel (device, cmd);
|
||||
QFV_duCmdEndLabel (device, cmd);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue