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 #2891 from dneto0/hlsl-namespace
[platform/upstream/glslang.git]
/
Test
/
hlsl.amend.frag
1
float4 a;
2
float b;
3
static float4 m = a * b;
4
void f1()
5
{
6
a * b;
7
}
8
9
float3 c;
10
11
void f2()
12
{
13
a.x + b + c.x;
14
}
15
16
void f3()
17
{
18
c;
19
}
20
21
int d;
22
23
void f4()
24
{
25
d * a;
26
}
27
28
int e;