sent from android
This commit is contained in:
8
shaders/triangle_untextured.frag
Normal file
8
shaders/triangle_untextured.frag
Normal file
@@ -0,0 +1,8 @@
|
||||
#version 330 core
|
||||
|
||||
out vec4 FragColor;
|
||||
in vec3 color; // Input color from the vertex shader
|
||||
|
||||
void main() {
|
||||
FragColor = vec4(color, 1.0); // Apply the color
|
||||
}
|
||||
Reference in New Issue
Block a user