mirror of
https://github.com/JoeyDeVries/LearnOpenGL.git
synced 2026-01-30 20:13:22 +08:00
New tutorial code
New tutorial code
This commit is contained in:
11
src/5.advanced_lighting/7.bloom/blur.vs
Normal file
11
src/5.advanced_lighting/7.bloom/blur.vs
Normal file
@@ -0,0 +1,11 @@
|
||||
#version 330 core
|
||||
layout (location = 0) in vec3 position;
|
||||
layout (location = 1) in vec2 texCoords;
|
||||
|
||||
out vec2 TexCoords;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position = vec4(position, 1.0f);
|
||||
TexCoords = texCoords;
|
||||
}
|
||||
Reference in New Issue
Block a user