System info & network
This commit is contained in:
11
shaders/postprocessing.vert
Normal file
11
shaders/postprocessing.vert
Normal file
@@ -0,0 +1,11 @@
|
||||
#version 430 core
|
||||
|
||||
layout (location = 0) in vec2 position;
|
||||
layout (location = 1) in vec2 uv;
|
||||
out vec2 frag_uv;
|
||||
|
||||
void main()
|
||||
{
|
||||
frag_uv = uv;
|
||||
gl_Position = vec4(position, 0.0, 1.0);
|
||||
}
|
||||
Reference in New Issue
Block a user