1
0
mirror of https://github.com/Drezil/imgui.git synced 2024-12-22 07:36:35 +00:00
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;
}