aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/texture_transparent.hpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-04-04 13:40:12 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:47 +0100
commit1feb5dd5ceb44e2647abc52a13d05f62bf4c903c (patch)
tree1dad0fc227a27de388112968bb14e0da5bce4946 /src/base/texture_transparent.hpp
parentc3f80439a841120d7e17108da11cc343d5168b8c (diff)
downloadusdx-1feb5dd5ceb44e2647abc52a13d05f62bf4c903c.tar.gz
usdx-1feb5dd5ceb44e2647abc52a13d05f62bf4c903c.tar.xz
usdx-1feb5dd5ceb44e2647abc52a13d05f62bf4c903c.zip
renamed texture_plain to texture
Diffstat (limited to 'src/base/texture_transparent.hpp')
-rw-r--r--src/base/texture_transparent.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/texture_transparent.hpp b/src/base/texture_transparent.hpp
index 9cb8bba4..dae69d44 100644
--- a/src/base/texture_transparent.hpp
+++ b/src/base/texture_transparent.hpp
@@ -27,16 +27,16 @@
#ifndef TEXTURE_TRANSPARENT_HPP
#define TEXTURE_TRANSPARENT_HPP
-#include "texture_plain.hpp"
+#include "texture.hpp"
namespace usdx
{
/**
* This class represents a texture like TexturePlain but with the
* ability to set a alpha value to paint this texture transparent.
- * @see: TexturePlain
+ * @see: Texture
*/
- class TextureTransparent : public TexturePlain
+ class TextureTransparent : public Texture
{
private:
float alpha;