imgui/examples/ios_example/imguiex/Shaders/Shader.fsh

11 lines
113 B
GLSL

//
// Shader.fsh
// imguiex
varying lowp vec4 colorVarying;
void main()
{
gl_FragColor = colorVarying;
}