17 lines
192 B
GLSL
17 lines
192 B
GLSL
#version 400 core
|
|
|
|
#ifdef GL_ES
|
|
precision mediump float;
|
|
precision mediump int;
|
|
#endif
|
|
|
|
// input:
|
|
in vec4 io_color;
|
|
|
|
// output:
|
|
out vec4 out_Color;
|
|
|
|
void main(void) {
|
|
out_Color = io_color;
|
|
}
|