Test iOS and macOS support under MoltenVK.

This commit is contained in:
Bill Hollings 2017-06-05 17:35:30 -04:00
parent 338d38ea9a
commit 8b30d7b5fd
2 changed files with 8 additions and 7 deletions

View file

@ -26,8 +26,9 @@
*/ */
// In the list below, the comments indicate entries that do not currently run correctly, // In the list below, the comments indicate entries that do not currently run correctly on
// and the comment indicates the problem that is encountered when run. Fixes are on the way. // one or both of iOS and macOS, and the comment indicates the problem that is encountered.
// Fixes are on the way.
// BASICS // BASICS
@ -36,7 +37,7 @@
# include "../pipelines/pipelines.cpp" # include "../pipelines/pipelines.cpp"
#endif #endif
#ifdef MVK_texture #ifdef MVK_texture // Bad access
# include "../texture/texture.cpp" # include "../texture/texture.cpp"
#endif #endif
@ -52,7 +53,7 @@
# include "../mesh/mesh.cpp" # include "../mesh/mesh.cpp"
#endif #endif
#ifdef MVK_dynamicuniformbuffer // Bad sampler state #ifdef MVK_dynamicuniformbuffer // Bad access
# include "../dynamicuniformbuffer/dynamicuniformbuffer.cpp" # include "../dynamicuniformbuffer/dynamicuniformbuffer.cpp"
#endif #endif
@ -64,7 +65,7 @@
# include "../specializationconstants/specializationconstants.cpp" # include "../specializationconstants/specializationconstants.cpp"
#endif #endif
#ifdef MVK_offscreen // Bad access on iOS #ifdef MVK_offscreen // Bad access on iOS after 'd' key is pressed
# include "../offscreen/offscreen.cpp" # include "../offscreen/offscreen.cpp"
#endif #endif

View file

@ -534,7 +534,7 @@
GCC_C_LANGUAGE_STANDARD = c99; GCC_C_LANGUAGE_STANDARD = c99;
GCC_OPTIMIZATION_LEVEL = 0; GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREPROCESSOR_DEFINITIONS = MVK_skeletalanimation; GCC_PREPROCESSOR_DEFINITIONS = MVK_vulkanscene;
GCC_SYMBOLS_PRIVATE_EXTERN = NO; GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES;
@ -558,7 +558,7 @@
ENABLE_BITCODE = NO; ENABLE_BITCODE = NO;
GCC_C_LANGUAGE_STANDARD = c99; GCC_C_LANGUAGE_STANDARD = c99;
GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREPROCESSOR_DEFINITIONS = MVK_skeletalanimation; GCC_PREPROCESSOR_DEFINITIONS = MVK_vulkanscene;
GCC_SYMBOLS_PRIVATE_EXTERN = NO; GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO; GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
GCC_WARN_ABOUT_RETURN_TYPE = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES;