nngn
Loading...
Searching...
No Matches
vulkan.h
Go to the documentation of this file.
1#ifndef NNGN_GRAPHICS_VULKAN_VULKAN_H
2#define NNGN_GRAPHICS_VULKAN_VULKAN_H
3
4#include "os/platform.h"
5
6#ifdef NNGN_PLATFORM_HAS_VULKAN
7#include "handle.h"
8
9#ifdef NNGN_PLATFORM_32BIT
10#define VK_DEFINE_NON_DISPATCHABLE_HANDLE(o) \
11 struct o : nngn::Handle { using Handle::Handle; };
12#endif
13
14#include <vulkan/vulkan.h>
15#endif
16
17#endif