aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/graphics/je_texture.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/graphics/je_texture.cpp')
-rw-r--r--src/libjin/graphics/je_texture.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/libjin/graphics/je_texture.cpp b/src/libjin/graphics/je_texture.cpp
index 8d9bb0a..152e5d0 100644
--- a/src/libjin/graphics/je_texture.cpp
+++ b/src/libjin/graphics/je_texture.cpp
@@ -12,8 +12,8 @@ using namespace JinEngine::Math;
namespace JinEngine
{
- namespace Graphics
- {
+ namespace Graphics
+ {
/*
Texture* Texture::createTexture(const char* path)
{
@@ -23,11 +23,11 @@ namespace JinEngine
return texture;
}
- Texture* Texture::createTexture(Bitmap* bitmap)
- {
- Texture* tex = new Texture(bitmap);
- return tex;
- }
+ Texture* Texture::createTexture(Bitmap* bitmap)
+ {
+ Texture* tex = new Texture(bitmap);
+ return tex;
+ }
*/
Texture::Texture()
: Graphic()
@@ -41,16 +41,16 @@ namespace JinEngine
delete bitmap;
}
- Texture::Texture(const Bitmap* bitmap)
- : Graphic(bitmap)
- {
- }
+ Texture::Texture(const Bitmap* bitmap)
+ : Graphic(bitmap)
+ {
+ }
- Texture::~Texture()
- {
- }
+ Texture::~Texture()
+ {
+ }
- } // namespace Graphics
+ } // namespace Graphics
} // namespace JinEngine
#endif // defined(jin_graphics) \ No newline at end of file