Add GL_EXT_frag_depth.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@24003 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
John Kessenich 2013-11-11 20:51:50 +00:00
parent 06a37c3964
commit 99296369d3
6 changed files with 50 additions and 7 deletions

View file

@ -151,6 +151,7 @@ void TParseContext::initializeExtensionBehavior()
{
extensionBehavior[GL_OES_texture_3D] = EBhDisable;
extensionBehavior[GL_OES_standard_derivatives] = EBhDisable;
extensionBehavior[GL_EXT_frag_depth] = EBhDisable;
extensionBehavior[GL_ARB_texture_rectangle] = EBhDisable;
extensionBehavior[GL_3DL_array_objects] = EBhDisable;
@ -167,7 +168,8 @@ const char* TParseContext::getPreamble()
return
"#define GL_ES 1\n"
"#define GL_OES_texture_3D 1\n"
"#define GL_OES_standard_derivatives 1\n";
"#define GL_OES_standard_derivatives 1\n"
"#define GL_EXT_frag_depth 1\n";
} else {
return
"#define GL_FRAGMENT_PRECISION_HIGH 1\n"