chore: add MarrowSDK plugin

Signed-off-by: Jo <johannesreckers2006@gmail.com>
This commit is contained in:
Jo 2024-08-07 01:40:32 +02:00
parent 64de674738
commit 5eb961ae8a
119 changed files with 40706 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#if defined(SHADER_API_MOBILE) // Quest 2 (XR2) works better with combined texture-samplers apparently
#ifdef TEXTURE2D
#undef TEXTURE2D
#endif
#ifdef SAMPLER
#undef SAMPLER
#endif
#ifdef SAMPLE_TEXTURE2D
#undef SAMPLE_TEXTURE2D
#endif
#define TEXTURE2D(textureName) sampler2D textureName
#define SAMPLER(samplerName)
#define SAMPLE_TEXTURE2D(textureName, samplerName, coord) tex2D(textureName, coord)
#endif