mirror of
https://github.com/griffi-gh/hUI.git
synced 2024-11-09 17:38:42 -06:00
13 lines
177 B
GLSL
13 lines
177 B
GLSL
|
#version 300 es
|
||
|
|
||
|
precision highp float;
|
||
|
precision highp sampler2D;
|
||
|
|
||
|
out vec4 out_color;
|
||
|
in vec4 vtx_color;
|
||
|
in vec2 vtx_uv;
|
||
|
|
||
|
void main() {
|
||
|
out_color = vtx_color;
|
||
|
}
|