mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
11 lines
196 B
Text
11 lines
196 B
Text
|
uniform mat4 mvp;
|
||
|
uniform mat4 unusedMatrix;
|
||
|
uniform float unusedFloat;
|
||
|
attribute vec4 myColor;
|
||
|
attribute vec3 myUnused;
|
||
|
|
||
|
void main() {
|
||
|
gl_Position = mvp * gl_Vertex;
|
||
|
gl_FrontColor = myColor;
|
||
|
}
|