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