Removing B-ECS from BarinkEngine, Moving not really graphics related definitions outside the graphics folder, Moving Graphical primitives into a graphics primitives subfolder
This commit is contained in:
11
BarinkEngine/src/Shaders/fragment.shader
Normal file
11
BarinkEngine/src/Shaders/fragment.shader
Normal file
@ -0,0 +1,11 @@
|
||||
#version 440 core
|
||||
|
||||
out vec4 FragColor;
|
||||
uniform vec3 Color;
|
||||
in vec2 TexCoord;
|
||||
uniform sampler2D Texture;
|
||||
|
||||
|
||||
void main(){
|
||||
FragColor = vec4(1.0f, 0.0f, 0.0f , 1.0f); // mix ( texture(Texture, TexCoord), vec4(Color, 1.0f), 1.0f);
|
||||
}
|
Reference in New Issue
Block a user