CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Common/GPU/Vulkan/VulkanAlloc.h
Views: 1401
1
#pragma once
2
3
#ifdef USE_CRT_DBG
4
#undef new
5
#endif
6
7
#include "Common/GPU/Vulkan/VulkanLoader.h"
8
9
using namespace PPSSPP_VK;
10
11
#undef VK_NO_PROTOTYPES
12
#include "ext/vma/vk_mem_alloc.h"
13
#define VK_NO_PROTOTYPES
14
15
#ifdef USE_CRT_DBG
16
#define new DBG_NEW
17
#endif
18
19