Копия проекта с репозитория 05

This commit is contained in:
2022-03-14 18:09:25 +03:00
parent 9f41f3d168
commit 158f8c76df
15 changed files with 1228 additions and 11 deletions

9
shaders/shader.frag Normal file
View File

@@ -0,0 +1,9 @@
#version 450
layout(location = 0) in vec3 fragColor;
layout(location = 0) out vec4 outColor;
void main() {
outColor = vec4(fragColor, 1.0);
}

11
shaders/shader.vert Normal file
View File

@@ -0,0 +1,11 @@
#version 450
layout(location = 0) in vec2 inPosition;
layout(location = 1) in vec3 inColor;
layout(location = 0) out vec3 fragColor;
void main() {
gl_Position = vec4(inPosition, 0.0, 1.0);
fragColor = inColor;
}