KP3Dii/Data/resources/shaders/.kp3d/r2d_f.glsl

15 lines
194 B
Text
Raw Normal View History

2024-07-22 07:48:42 +00:00
#version 330 core
in vec4 v_color;
in vec2 v_texcoord;
out vec4 v_output;
uniform sampler2D u_texture;
void main()
{
vec4 tex = texture(u_texture, v_texcoord);
v_output = tex * v_color;
}