summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/render/bgfx/texturemanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/render/bgfx/texturemanager.h')
-rw-r--r--src/osd/modules/render/bgfx/texturemanager.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/osd/modules/render/bgfx/texturemanager.h b/src/osd/modules/render/bgfx/texturemanager.h
index 627e6689fa9..69608c03616 100644
--- a/src/osd/modules/render/bgfx/texturemanager.h
+++ b/src/osd/modules/render/bgfx/texturemanager.h
@@ -23,19 +23,19 @@ class bgfx_texture;
class texture_manager {
public:
- texture_manager() { }
- ~texture_manager();
+ texture_manager() { }
+ ~texture_manager();
bgfx_texture* create_texture(std::string name, bgfx::TextureFormat::Enum format, uint32_t width, uint32_t height, void* data = nullptr, uint32_t flags = BGFX_TEXTURE_U_CLAMP | BGFX_TEXTURE_V_CLAMP);
void add_texture(std::string name, bgfx_texture* texture);
- // Getters
- bgfx_texture* texture(std::string name);
+ // Getters
+ bgfx_texture* texture(std::string name);
private:
- bgfx_texture* create_texture(std::string name);
+ bgfx_texture* create_texture(std::string name);
- std::map<std::string, bgfx_texture*> m_textures;
+ std::map<std::string, bgfx_texture*> m_textures;
};
-#endif // __DRAWBGFX_TEXTURE_MANAGER__ \ No newline at end of file
+#endif // __DRAWBGFX_TEXTURE_MANAGER__