forked from AuroraMiddleware/gtk
bbf6e81c1f
Remove uniform initializers, add casts to float, etc.
10 lines
145 B
GLSL
10 lines
145 B
GLSL
precision mediump float;
|
|
|
|
uniform mat4 u_projection;
|
|
uniform mat4 u_modelview;
|
|
|
|
attribute vec2 aPosition;
|
|
attribute vec2 aUv;
|
|
|
|
varying vec2 vUv;
|