1
0
Fork 0
This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
MrDev023-Cpp-Engine/res/shaders/test.frag

11 lines
188 B
GLSL
Raw Normal View History

2016-10-08 18:35:02 +02:00
#version 330
2016-09-29 21:31:44 +02:00
2016-10-08 18:35:02 +02:00
in vec4 color;
in vec3 normal;
in vec2 out_coord_texture;
uniform sampler2D myTexture;
void main(void){
2016-10-08 18:35:02 +02:00
gl_FragColor = color * texture2D(myTexture,out_coord_texture);
}