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
41992e43
Commit
41992e43
authored
Apr 15, 2021
by
ZhiqianXia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TextureOffset not support sampler2DArrayShadow sampler until 430.
Signed-off-by:
ZhiqianXia
<
xzq0528@outlook.com
>
parent
a7f846a8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
0 deletions
+26
-0
textureoffset_sampler2darrayshadow.vert.out
Test/baseResults/textureoffset_sampler2darrayshadow.vert.out
+4
-0
textureoffset_sampler2darrayshadow.vert
Test/textureoffset_sampler2darrayshadow.vert
+11
-0
Types.h
glslang/Include/Types.h
+1
-0
ParseHelper.cpp
glslang/MachineIndependent/ParseHelper.cpp
+10
-0
No files found.
Test/baseResults/textureoffset_sampler2darrayshadow.vert.out
0 → 100644
View file @
41992e43
textureoffset_sampler2darrayshadow.vert
ERROR: 0:9: 'sampler' : TextureOffset not support the sampler2DArrayShadow : version <= 420
ERROR: 0:9: '' : compilation terminated
ERROR: 2 compilation errors. No code generated
Test/textureoffset_sampler2darrayshadow.vert
0 → 100644
View file @
41992e43
#version 300 es
precision
mediump
float
;
in
highp
vec4
dEQP_Position
;
uniform
mediump
sampler2DArrayShadow
s
;
void
main
()
{
gl_Position
=
vec4
(
textureOffset
(
s
,
vec4
(
0
),
ivec2
(
0
)));
gl_Position
=
dEQP_Position
;
}
glslang/Include/Types.h
View file @
41992e43
...
...
@@ -115,6 +115,7 @@ struct TSampler { // misnomer now; includes images, textures without sampler,
#endif
bool
is1D
()
const
{
return
dim
==
Esd1D
;
}
bool
is2D
()
const
{
return
dim
==
Esd2D
;
}
bool
isBuffer
()
const
{
return
dim
==
EsdBuffer
;
}
bool
isRect
()
const
{
return
dim
==
EsdRect
;
}
bool
isSubpass
()
const
{
return
dim
==
EsdSubpass
;
}
...
...
glslang/MachineIndependent/ParseHelper.cpp
View file @
41992e43
...
...
@@ -2191,6 +2191,16 @@ void TParseContext::builtInOpCheck(const TSourceLoc& loc, const TFunction& fnCan
"[gl_MinProgramTexelOffset, gl_MaxProgramTexelOffset]"
);
}
}
if
(
callNode
.
getOp
()
==
EOpTextureOffset
)
{
TSampler
s
=
arg0
->
getType
().
getSampler
();
if
(
s
.
is2D
()
&&
s
.
isArrayed
()
&&
s
.
isShadow
())
{
if
(
isEsProfile
())
error
(
loc
,
"TextureOffset does not support sampler2DArrayShadow : "
,
"sampler"
,
"ES Profile"
);
else
if
(
version
<=
420
)
error
(
loc
,
"TextureOffset does not support sampler2DArrayShadow : "
,
"sampler"
,
"version <= 420"
);
}
}
}
break
;
...
...
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