Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
glslang
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
glslang
Commits
ba56e23e
Commit
ba56e23e
authored
Oct 01, 2016
by
John Kessenich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo in error message.
parent
f571d0c0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
300.frag.out
Test/baseResults/300.frag.out
+1
-1
revision.h
glslang/Include/revision.h
+1
-1
ParseHelper.cpp
glslang/MachineIndependent/ParseHelper.cpp
+1
-1
No files found.
Test/baseResults/300.frag.out
View file @
ba56e23e
...
...
@@ -28,7 +28,7 @@ ERROR: 0:102: 'arrays of arrays' : not supported for this version or the enabled
ERROR: 0:103: 'arrays of arrays' : not supported for this version or the enabled extensions
ERROR: 0:100: 'arrays of arrays' : not supported for this version or the enabled extensions
ERROR: 0:100: 'array-of-array of block' : not supported with this profile: es
ERROR: 0:111: 'variable indexing fragment shader ouput array' : not supported with this profile: es
ERROR: 0:111: 'variable indexing fragment shader ou
t
put array' : not supported with this profile: es
ERROR: 0:119: '==' : can't use with samplers or structs containing samplers
ERROR: 0:120: '!=' : can't use with samplers or structs containing samplers
ERROR: 0:121: '==' : can't use with samplers or structs containing samplers
...
...
glslang/Include/revision.h
View file @
ba56e23e
...
...
@@ -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 "Overload400-PrecQual.154
1
"
#define GLSLANG_REVISION "Overload400-PrecQual.154
2
"
#define GLSLANG_DATE "01-Oct-2016"
glslang/MachineIndependent/ParseHelper.cpp
View file @
ba56e23e
...
...
@@ -558,7 +558,7 @@ TIntermTyped* TParseContext::handleBracketDereference(const TSourceLoc& loc, TIn
// input/output blocks either don't exist or can be variable indexed
}
}
else
if
(
language
==
EShLangFragment
&&
base
->
getQualifier
().
isPipeOutput
())
requireProfile
(
base
->
getLoc
(),
~
EEsProfile
,
"variable indexing fragment shader ouput array"
);
requireProfile
(
base
->
getLoc
(),
~
EEsProfile
,
"variable indexing fragment shader ou
t
put array"
);
else
if
(
base
->
getBasicType
()
==
EbtSampler
&&
version
>=
130
)
{
const
char
*
explanation
=
"variable indexing sampler array"
;
requireProfile
(
base
->
getLoc
(),
EEsProfile
|
ECoreProfile
|
ECompatibilityProfile
,
explanation
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment