13 lines
177 B
GLSL
13 lines
177 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
precision highp int;
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
layout(location = 0) in vec4 vIn;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vIn;
|
|
}
|
|
|