This will make code simpler because game code will never explicitly unload assets or retain runtime asset handles!
8 lines
109 B
GLSL
8 lines
109 B
GLSL
#version 450 core
|
|
|
|
out vec4 FragColor;
|
|
|
|
void main() {
|
|
FragColor = vec4(0.2f, 0.5f, 0.2f, 1.0f);
|
|
}
|