First Commit
This commit is contained in:
16
externals/glslang/Test/spv.unit1.frag
vendored
Normal file
16
externals/glslang/Test/spv.unit1.frag
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
#version 460
|
||||
|
||||
float f;
|
||||
float a1;
|
||||
|
||||
float foo();
|
||||
|
||||
out float cout;
|
||||
|
||||
void main()
|
||||
{
|
||||
f = 10;
|
||||
float g = foo();
|
||||
f += g;
|
||||
f += gl_FragCoord.y;
|
||||
}
|
||||
Reference in New Issue
Block a user