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.
21 lines
352 B
21 lines
352 B
5 years ago
|
#version 450
|
||
5 years ago
|
|
||
|
// These come in from the vertex definition
|
||
5 years ago
|
layout(location = 0) in vec3 v_position;
|
||
5 years ago
|
layout(location = 1) in vec4 color;
|
||
5 years ago
|
layout(location = 2) in vec2 ti_position;
|
||
5 years ago
|
|
||
5 years ago
|
// These are made up in the shader themselves
|
||
5 years ago
|
layout(location = 0) out vec4 out_color;
|
||
5 years ago
|
|
||
|
void main() {
|
||
5 years ago
|
out_color = color;
|
||
5 years ago
|
gl_Position = vec4(v_position, 1.0);
|
||
5 years ago
|
}
|
||
5 years ago
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|