First Commit
This commit is contained in:
16
externals/glslang/Test/enhanced.3.frag
vendored
Normal file
16
externals/glslang/Test/enhanced.3.frag
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
#version 450 core
|
||||
|
||||
layout (location = 0) out vec4 FragColor;
|
||||
|
||||
layout (location = 0) in VS_OUT
|
||||
{
|
||||
vec2 foobar;
|
||||
} fs_in;
|
||||
|
||||
layout (binding = 1) uniform sampler2D t0;
|
||||
|
||||
void main()
|
||||
{
|
||||
FragColor = texture(t0, fs_in.foobar);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user