summaryrefslogtreecommitdiff
path: root/source/Asura.Editor/Graphics/shaders/polygon.shader.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Asura.Editor/Graphics/shaders/polygon.shader.h')
-rw-r--r--source/Asura.Editor/Graphics/shaders/polygon.shader.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/source/Asura.Editor/Graphics/shaders/polygon.shader.h b/source/Asura.Editor/Graphics/shaders/polygon.shader.h
deleted file mode 100644
index a92e9a6..0000000
--- a/source/Asura.Editor/Graphics/shaders/polygon.shader.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef _ASURA_EDITOR_SHADER_H_
-#include "../shader.h"
-#endif
-
-//
-static AsuraEditor::Graphics::ShaderProgram polygon_shader =
-{
- R"(
-in vec2 position;
-
-uniform mat4 mvp_matrix;
-
-void main()
-{
- gl_Position = mvp_matrix * vec4(position, 0, 1);
-}
-
-)",
-
-R"(
-uniform vec4 color;
-
-void main()
-{
- gl_FragColor = color;
-}
-
-)"
-}; \ No newline at end of file