From bd49bd525f4c6c6c15c4142bf42d1dd38be6fc16 Mon Sep 17 00:00:00 2001 From: pryazha Date: Sun, 19 Jan 2025 17:33:44 +0500 Subject: initial commit --- mesh_loading_test/shaders/default.fs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 mesh_loading_test/shaders/default.fs (limited to 'mesh_loading_test/shaders/default.fs') diff --git a/mesh_loading_test/shaders/default.fs b/mesh_loading_test/shaders/default.fs new file mode 100644 index 0000000..bdd4b9a --- /dev/null +++ b/mesh_loading_test/shaders/default.fs @@ -0,0 +1,13 @@ +#version 330 core + +in vec2 tex_coords; + +out vec4 frag_color; + +uniform sampler2D texture1; + +void +main(void) +{ + frag_color = texture(texture1, tex_coords); +} -- cgit v1.2.3