summaryrefslogtreecommitdiff
path: root/include/texture.h
diff options
context:
space:
mode:
authorpixel <pixel>2006-10-28 16:50:46 +0000
committerpixel <pixel>2006-10-28 16:50:46 +0000
commit45e08ccde95c84932557701235558e72cdc95f1b (patch)
tree0c318c6f589002a8d486c107519b4cf4fd4be1cb /include/texture.h
parenta13cd83fb51c2e744b8b80dc26696190ec9bff6d (diff)
Fixing caps in class names.
Diffstat (limited to 'include/texture.h')
-rw-r--r--include/texture.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/texture.h b/include/texture.h
index 228f016..e49e48f 100644
--- a/include/texture.h
+++ b/include/texture.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: texture.h,v 1.11 2006-02-02 17:29:04 pixel Exp $ */
+/* $Id: texture.h,v 1.12 2006-10-28 16:50:46 pixel Exp $ */
#ifndef __TEXTURE_H__
#define __TEXTURE_H__
@@ -29,13 +29,13 @@
#include <generic.h>
namespace mogltk {
- class texture : public Base {
+ class Texture : public Base {
public:
- texture(int, int, bool = false) throw (GeneralException);
- texture(Handle *, bool = false) throw (GeneralException);
- texture(int, int, int, int);
- texture(SDL_Surface *, bool = false) throw (GeneralException);
- virtual ~texture();
+ Texture(int, int, bool = false) throw (GeneralException);
+ Texture(Handle *, bool = false) throw (GeneralException);
+ Texture(int, int, int, int);
+ Texture(SDL_Surface *, bool = false) throw (GeneralException);
+ virtual ~Texture();
SDL_Surface * GetSurface();
Uint32 * GetPixels();
SDL_PixelFormat * GetFormat();
@@ -56,10 +56,10 @@ namespace mogltk {
bool texture_allocated;
SDL_Surface * surface;
bool planar, tainted, taintable;
- static texture * header;
- static texture * footer;
- texture * next, * prev;
- static texture * active;
+ static Texture * header;
+ static Texture * footer;
+ Texture * next, * prev;
+ static Texture * active;
void recTaint(void);
};
};