mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
Fix: version 100 does not accept the 'es' profile
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@20316 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
parent
62b51a2b7e
commit
674014bfc4
@ -743,8 +743,8 @@ void SetProfile(EProfile profile)
|
||||
TParseContext& parseContext = *((TParseContext *)cpp->pC);
|
||||
|
||||
if (profile == ENoProfile) {
|
||||
if (parseContext.version == 100 || parseContext.version == 300) {
|
||||
CPPErrorToInfoLog("versions 100 and 300 require specifying the es profile");
|
||||
if (parseContext.version == 300) {
|
||||
CPPErrorToInfoLog("version 300 requires specifying the 'es' profile");
|
||||
parseContext.profile = ENoProfile;
|
||||
} else if (parseContext.version >= FirstProfileVersion)
|
||||
parseContext.profile = ECoreProfile;
|
||||
@ -752,13 +752,19 @@ void SetProfile(EProfile profile)
|
||||
parseContext.profile = ENoProfile;
|
||||
} else {
|
||||
// a profile was provided...
|
||||
if (parseContext.version == 100 || parseContext.version == 300) {
|
||||
if (parseContext.version < 150) {
|
||||
CPPErrorToInfoLog("versions before 150 do not allow a profile token");
|
||||
if (parseContext.version == 100)
|
||||
parseContext.profile = EEsProfile;
|
||||
else
|
||||
parseContext.profile = ENoProfile;
|
||||
} else if (parseContext.version == 300) {
|
||||
if (profile != EEsProfile)
|
||||
CPPErrorToInfoLog("versions 100 and 300 only support the es profile");
|
||||
CPPErrorToInfoLog("only version 300 supports the es profile");
|
||||
parseContext.profile = EEsProfile;
|
||||
} else {
|
||||
if (profile == EEsProfile) {
|
||||
CPPErrorToInfoLog("only versions 100 and 300 support the es profile");
|
||||
CPPErrorToInfoLog("only version 300 supports the es profile");
|
||||
if (parseContext.version >= FirstProfileVersion)
|
||||
parseContext.profile = ECoreProfile;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user