mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-18 08:47:37 +00:00
9 lines
118 B
GLSL
9 lines
118 B
GLSL
#version 450
|
|
|
|
layout(binding=1) uniform sampler2D s2D;
|
|
|
|
vec4 getColor()
|
|
{
|
|
return texture(s2D, vec2(0.5));
|
|
}
|