summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/render/bgfx/shadermanager.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-02-24 07:46:57 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-02-24 07:46:57 +0100
commit3abcaee63ff285514e8b51a60949c97a7dfa5304 (patch)
tree63e6be46c1932606689f9bfacc920d69cfc4b51f /src/osd/modules/render/bgfx/shadermanager.h
parent0cbd8782119b140920097a2bee76f36aef014be9 (diff)
Cleanups and version bump
Diffstat (limited to 'src/osd/modules/render/bgfx/shadermanager.h')
-rw-r--r--src/osd/modules/render/bgfx/shadermanager.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/osd/modules/render/bgfx/shadermanager.h b/src/osd/modules/render/bgfx/shadermanager.h
index a3dbb425088..5cc971ca829 100644
--- a/src/osd/modules/render/bgfx/shadermanager.h
+++ b/src/osd/modules/render/bgfx/shadermanager.h
@@ -21,17 +21,17 @@
class shader_manager {
public:
- shader_manager() {}
- ~shader_manager();
+ shader_manager() {}
+ ~shader_manager();
- // Getters
- bgfx::ShaderHandle shader(std::string name);
+ // Getters
+ bgfx::ShaderHandle shader(std::string name);
private:
- bgfx::ShaderHandle load_shader(std::string name);
- static const bgfx::Memory* load_mem(std::string name);
+ bgfx::ShaderHandle load_shader(std::string name);
+ static const bgfx::Memory* load_mem(std::string name);
- std::map<std::string, bgfx::ShaderHandle> m_shaders;
+ std::map<std::string, bgfx::ShaderHandle> m_shaders;
};
-#endif // __DRAWBGFX_SHADER_MANAGER__ \ No newline at end of file
+#endif // __DRAWBGFX_SHADER_MANAGER__