mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
Consistant with other vulkan header patterns. This header in particular is to configure our Vulkan API usage.
12 lines
No EOL
321 B
C++
12 lines
No EOL
321 B
C++
#pragma once
|
|
|
|
#define VK_NO_PROTOTYPES
|
|
#include <vulkan/vulkan.h>
|
|
|
|
#define VULKAN_HPP_DISPATCH_LOADER_DYNAMIC 1
|
|
#define VULKAN_HPP_NO_EXCEPTIONS
|
|
// Disable asserts on result-codes
|
|
#define VULKAN_HPP_ASSERT_ON_RESULT
|
|
#include <vulkan/vulkan.hpp>
|
|
#include <vulkan/vulkan_format_traits.hpp>
|
|
#include <vulkan/vulkan_hash.hpp> |