Moved more files around, working on VN engine
This commit is contained in:
10
archive/assets archive/shared/shaders/textured.frag
Normal file
10
archive/assets archive/shared/shaders/textured.frag
Normal file
@ -0,0 +1,10 @@
|
||||
#version 330 core
|
||||
|
||||
in vec2 TexCoord;
|
||||
uniform sampler2D u_Text;
|
||||
out vec4 FragColor;
|
||||
|
||||
void main() {
|
||||
vec4 color = texture(u_Text, TexCoord);
|
||||
FragColor = color;
|
||||
}
|
Reference in New Issue
Block a user