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.
|
|
|
|
out vec4 first;
|
|
|
|
|
out vec3 second;
|
|
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
|
first = vec4(1.0, 0.3, 0.5, 0.1);
|
|
|
|
|
second = vec3(0.5, 0.7, 0.4);
|
|
|
|
|
}
|