projects
/
platform
/
upstream
/
glslang.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #2892 from greg-lunarg/mb
[platform/upstream/glslang.git]
/
Test
/
hlsl.semicolons.frag
1
2
void MyFunc() { }
3
4
;;;
5
;
6
; ; ; // HLSL allows stray global scope semicolons.
7
8
void MyFunc2() {;;;};
9
10
struct PS_OUTPUT { float4 color : SV_Target0; };;;;;
11
12
;PS_OUTPUT main()
13
{
14
PS_OUTPUT ps_output;;;
15
;
16
ps_output.color = 1.0;
17
return ps_output;
18
};
19