stuff
This commit is contained in:
parent
96f1792c09
commit
4fc1e20fdd
30 changed files with 1045 additions and 39 deletions
10
.local/sioyek/shaders/simple.vertex
Normal file
10
.local/sioyek/shaders/simple.vertex
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
out vec2 screen_pos;
|
||||
out vec2 uvs;
|
||||
layout (location=0) in vec2 vertex_pos;
|
||||
layout (location=1) in vec2 vertex_uvs;
|
||||
|
||||
void main(){
|
||||
screen_pos = vertex_pos;
|
||||
uvs = vertex_uvs;
|
||||
gl_Position = vec4(vertex_pos, 0.0, 1.0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue