Update #includes and xcode file refs
This commit is contained in:
parent
7a541d33d4
commit
7f62211d43
5 changed files with 6642 additions and 64 deletions
|
|
@ -7,15 +7,15 @@
|
||||||
*
|
*
|
||||||
* Loads the appropriate example code, as indicated by the appropriate compiler build setting below.
|
* Loads the appropriate example code, as indicated by the appropriate compiler build setting below.
|
||||||
*
|
*
|
||||||
* To select an example to run, define one (and only one) of the macros below, either by
|
* To select an example to run, define one (and only one) of the macros below, either by
|
||||||
* adding a #define XXX statement at the top of this file, or more flexibily, by adding the
|
* adding a #define XXX statement at the top of this file, or more flexibily, by adding the
|
||||||
* macro value to the Preprocessor Macros (aka GCC_PREPROCESSOR_DEFINITIONS) compiler setting.
|
* macro value to the Preprocessor Macros (aka GCC_PREPROCESSOR_DEFINITIONS) compiler setting.
|
||||||
*
|
*
|
||||||
* To add a compiler setting, select the project in the Xcode Project Navigator panel,
|
* To add a compiler setting, select the project in the Xcode Project Navigator panel,
|
||||||
* select the Build Settings panel, and add the value to the Preprocessor Macros
|
* select the Build Settings panel, and add the value to the Preprocessor Macros
|
||||||
* (aka GCC_PREPROCESSOR_DEFINITIONS) entry.
|
* (aka GCC_PREPROCESSOR_DEFINITIONS) entry.
|
||||||
*
|
*
|
||||||
* For example, to run the pipelines example, you would add the MVK_pipelines define macro
|
* For example, to run the pipelines example, you would add the MVK_pipelines define macro
|
||||||
* to the Preprocessor Macros (aka GCC_PREPROCESSOR_DEFINITIONS) entry of the Xcode project,
|
* to the Preprocessor Macros (aka GCC_PREPROCESSOR_DEFINITIONS) entry of the Xcode project,
|
||||||
* overwriting any otheor value there.
|
* overwriting any otheor value there.
|
||||||
*
|
*
|
||||||
|
|
@ -27,129 +27,130 @@
|
||||||
// In the list below, the comments indicate entries that,
|
// In the list below, the comments indicate entries that,
|
||||||
// under certain conditions, that may not run as expected.
|
// under certain conditions, that may not run as expected.
|
||||||
|
|
||||||
|
#define MVK_vulkanscene
|
||||||
|
|
||||||
// BASICS
|
// BASICS
|
||||||
|
|
||||||
#ifdef MVK_pipelines
|
#ifdef MVK_pipelines
|
||||||
# include "../pipelines/pipelines.cpp"
|
# include "../examples/pipelines/pipelines.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_texture
|
#ifdef MVK_texture
|
||||||
# include "../texture/texture.cpp"
|
# include "../examples/texture/texture.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Does not run. Metal does not support passing matrices between shader stages.
|
// Does not run. Metal does not support passing matrices between shader stages.
|
||||||
#ifdef MVK_texturecubemap
|
#ifdef MVK_texturecubemap
|
||||||
# include "../texturecubemap/texturecubemap.cpp"
|
# include "../examples/texturecubemap/texturecubemap.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Runs in Release mode. Does not run in Debug mode, as Metal validation will
|
// Runs in Release mode. Does not run in Debug mode, as Metal validation will
|
||||||
// assert that UBO buffer length is too short for UBO size declared in shader.
|
// assert that UBO buffer length is too short for UBO size declared in shader.
|
||||||
#ifdef MVK_texturearray
|
#ifdef MVK_texturearray
|
||||||
# include "../texturearray/texturearray.cpp"
|
# include "../examples/texturearray/texturearray.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_mesh
|
#ifdef MVK_mesh
|
||||||
# include "../mesh/mesh.cpp"
|
# include "../examples/mesh/mesh.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_dynamicuniformbuffer
|
#ifdef MVK_dynamicuniformbuffer
|
||||||
# include "../dynamicuniformbuffer/dynamicuniformbuffer.cpp"
|
# include "../examples/dynamicuniformbuffer/dynamicuniformbuffer.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Does not run. Metal does not support passing arrays between shader stages.
|
// Does not run. Metal does not support passing arrays between shader stages.
|
||||||
#ifdef MVK_pushconstants
|
#ifdef MVK_pushconstants
|
||||||
# include "../pushconstants/pushconstants.cpp"
|
# include "../examples/pushconstants/pushconstants.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_specializationconstants
|
#ifdef MVK_specializationconstants
|
||||||
# include "../specializationconstants/specializationconstants.cpp"
|
# include "../examples/specializationconstants/specializationconstants.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_offscreen
|
#ifdef MVK_offscreen
|
||||||
# include "../offscreen/offscreen.cpp"
|
# include "../examples/offscreen/offscreen.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_radialblur
|
#ifdef MVK_radialblur
|
||||||
# include "../radialblur/radialblur.cpp"
|
# include "../examples/radialblur/radialblur.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_textoverlay
|
#ifdef MVK_textoverlay
|
||||||
# include "../textoverlay/textoverlay.cpp"
|
# include "../examples/textoverlay/textoverlay.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_particlefire
|
#ifdef MVK_particlefire
|
||||||
# include "../particlefire/particlefire.cpp"
|
# include "../examples/particlefire/particlefire.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// ADVANCED
|
// ADVANCED
|
||||||
|
|
||||||
#ifdef MVK_multithreading
|
#ifdef MVK_multithreading
|
||||||
# include "../multithreading/multithreading.cpp"
|
# include "../examples/multithreading/multithreading.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_scenerendering
|
#ifdef MVK_scenerendering
|
||||||
# include "../scenerendering/scenerendering.cpp"
|
# include "../examples/scenerendering/scenerendering.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_instancing
|
#ifdef MVK_instancing
|
||||||
# include "../instancing/instancing.cpp"
|
# include "../examples/instancing/instancing.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_indirectdraw
|
#ifdef MVK_indirectdraw
|
||||||
# include "../indirectdraw/indirectdraw.cpp"
|
# include "../examples/indirectdraw/indirectdraw.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Does not run. Metal does not support passing matrices between shader stages.
|
// Does not run. Metal does not support passing matrices between shader stages.
|
||||||
#ifdef MVK_hdr
|
#ifdef MVK_hdr
|
||||||
# include "../hdr/hdr.cpp"
|
# include "../examples/hdr/hdr.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_occlusionquery
|
#ifdef MVK_occlusionquery
|
||||||
# include "../occlusionquery/occlusionquery.cpp"
|
# include "../examples/occlusionquery/occlusionquery.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Does not run. Sampler arrays require Metal 2.
|
// Does not run. Sampler arrays require Metal 2.
|
||||||
#ifdef MVK_texturemipmapgen
|
#ifdef MVK_texturemipmapgen
|
||||||
# include "../texturemipmapgen/texturemipmapgen.cpp"
|
# include "../examples/texturemipmapgen/texturemipmapgen.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_multisampling
|
#ifdef MVK_multisampling
|
||||||
# include "../multisampling/multisampling.cpp"
|
# include "../examples/multisampling/multisampling.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_shadowmapping
|
#ifdef MVK_shadowmapping
|
||||||
# include "../shadowmapping/shadowmapping.cpp"
|
# include "../examples/shadowmapping/shadowmapping.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_shadowmappingomni
|
#ifdef MVK_shadowmappingomni
|
||||||
# include "../shadowmappingomni/shadowmappingomni.cpp"
|
# include "../examples/shadowmappingomni/shadowmappingomni.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_skeletalanimation
|
#ifdef MVK_skeletalanimation
|
||||||
# include "../skeletalanimation/skeletalanimation.cpp"
|
# include "../examples/skeletalanimation/skeletalanimation.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_bloom
|
#ifdef MVK_bloom
|
||||||
# include "../bloom/bloom.cpp"
|
# include "../examples/bloom/bloom.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Runs in Release mode. Debug mode Metal validation will assert
|
// Runs in Release mode. Debug mode Metal validation will assert
|
||||||
// UBO buffer length is too short for UBO size declared in shader.
|
// UBO buffer length is too short for UBO size declared in shader.
|
||||||
#ifdef MVK_deferred
|
#ifdef MVK_deferred
|
||||||
# include "../deferred/deferred.cpp"
|
# include "../examples/deferred/deferred.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Does not run. Metal does not support geometry shaders.
|
// Does not run. Metal does not support geometry shaders.
|
||||||
#ifdef MVK_deferredshadows
|
#ifdef MVK_deferredshadows
|
||||||
# include "../deferredshadows/deferredshadows.cpp"
|
# include "../examples/deferredshadows/deferredshadows.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Runs in Release mode, but does not display content.
|
// Runs in Release mode, but does not display content.
|
||||||
// Metal does not support the use of specialization constants to set array lengths,
|
// Metal does not support the use of specialization constants to set array lengths,
|
||||||
#ifdef MVK_ssao
|
#ifdef MVK_ssao
|
||||||
# include "../ssao/ssao.cpp"
|
# include "../examples/ssao/ssao.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -168,22 +169,22 @@
|
||||||
// MISC
|
// MISC
|
||||||
|
|
||||||
#ifdef MVK_parallaxmapping
|
#ifdef MVK_parallaxmapping
|
||||||
# include "../parallaxmapping/parallaxmapping.cpp"
|
# include "../examples/parallaxmapping/parallaxmapping.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_sphericalenvmapping
|
#ifdef MVK_sphericalenvmapping
|
||||||
# include "../sphericalenvmapping/sphericalenvmapping.cpp"
|
# include "../examples/sphericalenvmapping/sphericalenvmapping.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_gears
|
#ifdef MVK_gears
|
||||||
# include "../gears/gears.cpp"
|
# include "../examples/gears/gears.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_distancefieldfonts
|
#ifdef MVK_distancefieldfonts
|
||||||
# include "../distancefieldfonts/distancefieldfonts.cpp"
|
# include "../examples/distancefieldfonts/distancefieldfonts.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MVK_vulkanscene
|
#ifdef MVK_vulkanscene
|
||||||
# include "../vulkanscene/vulkanscene.cpp"
|
# include "../examples/vulkanscene/vulkanscene.cpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@
|
||||||
objects = {
|
objects = {
|
||||||
|
|
||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
A94C8D601EA047B400B3CE07 /* vulkangear.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A94C8D5E1EA047B400B3CE07 /* vulkangear.cpp */; };
|
|
||||||
A94C8D611EA047B400B3CE07 /* vulkangear.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A94C8D5E1EA047B400B3CE07 /* vulkangear.cpp */; };
|
|
||||||
A951FF171E9C349000FA9144 /* VulkanDebug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A951FF071E9C349000FA9144 /* VulkanDebug.cpp */; };
|
A951FF171E9C349000FA9144 /* VulkanDebug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A951FF071E9C349000FA9144 /* VulkanDebug.cpp */; };
|
||||||
A951FF181E9C349000FA9144 /* VulkanDebug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A951FF071E9C349000FA9144 /* VulkanDebug.cpp */; };
|
A951FF181E9C349000FA9144 /* VulkanDebug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A951FF071E9C349000FA9144 /* VulkanDebug.cpp */; };
|
||||||
A951FF191E9C349000FA9144 /* vulkanexamplebase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A951FF0A1E9C349000FA9144 /* vulkanexamplebase.cpp */; };
|
A951FF191E9C349000FA9144 /* vulkanexamplebase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A951FF0A1E9C349000FA9144 /* vulkanexamplebase.cpp */; };
|
||||||
|
|
@ -39,6 +37,19 @@
|
||||||
A9B67B911C3AAEA200373FFD /* macOS.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A9B67B8B1C3AAEA200373FFD /* macOS.xcassets */; };
|
A9B67B911C3AAEA200373FFD /* macOS.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A9B67B8B1C3AAEA200373FFD /* macOS.xcassets */; };
|
||||||
A9BC9B1C1EE8421F00384233 /* MVKExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9BC9B1A1EE8421F00384233 /* MVKExample.cpp */; };
|
A9BC9B1C1EE8421F00384233 /* MVKExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9BC9B1A1EE8421F00384233 /* MVKExample.cpp */; };
|
||||||
A9BC9B1D1EE8421F00384233 /* MVKExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9BC9B1A1EE8421F00384233 /* MVKExample.cpp */; };
|
A9BC9B1D1EE8421F00384233 /* MVKExample.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9BC9B1A1EE8421F00384233 /* MVKExample.cpp */; };
|
||||||
|
C9788FD52044D78D00AB0892 /* VulkanAndroid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9788FD32044D78D00AB0892 /* VulkanAndroid.cpp */; };
|
||||||
|
C9A79EF12045045E00696219 /* stb_textedit.h in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EE82045045D00696219 /* stb_textedit.h */; };
|
||||||
|
C9A79EF22045045E00696219 /* imconfig.h in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EE92045045D00696219 /* imconfig.h */; };
|
||||||
|
C9A79EF32045045E00696219 /* imgui_demo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EEA2045045D00696219 /* imgui_demo.cpp */; };
|
||||||
|
C9A79EF42045045E00696219 /* imgui_draw.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EEB2045045D00696219 /* imgui_draw.cpp */; };
|
||||||
|
C9A79EF52045045E00696219 /* imgui_internal.h in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EEC2045045E00696219 /* imgui_internal.h */; };
|
||||||
|
C9A79EF62045045E00696219 /* stb_rect_pack.h in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EED2045045E00696219 /* stb_rect_pack.h */; };
|
||||||
|
C9A79EF72045045E00696219 /* imgui.h in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EEE2045045E00696219 /* imgui.h */; };
|
||||||
|
C9A79EF82045045E00696219 /* stb_truetype.h in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EEF2045045E00696219 /* stb_truetype.h */; };
|
||||||
|
C9A79EF92045045E00696219 /* imgui.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EF02045045E00696219 /* imgui.cpp */; };
|
||||||
|
C9A79EFC204504E000696219 /* VulkanUIOverlay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EFB204504E000696219 /* VulkanUIOverlay.cpp */; };
|
||||||
|
C9A79EFD2045051D00696219 /* VulkanUIOverlay.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EFB204504E000696219 /* VulkanUIOverlay.cpp */; };
|
||||||
|
C9A79EFE2045051D00696219 /* VulkanUIOverlay.h in Sources */ = {isa = PBXBuildFile; fileRef = C9A79EFA204504E000696219 /* VulkanUIOverlay.h */; };
|
||||||
/* End PBXBuildFile section */
|
/* End PBXBuildFile section */
|
||||||
|
|
||||||
/* Begin PBXCopyFilesBuildPhase section */
|
/* Begin PBXCopyFilesBuildPhase section */
|
||||||
|
|
@ -73,8 +84,6 @@
|
||||||
A92F37071C7E1B2B008F8BC9 /* examples.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = examples.h; sourceTree = "<group>"; };
|
A92F37071C7E1B2B008F8BC9 /* examples.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = examples.h; sourceTree = "<group>"; };
|
||||||
A94A67231B7BDE9B00F6D7C4 /* MetalGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalGL.framework; path = ../../MetalGL/macOS/MetalGL.framework; sourceTree = "<group>"; };
|
A94A67231B7BDE9B00F6D7C4 /* MetalGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalGL.framework; path = ../../MetalGL/macOS/MetalGL.framework; sourceTree = "<group>"; };
|
||||||
A94A67241B7BDE9B00F6D7C4 /* MetalGLShaderConverter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalGLShaderConverter.framework; path = ../../MetalGLShaderConverter/macOS/MetalGLShaderConverter.framework; sourceTree = "<group>"; };
|
A94A67241B7BDE9B00F6D7C4 /* MetalGLShaderConverter.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalGLShaderConverter.framework; path = ../../MetalGLShaderConverter/macOS/MetalGLShaderConverter.framework; sourceTree = "<group>"; };
|
||||||
A94C8D5E1EA047B400B3CE07 /* vulkangear.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vulkangear.cpp; path = ../gears/vulkangear.cpp; sourceTree = "<group>"; };
|
|
||||||
A94C8D5F1EA047B400B3CE07 /* vulkangear.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = vulkangear.h; path = ../gears/vulkangear.h; sourceTree = "<group>"; };
|
|
||||||
A951FF001E9C349000FA9144 /* camera.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = camera.hpp; sourceTree = "<group>"; };
|
A951FF001E9C349000FA9144 /* camera.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = camera.hpp; sourceTree = "<group>"; };
|
||||||
A951FF011E9C349000FA9144 /* frustum.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = frustum.hpp; sourceTree = "<group>"; };
|
A951FF011E9C349000FA9144 /* frustum.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = frustum.hpp; sourceTree = "<group>"; };
|
||||||
A951FF021E9C349000FA9144 /* keycodes.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = keycodes.hpp; sourceTree = "<group>"; };
|
A951FF021E9C349000FA9144 /* keycodes.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = keycodes.hpp; sourceTree = "<group>"; };
|
||||||
|
|
@ -90,7 +99,6 @@
|
||||||
A951FF0E1E9C349000FA9144 /* VulkanInitializers.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = VulkanInitializers.hpp; sourceTree = "<group>"; };
|
A951FF0E1E9C349000FA9144 /* VulkanInitializers.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = VulkanInitializers.hpp; sourceTree = "<group>"; };
|
||||||
A951FF0F1E9C349000FA9144 /* VulkanModel.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = VulkanModel.hpp; sourceTree = "<group>"; };
|
A951FF0F1E9C349000FA9144 /* VulkanModel.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = VulkanModel.hpp; sourceTree = "<group>"; };
|
||||||
A951FF101E9C349000FA9144 /* VulkanSwapChain.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = VulkanSwapChain.hpp; sourceTree = "<group>"; };
|
A951FF101E9C349000FA9144 /* VulkanSwapChain.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = VulkanSwapChain.hpp; sourceTree = "<group>"; };
|
||||||
A951FF111E9C349000FA9144 /* VulkanTextOverlay.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = VulkanTextOverlay.hpp; sourceTree = "<group>"; };
|
|
||||||
A951FF121E9C349000FA9144 /* VulkanTexture.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = VulkanTexture.hpp; sourceTree = "<group>"; };
|
A951FF121E9C349000FA9144 /* VulkanTexture.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = VulkanTexture.hpp; sourceTree = "<group>"; };
|
||||||
A951FF131E9C349000FA9144 /* VulkanTools.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = VulkanTools.cpp; sourceTree = "<group>"; };
|
A951FF131E9C349000FA9144 /* VulkanTools.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = VulkanTools.cpp; sourceTree = "<group>"; };
|
||||||
A951FF141E9C349000FA9144 /* VulkanTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VulkanTools.h; sourceTree = "<group>"; };
|
A951FF141E9C349000FA9144 /* VulkanTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VulkanTools.h; sourceTree = "<group>"; };
|
||||||
|
|
@ -133,6 +141,20 @@
|
||||||
A9BC9B1B1EE8421F00384233 /* MVKExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MVKExample.h; sourceTree = "<group>"; };
|
A9BC9B1B1EE8421F00384233 /* MVKExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MVKExample.h; sourceTree = "<group>"; };
|
||||||
A9CDEA271B6A782C00F7B008 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
|
A9CDEA271B6A782C00F7B008 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
|
||||||
A9E264761B671B0A00FE691A /* libc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libc++.dylib"; path = "Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/usr/lib/libc++.dylib"; sourceTree = DEVELOPER_DIR; };
|
A9E264761B671B0A00FE691A /* libc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libc++.dylib"; path = "Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/usr/lib/libc++.dylib"; sourceTree = DEVELOPER_DIR; };
|
||||||
|
C9788FD02044D78D00AB0892 /* benchmark.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = benchmark.hpp; sourceTree = "<group>"; };
|
||||||
|
C9788FD22044D78D00AB0892 /* VulkanAndroid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VulkanAndroid.h; sourceTree = "<group>"; };
|
||||||
|
C9788FD32044D78D00AB0892 /* VulkanAndroid.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = VulkanAndroid.cpp; sourceTree = "<group>"; };
|
||||||
|
C9A79EE82045045D00696219 /* stb_textedit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = stb_textedit.h; path = ../external/imgui/stb_textedit.h; sourceTree = "<group>"; };
|
||||||
|
C9A79EE92045045D00696219 /* imconfig.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = imconfig.h; path = ../external/imgui/imconfig.h; sourceTree = "<group>"; };
|
||||||
|
C9A79EEA2045045D00696219 /* imgui_demo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imgui_demo.cpp; path = ../external/imgui/imgui_demo.cpp; sourceTree = "<group>"; };
|
||||||
|
C9A79EEB2045045D00696219 /* imgui_draw.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imgui_draw.cpp; path = ../external/imgui/imgui_draw.cpp; sourceTree = "<group>"; };
|
||||||
|
C9A79EEC2045045E00696219 /* imgui_internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = imgui_internal.h; path = ../external/imgui/imgui_internal.h; sourceTree = "<group>"; };
|
||||||
|
C9A79EED2045045E00696219 /* stb_rect_pack.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = stb_rect_pack.h; path = ../external/imgui/stb_rect_pack.h; sourceTree = "<group>"; };
|
||||||
|
C9A79EEE2045045E00696219 /* imgui.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = imgui.h; path = ../external/imgui/imgui.h; sourceTree = "<group>"; };
|
||||||
|
C9A79EEF2045045E00696219 /* stb_truetype.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = stb_truetype.h; path = ../external/imgui/stb_truetype.h; sourceTree = "<group>"; };
|
||||||
|
C9A79EF02045045E00696219 /* imgui.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = imgui.cpp; path = ../external/imgui/imgui.cpp; sourceTree = "<group>"; };
|
||||||
|
C9A79EFA204504E000696219 /* VulkanUIOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VulkanUIOverlay.h; sourceTree = "<group>"; };
|
||||||
|
C9A79EFB204504E000696219 /* VulkanUIOverlay.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = VulkanUIOverlay.cpp; sourceTree = "<group>"; };
|
||||||
/* End PBXFileReference section */
|
/* End PBXFileReference section */
|
||||||
|
|
||||||
/* Begin PBXFrameworksBuildPhase section */
|
/* Begin PBXFrameworksBuildPhase section */
|
||||||
|
|
@ -170,11 +192,19 @@
|
||||||
29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
|
29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
|
C9A79EE92045045D00696219 /* imconfig.h */,
|
||||||
|
C9A79EEA2045045D00696219 /* imgui_demo.cpp */,
|
||||||
|
C9A79EEB2045045D00696219 /* imgui_draw.cpp */,
|
||||||
|
C9A79EEC2045045E00696219 /* imgui_internal.h */,
|
||||||
|
C9A79EF02045045E00696219 /* imgui.cpp */,
|
||||||
|
C9A79EEE2045045E00696219 /* imgui.h */,
|
||||||
|
C9A79EED2045045E00696219 /* stb_rect_pack.h */,
|
||||||
|
C9A79EE82045045D00696219 /* stb_textedit.h */,
|
||||||
|
C9A79EEF2045045E00696219 /* stb_truetype.h */,
|
||||||
A92F37071C7E1B2B008F8BC9 /* examples.h */,
|
A92F37071C7E1B2B008F8BC9 /* examples.h */,
|
||||||
A9BC9B1B1EE8421F00384233 /* MVKExample.h */,
|
A9BC9B1B1EE8421F00384233 /* MVKExample.h */,
|
||||||
A9BC9B1A1EE8421F00384233 /* MVKExample.cpp */,
|
A9BC9B1A1EE8421F00384233 /* MVKExample.cpp */,
|
||||||
A951FEFF1E9C349000FA9144 /* base */,
|
A951FEFF1E9C349000FA9144 /* base */,
|
||||||
A94C8D5D1EA047A300B3CE07 /* extras */,
|
|
||||||
A98703D81E9D382A0066959C /* data */,
|
A98703D81E9D382A0066959C /* data */,
|
||||||
A9B67B6A1C3AAE9800373FFD /* iOS */,
|
A9B67B6A1C3AAE9800373FFD /* iOS */,
|
||||||
A9B67B811C3AAEA200373FFD /* macOS */,
|
A9B67B811C3AAEA200373FFD /* macOS */,
|
||||||
|
|
@ -200,18 +230,14 @@
|
||||||
name = Frameworks;
|
name = Frameworks;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
};
|
};
|
||||||
A94C8D5D1EA047A300B3CE07 /* extras */ = {
|
|
||||||
isa = PBXGroup;
|
|
||||||
children = (
|
|
||||||
A94C8D5E1EA047B400B3CE07 /* vulkangear.cpp */,
|
|
||||||
A94C8D5F1EA047B400B3CE07 /* vulkangear.h */,
|
|
||||||
);
|
|
||||||
name = extras;
|
|
||||||
sourceTree = "<group>";
|
|
||||||
};
|
|
||||||
A951FEFF1E9C349000FA9144 /* base */ = {
|
A951FEFF1E9C349000FA9144 /* base */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
|
C9A79EFB204504E000696219 /* VulkanUIOverlay.cpp */,
|
||||||
|
C9A79EFA204504E000696219 /* VulkanUIOverlay.h */,
|
||||||
|
C9788FD02044D78D00AB0892 /* benchmark.hpp */,
|
||||||
|
C9788FD32044D78D00AB0892 /* VulkanAndroid.cpp */,
|
||||||
|
C9788FD22044D78D00AB0892 /* VulkanAndroid.h */,
|
||||||
A951FF001E9C349000FA9144 /* camera.hpp */,
|
A951FF001E9C349000FA9144 /* camera.hpp */,
|
||||||
A951FF011E9C349000FA9144 /* frustum.hpp */,
|
A951FF011E9C349000FA9144 /* frustum.hpp */,
|
||||||
A951FF021E9C349000FA9144 /* keycodes.hpp */,
|
A951FF021E9C349000FA9144 /* keycodes.hpp */,
|
||||||
|
|
@ -227,7 +253,6 @@
|
||||||
A951FF0E1E9C349000FA9144 /* VulkanInitializers.hpp */,
|
A951FF0E1E9C349000FA9144 /* VulkanInitializers.hpp */,
|
||||||
A951FF0F1E9C349000FA9144 /* VulkanModel.hpp */,
|
A951FF0F1E9C349000FA9144 /* VulkanModel.hpp */,
|
||||||
A951FF101E9C349000FA9144 /* VulkanSwapChain.hpp */,
|
A951FF101E9C349000FA9144 /* VulkanSwapChain.hpp */,
|
||||||
A951FF111E9C349000FA9144 /* VulkanTextOverlay.hpp */,
|
|
||||||
A951FF121E9C349000FA9144 /* VulkanTexture.hpp */,
|
A951FF121E9C349000FA9144 /* VulkanTexture.hpp */,
|
||||||
A951FF131E9C349000FA9144 /* VulkanTools.cpp */,
|
A951FF131E9C349000FA9144 /* VulkanTools.cpp */,
|
||||||
A951FF141E9C349000FA9144 /* VulkanTools.h */,
|
A951FF141E9C349000FA9144 /* VulkanTools.h */,
|
||||||
|
|
@ -358,7 +383,7 @@
|
||||||
29B97313FDCFA39411CA2CEA /* Project object */ = {
|
29B97313FDCFA39411CA2CEA /* Project object */ = {
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
LastUpgradeCheck = 0820;
|
LastUpgradeCheck = 0920;
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
1D6058900D05DD3D006BFB54 = {
|
1D6058900D05DD3D006BFB54 = {
|
||||||
DevelopmentTeam = VU3TCKU48B;
|
DevelopmentTeam = VU3TCKU48B;
|
||||||
|
|
@ -420,10 +445,11 @@
|
||||||
files = (
|
files = (
|
||||||
A951FF171E9C349000FA9144 /* VulkanDebug.cpp in Sources */,
|
A951FF171E9C349000FA9144 /* VulkanDebug.cpp in Sources */,
|
||||||
A9BC9B1C1EE8421F00384233 /* MVKExample.cpp in Sources */,
|
A9BC9B1C1EE8421F00384233 /* MVKExample.cpp in Sources */,
|
||||||
|
C9A79EFC204504E000696219 /* VulkanUIOverlay.cpp in Sources */,
|
||||||
A9B67B7A1C3AAE9800373FFD /* DemoViewController.mm in Sources */,
|
A9B67B7A1C3AAE9800373FFD /* DemoViewController.mm in Sources */,
|
||||||
A9B67B781C3AAE9800373FFD /* AppDelegate.m in Sources */,
|
A9B67B781C3AAE9800373FFD /* AppDelegate.m in Sources */,
|
||||||
|
C9788FD52044D78D00AB0892 /* VulkanAndroid.cpp in Sources */,
|
||||||
A951FF1B1E9C349000FA9144 /* VulkanTools.cpp in Sources */,
|
A951FF1B1E9C349000FA9144 /* VulkanTools.cpp in Sources */,
|
||||||
A94C8D601EA047B400B3CE07 /* vulkangear.cpp in Sources */,
|
|
||||||
A951FF191E9C349000FA9144 /* vulkanexamplebase.cpp in Sources */,
|
A951FF191E9C349000FA9144 /* vulkanexamplebase.cpp in Sources */,
|
||||||
A9B67B7C1C3AAE9800373FFD /* main.m in Sources */,
|
A9B67B7C1C3AAE9800373FFD /* main.m in Sources */,
|
||||||
);
|
);
|
||||||
|
|
@ -433,12 +459,22 @@
|
||||||
isa = PBXSourcesBuildPhase;
|
isa = PBXSourcesBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
|
C9A79EFD2045051D00696219 /* VulkanUIOverlay.cpp in Sources */,
|
||||||
|
C9A79EFE2045051D00696219 /* VulkanUIOverlay.h in Sources */,
|
||||||
|
C9A79EF12045045E00696219 /* stb_textedit.h in Sources */,
|
||||||
|
C9A79EF22045045E00696219 /* imconfig.h in Sources */,
|
||||||
|
C9A79EF32045045E00696219 /* imgui_demo.cpp in Sources */,
|
||||||
|
C9A79EF42045045E00696219 /* imgui_draw.cpp in Sources */,
|
||||||
|
C9A79EF52045045E00696219 /* imgui_internal.h in Sources */,
|
||||||
|
C9A79EF62045045E00696219 /* stb_rect_pack.h in Sources */,
|
||||||
|
C9A79EF72045045E00696219 /* imgui.h in Sources */,
|
||||||
|
C9A79EF82045045E00696219 /* stb_truetype.h in Sources */,
|
||||||
|
C9A79EF92045045E00696219 /* imgui.cpp in Sources */,
|
||||||
A951FF181E9C349000FA9144 /* VulkanDebug.cpp in Sources */,
|
A951FF181E9C349000FA9144 /* VulkanDebug.cpp in Sources */,
|
||||||
A9BC9B1D1EE8421F00384233 /* MVKExample.cpp in Sources */,
|
A9BC9B1D1EE8421F00384233 /* MVKExample.cpp in Sources */,
|
||||||
A9B67B8C1C3AAEA200373FFD /* AppDelegate.m in Sources */,
|
A9B67B8C1C3AAEA200373FFD /* AppDelegate.m in Sources */,
|
||||||
A9B67B8F1C3AAEA200373FFD /* main.m in Sources */,
|
A9B67B8F1C3AAEA200373FFD /* main.m in Sources */,
|
||||||
A951FF1C1E9C349000FA9144 /* VulkanTools.cpp in Sources */,
|
A951FF1C1E9C349000FA9144 /* VulkanTools.cpp in Sources */,
|
||||||
A94C8D611EA047B400B3CE07 /* vulkangear.cpp in Sources */,
|
|
||||||
A951FF1A1E9C349000FA9144 /* vulkanexamplebase.cpp in Sources */,
|
A951FF1A1E9C349000FA9144 /* vulkanexamplebase.cpp in Sources */,
|
||||||
A9B67B8D1C3AAEA200373FFD /* DemoViewController.mm in Sources */,
|
A9B67B8D1C3AAEA200373FFD /* DemoViewController.mm in Sources */,
|
||||||
);
|
);
|
||||||
|
|
@ -502,11 +538,16 @@
|
||||||
A977BCFC1B66BB010067E5BF /* Debug */ = {
|
A977BCFC1B66BB010067E5BF /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
|
ARCHS = "$(ARCHS_STANDARD)";
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
COMBINE_HIDPI_IMAGES = YES;
|
COMBINE_HIDPI_IMAGES = YES;
|
||||||
GCC_PREFIX_HEADER = "$(SRCROOT)/macOS/Prefix.pch";
|
GCC_PREFIX_HEADER = "$(SRCROOT)/macOS/Prefix.pch";
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||||
"$(inherited)",
|
"DEBUG=1",
|
||||||
|
_DEBUG,
|
||||||
|
VK_USE_PLATFORM_MACOS_MVK,
|
||||||
|
);
|
||||||
|
"GCC_PREPROCESSOR_DEFINITIONS[arch=*]" = (
|
||||||
"DEBUG=1",
|
"DEBUG=1",
|
||||||
_DEBUG,
|
_DEBUG,
|
||||||
VK_USE_PLATFORM_MACOS_MVK,
|
VK_USE_PLATFORM_MACOS_MVK,
|
||||||
|
|
@ -526,13 +567,12 @@
|
||||||
A977BCFD1B66BB010067E5BF /* Release */ = {
|
A977BCFD1B66BB010067E5BF /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
|
ARCHS = "$(ARCHS_STANDARD)";
|
||||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
COMBINE_HIDPI_IMAGES = YES;
|
COMBINE_HIDPI_IMAGES = YES;
|
||||||
GCC_PREFIX_HEADER = "$(SRCROOT)/macOS/Prefix.pch";
|
GCC_PREFIX_HEADER = "$(SRCROOT)/macOS/Prefix.pch";
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
GCC_PREPROCESSOR_DEFINITIONS = VK_USE_PLATFORM_MACOS_MVK;
|
||||||
"$(inherited)",
|
"GCC_PREPROCESSOR_DEFINITIONS[arch=*]" = VK_USE_PLATFORM_MACOS_MVK;
|
||||||
VK_USE_PLATFORM_MACOS_MVK,
|
|
||||||
);
|
|
||||||
INFOPLIST_FILE = "$(SRCROOT)/macOS/Info.plist";
|
INFOPLIST_FILE = "$(SRCROOT)/macOS/Info.plist";
|
||||||
LD_RUNPATH_SEARCH_PATHS = "@executable_path";
|
LD_RUNPATH_SEARCH_PATHS = "@executable_path";
|
||||||
LIBRARY_SEARCH_PATHS = (
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
|
@ -548,20 +588,43 @@
|
||||||
C01FCF4F08A954540054247B /* Debug */ = {
|
C01FCF4F08A954540054247B /* Debug */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
|
CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
|
||||||
CLANG_CXX_LIBRARY = "libc++";
|
CLANG_CXX_LIBRARY = "libc++";
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CLANG_ENABLE_OBJC_ARC = NO;
|
CLANG_ENABLE_OBJC_ARC = NO;
|
||||||
|
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||||
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||||
|
CLANG_WARN_COMMA = YES;
|
||||||
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||||
|
CLANG_WARN_EMPTY_BODY = YES;
|
||||||
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||||
|
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||||
|
CLANG_WARN_INT_CONVERSION = YES;
|
||||||
|
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||||
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||||
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||||
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||||
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||||
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||||
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
ENABLE_TESTABILITY = YES;
|
ENABLE_TESTABILITY = YES;
|
||||||
GCC_C_LANGUAGE_STANDARD = c99;
|
GCC_C_LANGUAGE_STANDARD = c99;
|
||||||
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
GCC_OPTIMIZATION_LEVEL = 0;
|
GCC_OPTIMIZATION_LEVEL = 0;
|
||||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = MVK_vulkanscene;
|
GCC_PREPROCESSOR_DEFINITIONS = MVK_vulkanscene;
|
||||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||||
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||||
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
|
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||||
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||||
|
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||||
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
HEADER_SEARCH_PATHS = (
|
HEADER_SEARCH_PATHS = (
|
||||||
"\"$(SRCROOT)/MoltenVK/include\"",
|
"\"$(SRCROOT)/MoltenVK/include\"",
|
||||||
"\"$(SRCROOT)/../external\"/**",
|
"\"$(SRCROOT)/../external\"/**",
|
||||||
|
|
@ -575,17 +638,40 @@
|
||||||
C01FCF5008A954540054247B /* Release */ = {
|
C01FCF5008A954540054247B /* Release */ = {
|
||||||
isa = XCBuildConfiguration;
|
isa = XCBuildConfiguration;
|
||||||
buildSettings = {
|
buildSettings = {
|
||||||
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
||||||
CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
|
CLANG_CXX_LANGUAGE_STANDARD = "c++0x";
|
||||||
CLANG_CXX_LIBRARY = "libc++";
|
CLANG_CXX_LIBRARY = "libc++";
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CLANG_ENABLE_OBJC_ARC = NO;
|
CLANG_ENABLE_OBJC_ARC = NO;
|
||||||
|
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||||
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||||
|
CLANG_WARN_COMMA = YES;
|
||||||
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||||
|
CLANG_WARN_EMPTY_BODY = YES;
|
||||||
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||||
|
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||||
|
CLANG_WARN_INT_CONVERSION = YES;
|
||||||
|
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||||
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||||
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||||
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||||
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||||
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||||
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||||
GCC_C_LANGUAGE_STANDARD = c99;
|
GCC_C_LANGUAGE_STANDARD = c99;
|
||||||
|
GCC_NO_COMMON_BLOCKS = YES;
|
||||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = MVK_vulkanscene;
|
GCC_PREPROCESSOR_DEFINITIONS = MVK_vulkanscene;
|
||||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||||
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||||
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
|
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
|
||||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||||
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||||
|
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||||
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
HEADER_SEARCH_PATHS = (
|
HEADER_SEARCH_PATHS = (
|
||||||
"\"$(SRCROOT)/MoltenVK/include\"",
|
"\"$(SRCROOT)/MoltenVK/include\"",
|
||||||
"\"$(SRCROOT)/../external\"/**",
|
"\"$(SRCROOT)/../external\"/**",
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "0820"
|
LastUpgradeVersion = "0920"
|
||||||
version = "2.0">
|
version = "2.0">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
buildConfiguration = "Debug"
|
buildConfiguration = "Debug"
|
||||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||||
|
language = ""
|
||||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||||
<Testables>
|
<Testables>
|
||||||
</Testables>
|
</Testables>
|
||||||
|
|
@ -45,6 +46,7 @@
|
||||||
buildConfiguration = "Release"
|
buildConfiguration = "Release"
|
||||||
selectedDebuggerIdentifier = ""
|
selectedDebuggerIdentifier = ""
|
||||||
selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
|
selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
|
||||||
|
language = ""
|
||||||
launchStyle = "0"
|
launchStyle = "0"
|
||||||
useCustomWorkingDirectory = "NO"
|
useCustomWorkingDirectory = "NO"
|
||||||
ignoresPersistentStateOnLaunch = "NO"
|
ignoresPersistentStateOnLaunch = "NO"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "0820"
|
LastUpgradeVersion = "0920"
|
||||||
version = "2.0">
|
version = "2.0">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
buildConfiguration = "Debug"
|
buildConfiguration = "Debug"
|
||||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||||
|
language = ""
|
||||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||||
<Testables>
|
<Testables>
|
||||||
</Testables>
|
</Testables>
|
||||||
|
|
@ -45,6 +46,7 @@
|
||||||
buildConfiguration = "Release"
|
buildConfiguration = "Release"
|
||||||
selectedDebuggerIdentifier = ""
|
selectedDebuggerIdentifier = ""
|
||||||
selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
|
selectedLauncherIdentifier = "Xcode.IDEFoundation.Launcher.PosixSpawn"
|
||||||
|
language = ""
|
||||||
launchStyle = "0"
|
launchStyle = "0"
|
||||||
useCustomWorkingDirectory = "NO"
|
useCustomWorkingDirectory = "NO"
|
||||||
ignoresPersistentStateOnLaunch = "NO"
|
ignoresPersistentStateOnLaunch = "NO"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue