Start day 26 Advanced Data and Advanced GLSL.
This commit is contained in:
parent
9310215aa3
commit
a16311c0eb
127 changed files with 215205 additions and 0 deletions
11
26-advanced-data-glsl/shaders/21-screen.vert.glsl
Normal file
11
26-advanced-data-glsl/shaders/21-screen.vert.glsl
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#version 330 core
|
||||
layout (location = 0) in vec2 aPos;
|
||||
layout (location = 1) in vec2 aTexCoords;
|
||||
|
||||
out vec2 TexCoords;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position = vec4(aPos.x, aPos.y, 0.0, 1.0);
|
||||
TexCoords = aTexCoords;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue