summaryrefslogtreecommitdiff
path: root/4.1.texture.fs
diff options
context:
space:
mode:
authorAndrew Guschin <guschin.drew@gmail.com>2022-04-02 09:13:33 +0400
committerAndrew Guschin <guschin.drew@gmail.com>2022-04-02 09:13:33 +0400
commit806a1e093eeac8b426b20717c14260c9cb896798 (patch)
tree7b6e1a01958269ce78b9716461a9fa4c05d3dc5e /4.1.texture.fs
parent15ccb946f43283bfc91d80ddf012d9ae2a0333ed (diff)
Removed CUDA files and changed build system to premakeremake
Diffstat (limited to '4.1.texture.fs')
-rw-r--r--4.1.texture.fs14
1 files changed, 0 insertions, 14 deletions
diff --git a/4.1.texture.fs b/4.1.texture.fs
deleted file mode 100644
index 46ac15f..0000000
--- a/4.1.texture.fs
+++ /dev/null
@@ -1,14 +0,0 @@
-#version 330 core
-out vec4 FragColor;
-
-in vec3 ourColor;
-in vec2 TexCoord;
-
-// texture sampler
-uniform sampler2D texture1;
-
-void main()
-{
- FragColor = texture(texture1, TexCoord);
-}
-