10 lines
179 B
GLSL
10 lines
179 B
GLSL
attribute highp vec4 posAttr;
|
|
attribute lowp vec4 colAttr;
|
|
varying lowp vec4 col;
|
|
uniform highp mat4 matrix;
|
|
|
|
void main() {
|
|
col = colAttr;
|
|
gl_Position = matrix * posAttr;
|
|
}
|