glslang preprocessing: Add -E option to print out preprocessed GLSL, and do the work needed to generate a preprocessed stream. From Andrew Woloszyn <awoloszyn@google.com>.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31508 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
John Kessenich 2015-06-17 02:38:44 +00:00
parent 9288f46b95
commit c555dddd53
23 changed files with 609 additions and 55 deletions

View file

@ -5226,14 +5226,6 @@ TIntermNode* TParseContext::addSwitch(TSourceLoc loc, TIntermTyped* expression,
return switchNode;
}
void TParseContext::setCurrentLine(int line)
{
currentScanner->setLine(line);
if (lineCallback) {
lineCallback(line);
}
}
void TParseContext::notifyVersion(int line, int version, const char* type_string)
{
if (versionCallback) {
@ -5241,5 +5233,18 @@ void TParseContext::notifyVersion(int line, int version, const char* type_string
}
}
void TParseContext::notifyErrorDirective(int line, const char* error_message)
{
if (errorCallback) {
errorCallback(line, error_message);
}
}
void TParseContext::notifyLineDirective(int line, bool has_source, int source)
{
if (lineCallback) {
lineCallback(line, has_source, source);
}
}
} // end namespace glslang