diff options
author | 2016-02-24 07:46:57 +0100 | |
---|---|---|
committer | 2016-02-24 07:46:57 +0100 | |
commit | 3abcaee63ff285514e8b51a60949c97a7dfa5304 (patch) | |
tree | 63e6be46c1932606689f9bfacc920d69cfc4b51f /src/osd/modules/render/bgfx/shadermanager.h | |
parent | 0cbd8782119b140920097a2bee76f36aef014be9 (diff) |
Cleanups and version bump
Diffstat (limited to 'src/osd/modules/render/bgfx/shadermanager.h')
-rw-r--r-- | src/osd/modules/render/bgfx/shadermanager.h | 16 |
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__ |