Merge pull request #67879 from bruvzg/fix_no_vlk

Fix build with Vulkan disabled and no Vulkan headers installed.
This commit is contained in:
Rémi Verschelde 2022-10-31 14:29:05 +01:00
commit 9188bc7341
No known key found for this signature in database
GPG key ID: C3336907360768E1
14 changed files with 56 additions and 10 deletions

View file

@ -40,7 +40,6 @@
#include "vulkan_context_ios.h"
#import <QuartzCore/CAMetalLayer.h>
#ifdef USE_VOLK
#include <volk.h>
#else
@ -48,6 +47,9 @@
#endif
#endif
#import <Foundation/Foundation.h>
#import <QuartzCore/CAMetalLayer.h>
class DisplayServerIOS : public DisplayServer {
GDCLASS(DisplayServerIOS, DisplayServer)