mirror of
https://github.com/open-goal/jak-project
synced 2026-07-10 07:07:04 -04:00
10 lines
103 B
GLSL
10 lines
103 B
GLSL
#version 330 core
|
|
|
|
out vec4 color;
|
|
|
|
in vec4 fragment_color;
|
|
|
|
void main() {
|
|
color = fragment_color;
|
|
}
|