1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 04:23:51 +00:00

Vulkan headers must be now manually included.

This commit is contained in:
Bartosz Taudul 2021-08-19 00:00:20 +02:00
parent e380e3f80e
commit fd84b2e026
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -29,9 +29,12 @@ using TracyVkCtx = void*;
#else
#if !defined VK_NULL_HANDLE
# error "You must include Vulkan headers before including TracyVulkan.hpp"
#endif
#include <assert.h>
#include <stdlib.h>
#include <vulkan/vulkan.h>
#include "Tracy.hpp"
#include "client/TracyProfiler.hpp"
#include "client/TracyCallstack.hpp"