mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
187 B
8 lines
187 B
|
13 years ago
|
uniform lowp float multiplier;
|
||
|
|
uniform lowp vec4 color;
|
||
|
|
uniform lowp vec4 additions[3];
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
gl_FragColor = color*multiplier + additions[0] + additions[1] + additions[2];
|
||
|
|
}
|