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.entry.rename.frag
1
2
struct PS_OUTPUT
3
{
4
float4 Color : SV_Target0;
5
};
6
7
void not_the_entry_point() { }
8
int also_not_the_entry_point;
9
10
PS_OUTPUT main()
11
{
12
PS_OUTPUT psout;
13
psout.Color = 0;
14
return psout;
15
}