mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
Rebase on current master; Refactor vertex upload code Fix build; Minor fixes Start preparations for merge Fix generic indexed drawing bugs Define WIN32_KHR only for windows Remove linking against vulkan-1.lib
16 lines
233 B
C++
16 lines
233 B
C++
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
#define VK_USE_PLATFORM_WIN32_KHR
|
|
#else
|
|
#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();
|
|
}
|