mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-07 01:00:06 +01:00
17 lines
252 B
C++
17 lines
252 B
C++
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
#define VK_USE_PLATFORM_WIN32_KHR
|
|
#elif !defined __APPLE__
|
|
#define VK_USE_PLATFORM_XLIB_KHR
|
|
#endif
|
|
|
|
#include <vulkan/vulkan.h>
|
|
#include <vulkan/vk_sdk_platform.h>
|
|
#include "Utilities/types.h"
|
|
|
|
namespace vk
|
|
{
|
|
void init();
|
|
}
|