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
621c0e3d
Commit
621c0e3d
authored
Mar 06, 2017
by
John Kessenich
Committed by
GitHub
Mar 06, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #755 from steve-lunarg/sb-orderfix
HLSL: Fix ordering defect if global SB decl after fn param
parents
33f85b6e
40efe5ce
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
10 deletions
+6
-10
hlsl.structbuffer.fn.frag.out
Test/baseResults/hlsl.structbuffer.fn.frag.out
+0
-0
hlsl.structbuffer.fn.frag
Test/hlsl.structbuffer.fn.frag
+5
-4
hlslGrammar.cpp
hlsl/hlslGrammar.cpp
+1
-0
hlslParseHelper.cpp
hlsl/hlslParseHelper.cpp
+0
-6
No files found.
Test/baseResults/hlsl.structbuffer.fn.frag.out
View file @
621c0e3d
This diff is collapsed.
Click to expand it.
Test/hlsl.structbuffer.fn.frag
View file @
621c0e3d
StructuredBuffer
<
uint4
>
sbuf
:
register
(
t10
);
RWStructuredBuffer
<
uint4
>
sbuf2
;
// Not shared, because of type difference.
StructuredBuffer
<
uint3
>
sbuf3
:
register
(
t12
);
uint4
get
(
in
StructuredBuffer
<
uint4
>
sb
,
uint
bufferOffset
)
{
...
...
@@ -15,6 +11,11 @@ void set(in RWStructuredBuffer<uint4> sb, uint bufferOffset, uint4 data)
sb
[
bufferOffset
]
=
data
;
}
RWStructuredBuffer
<
uint4
>
sbuf2
;
// Not shared, because of type difference.
StructuredBuffer
<
uint3
>
sbuf3
:
register
(
t12
);
float4
main
(
uint
pos
:
FOO
)
:
SV_Target0
{
set
(
sbuf2
,
2
,
get
(
sbuf
,
3
));
...
...
hlsl/hlslGrammar.cpp
View file @
621c0e3d
...
...
@@ -1874,6 +1874,7 @@ bool HlslGrammar::acceptStructBufferType(TType& type)
TArraySizes
unsizedArray
;
unsizedArray
.
addInnerSize
(
UnsizedArraySize
);
templateType
->
newArraySizes
(
unsizedArray
);
templateType
->
getQualifier
().
storage
=
storage
;
// field name is canonical for all structbuffers
templateType
->
setFieldName
(
"@data"
);
...
...
hlsl/hlslParseHelper.cpp
View file @
621c0e3d
...
...
@@ -5223,10 +5223,6 @@ void HlslParseContext::shareStructBufferType(TType& type)
return
compareQualifiers
(
lhs
,
rhs
)
&&
lhs
==
rhs
;
};
// TString typeName;
// type.appendMangledName(typeName);
// type.setTypeName(typeName);
// This is an exhaustive O(N) search, but real world shaders have
// only a small number of these.
for
(
int
idx
=
0
;
idx
<
int
(
structBufferTypes
.
size
());
++
idx
)
{
...
...
@@ -5241,8 +5237,6 @@ void HlslParseContext::shareStructBufferType(TType& type)
TType
*
typeCopy
=
new
TType
;
typeCopy
->
shallowCopy
(
type
);
structBufferTypes
.
push_back
(
typeCopy
);
// structBuffTypes.push_back(type.getWritableStruct());
}
void
HlslParseContext
::
paramFix
(
TType
&
type
)
...
...
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