Skip to content

Commit

Permalink
GL: do not enable GL_ARB_shading_language_420pack extension on Mac as…
Browse files Browse the repository at this point in the history
… it is not supported
  • Loading branch information
TheMostDiligent committed Apr 19, 2024
1 parent 45aea03 commit f95bce1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Graphics/ShaderTools/src/GLSLUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,7 @@ String BuildGLSLSourceString(const ShaderCreateInfo& ShaderCI,
}
else if (TargetCompiler == TargetGLSLCompiler::driver)
{
GLSLSource.append("#version 410 core\n"
"#extension GL_ARB_shading_language_420pack : enable\n");
GLSLSource.append("#version 410 core\n");
}
else
{
Expand Down

0 comments on commit f95bce1

Please sign in to comment.