A game about forced loneliness, made by TACStudios
1// Wait for a fix from Trunk #error not supported yet 2/* 3#define REQUIRE_DEFINED(X_) \ 4 #ifndef X_ \ 5 #error X_ must be defined (in) the platform include \ 6 #endif X_ \ 7 8REQUIRE_DEFINED(UNITY_UV_STARTS_AT_TOP) 9REQUIRE_DEFINED(UNITY_REVERSED_Z) 10REQUIRE_DEFINED(UNITY_NEAR_CLIP_VALUE) 11REQUIRE_DEFINED(FACE) 12 13REQUIRE_DEFINED(CBUFFER_START) 14REQUIRE_DEFINED(CBUFFER_END) 15 16REQUIRE_DEFINED(INITIALIZE_OUTPUT) 17 18*/ 19 20 21// Default values for things that have not been defined in the platform headers 22 23// default flow control attributes 24#ifndef UNITY_BRANCH 25# define UNITY_BRANCH 26#endif 27#ifndef UNITY_FLATTEN 28# define UNITY_FLATTEN 29#endif 30#ifndef UNITY_UNROLL 31# define UNITY_UNROLL 32#endif 33#ifndef UNITY_UNROLLX 34# define UNITY_UNROLLX(_x) 35#endif 36#ifndef UNITY_LOOP 37# define UNITY_LOOP 38#endif