blob: ce7e6f72b25d097377dce5ed8ba2de151205bc1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#version 450 core
layout(location = 0) out vec4 fColor;
layout(set=0, binding=0) uniform sampler2D sTexture;
layout(location = 0) in struct {
vec4 Color;
vec2 UV;
} In;
void main()
{
fColor = In.Color * texture(sTexture, In.UV.st);
}
|