Front-End: Non-ES trigger for processing precision qualifiers.
Initially non-functional: Have an independent test for whether to obey precision qualifiers other than whether the profile is es.
This commit is contained in:
parent
219b025d7e
commit
4d535640e4
6 changed files with 56 additions and 44 deletions
|
|
@ -1075,7 +1075,7 @@ public:
|
|||
qualifier.clear();
|
||||
qualifier.storage = q;
|
||||
qualifier.precision = p;
|
||||
assert(p >= 0 && p <= EpqHigh);
|
||||
assert(p >= EpqNone && p <= EpqHigh);
|
||||
}
|
||||
// for turning a TPublicType into a TType, using a shallow copy
|
||||
explicit TType(const TPublicType& p) :
|
||||
|
|
|
|||
|
|
@ -2,5 +2,5 @@
|
|||
// For the version, it uses the latest git tag followed by the number of commits.
|
||||
// For the date, it uses the current date (when then script is run).
|
||||
|
||||
#define GLSLANG_REVISION "SPIRV99.1426"
|
||||
#define GLSLANG_DATE "23-Aug-2016"
|
||||
#define GLSLANG_REVISION "SPIRV99.1384"
|
||||
#define GLSLANG_DATE "03-Aug-2016"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue