It's alive!!! 🦄

This commit is contained in:
Madthijs
2021-04-13 17:18:54 +02:00
parent e6df94dac0
commit bf1dad34c3
9 changed files with 79 additions and 11 deletions

View File

@@ -11,6 +11,11 @@
"}\n"
namespace GpBinarizedShaders
{
{
//macos does not support precision in OpenGLES2
#ifdef __MACOS__
const char *g_copyQuadP_GL2 = GP_GL_SHADER_CODE_FUNCTIONS_H GP_GL_SHADER_CODE_COPYQUADP_GLSL;
#else
const char *g_copyQuadP_GL2 = GP_GL_SHADER_CODE_MEDIUM_PRECISION_PREFIX GP_GL_SHADER_CODE_FUNCTIONS_H GP_GL_SHADER_CODE_COPYQUADP_GLSL;
#endif
}