mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 17:37:00 +00:00
11 lines
113 B
Plaintext
11 lines
113 B
Plaintext
|
//
|
||
|
// Shader.fsh
|
||
|
// imguiex
|
||
|
|
||
|
varying lowp vec4 colorVarying;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = colorVarying;
|
||
|
}
|