Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
glslang
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
public-release-test-restored
platform
external
deqp-deps
glslang
Commits
d319fb4e
Commit
d319fb4e
authored
7 years ago
by
John Kessenich
Browse files
Options
Downloads
Patches
Plain Diff
HLSL: Test change: Geometry shaders can't return values from main.
parent
b6be80f4
No related branches found
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Test/baseResults/hlsl.semantic.geom.out
+214
-210
214 additions, 210 deletions
Test/baseResults/hlsl.semantic.geom.out
Test/hlsl.semantic.geom
+3
-2
3 additions, 2 deletions
Test/hlsl.semantic.geom
with
217 additions
and
212 deletions
Test/baseResults/hlsl.semantic.geom.out
+
214
−
210
View file @
d319fb4e
This diff is collapsed.
Click to expand it.
Test/hlsl.semantic.geom
+
3
−
2
View file @
d319fb4e
struct
S
{
float
clip0
:
SV_Position
;
float
clip0
:
SV_ClipDistance0
;
float
cull0
:
SV_CullDistance0
;
uint
vpai
:
SV_ViewportArrayIndex
;
...
...
@@ -7,9 +8,9 @@ struct S {
};
[
maxvertexcount
(
4
)]
S
main
(
triangle
in
uint
VertexID
[
3
]
:
VertexID
,
void
main
(
triangle
in
uint
VertexID
[
3
]
:
VertexID
,
inout
LineStream
<
S
>
OutputStream
)
{
S
s
;
return
s
;
OutputStream
.
Append
(
s
)
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment