aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/texture.hpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/base/texture.hpp (renamed from src/base/texture_plain.hpp)10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/base/texture_plain.hpp b/src/base/texture.hpp
index 3fc76072..016bb307 100644
--- a/src/base/texture_plain.hpp
+++ b/src/base/texture.hpp
@@ -24,8 +24,8 @@
* $Id$
*/
-#ifndef TEXTURE_PLAIN_HPP
-#define TEXTURE_PLAIN_HPP
+#ifndef TEXTURE_HPP
+#define TEXTURE_HPP
#include <boost/filesystem.hpp>
#include <GL/gl.h>
@@ -35,7 +35,7 @@
namespace usdx
{
- class TexturePlain
+ class Texture
{
private:
GLuint tex_num;
@@ -54,8 +54,8 @@ namespace usdx
///for dynamic skins
public:
- TexturePlain();
- virtual ~TexturePlain();
+ Texture();
+ virtual ~Texture();
};
};