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
3d1b7096
Commit
3d1b7096
authored
Aug 23, 2017
by
John Kessenich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HLSL: Fix #1027.
parent
778806a6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
hlsl.function.frag
Test/hlsl.function.frag
+1
-1
hlslParseHelper.cpp
hlsl/hlslParseHelper.cpp
+1
-0
No files found.
Test/hlsl.function.frag
View file @
3d1b7096
...
...
@@ -8,7 +8,7 @@ uint fun2(float4 col)
return
7
;
}
float4
fun4
(
uint
id1
,
uint
id2
)
float4
fun4
(
uint
id1
,
u
niform
u
int
id2
)
{
return
id1
*
id2
;
}
...
...
hlsl/hlslParseHelper.cpp
View file @
3d1b7096
...
...
@@ -6354,6 +6354,7 @@ void HlslParseContext::paramFix(TType& type)
type
.
getQualifier
().
storage
=
EvqConstReadOnly
;
break
;
case
EvqGlobal
:
case
EvqUniform
:
case
EvqTemporary
:
type
.
getQualifier
().
storage
=
EvqIn
;
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