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.
9 lines
144 B
9 lines
144 B
11 years ago
|
#version 330
|
||
|
|
||
|
out vec4 fragColor;
|
||
11 years ago
|
in float mx;
|
||
11 years ago
|
|
||
|
void main(){
|
||
11 years ago
|
fragColor = mix(0.7 * vec4(0.3, 0.1, 0.01, 1.0), vec4(0.0, 0.0, 0.4, 1.0), mx);
|
||
11 years ago
|
}
|