Added shaders for OpenGL ES
This commit is contained in:
parent
182a4e06dc
commit
ac7c4b342b
30 changed files with 842 additions and 0 deletions
10
resources/shaders/ES/flat.fs
Normal file
10
resources/shaders/ES/flat.fs
Normal file
|
@ -0,0 +1,10 @@
|
|||
#version 100
|
||||
|
||||
precision highp float;
|
||||
|
||||
uniform vec4 uniform_color;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_FragColor = uniform_color;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue