diff options
author | pryazha <pryadeiniv@mail.ru> | 2025-01-19 17:33:44 +0500 |
---|---|---|
committer | pryazha <pryadeiniv@mail.ru> | 2025-01-19 17:33:44 +0500 |
commit | bd49bd525f4c6c6c15c4142bf42d1dd38be6fc16 (patch) | |
tree | 9e69f473c34b53e9e57d8af1873c39698bf5c80e /uniform_buffer/shaders/cube.fs |
initial commit
Diffstat (limited to 'uniform_buffer/shaders/cube.fs')
-rw-r--r-- | uniform_buffer/shaders/cube.fs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/uniform_buffer/shaders/cube.fs b/uniform_buffer/shaders/cube.fs new file mode 100644 index 0000000..f58c5d3 --- /dev/null +++ b/uniform_buffer/shaders/cube.fs @@ -0,0 +1,13 @@ +#version 330 core + +out vec4 frag_color; + +in vec2 tex_coords; + +uniform sampler2D texture1; + +void +main(void) +{ + frag_color = texture(texture1, tex_coords); +} |