Shader Flags
From GiderosMobile
Shader.FLAG_NO_DEFAULT_HEADER
Suppress the automatic addition of a default header for GLSL programs.
The default header for a desktop OpenGL is: <syntaxhighlight lang="c">
- version 120
- define highp
- define mediump
- define lowp
</source>
And for OpenGL ES 2.0: <syntaxhighlight lang="c">
- version 100
- define GLES2
</source>
Shader.FLAG_FROM_CODE
The string contains Shader code rather than the filename of the shader file.