summaryrefslogtreecommitdiffstats
path: root/game/client/program.hh
diff options
context:
space:
mode:
Diffstat (limited to 'game/client/program.hh')
-rw-r--r--game/client/program.hh34
1 files changed, 0 insertions, 34 deletions
diff --git a/game/client/program.hh b/game/client/program.hh
deleted file mode 100644
index bf35417..0000000
--- a/game/client/program.hh
+++ /dev/null
@@ -1,34 +0,0 @@
-#pragma once
-
-struct GL_VariedMacro final {
- std::string name;
- unsigned long line;
- unsigned int value;
-};
-
-struct GL_Uniform final {
- std::string name;
- GLint location;
-};
-
-class GL_Program final {
-public:
- bool setup(std::string_view vpath, std::string_view fpath);
- void destroy(void);
- bool update(void);
-
- std::size_t add_uniform(std::string_view name);
- void set_variant_vert(unsigned int variant, unsigned int value);
- void set_variant_frag(unsigned int variant, unsigned int value);
-
-public:
- std::string vert_path;
- std::string frag_path;
- std::vector<std::string> vert_source;
- std::vector<std::string> frag_source;
- std::vector<GL_VariedMacro> vert_variants;
- std::vector<GL_VariedMacro> frag_variants;
- std::vector<GL_Uniform> uniforms;
- bool needs_update;
- GLuint handle;
-};