summary refs log tree commit diff
path: root/src/Shader/Uniform.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Shader/Uniform.hpp')
-rw-r--r--src/Shader/Uniform.hpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/Shader/Uniform.hpp b/src/Shader/Uniform.hpp
deleted file mode 100644
index 58cdc28..0000000
--- a/src/Shader/Uniform.hpp
+++ /dev/null
@@ -1,23 +0,0 @@
-#pragma once
-
-#include <cstdint>
-#include <string>
-#include <utility>
-#include "../Math/Math.hpp"
-
-namespace MC {
-
-class Uniform {
-public:
-    Uniform(std::string name, uint32_t index)
-        : m_name(std::move(name)), m_index(index) {};
-
-    void set(Matrix<4, 4> value) const;
-    void set(Vector<3> value) const;
-
-private:
-    std::string m_name;
-    uint32_t m_index;
-};
-
-}