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