openal and fontft memleak fixes from keltar
[fegdk.git] / core / code / video / f_texture.h
blobdc0462da60d8db6142b451f4fe32a0538e458850
1 /*
2 fegdk: FE Game Development Kit
3 Copyright (C) 2001-2008 Alexey "waker" Yakovenko
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with this library; if not, write to the Free
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 Alexey Yakovenko
20 waker@users.sourceforge.net
23 #ifndef __F_TEXTURE_H
24 #define __F_TEXTURE_H
26 #include "f_types.h"
27 #include "f_basetexture.h"
28 #include "f_parser.h"
30 namespace fe
33 class textureData;
35 class texture : public baseTexture
37 friend class textureData;
39 private:
42 smartPtr <textureData> mpTextureData;
43 ulong mFlags;
45 protected:
47 texture (void); // FIXME: this ctor is somehow being required by smartPtr
48 void createFromFile (void);
49 ~texture (void);
51 public:
53 // name syntax:
54 // "name"
55 // "empty:w:h:name"
56 texture (const char *name);
57 texture (charParser &parser, const char *name);
59 virtual void bind (int stage );
60 ulong getWidth (void) const;
61 ulong getHeight (void) const;
63 smartPtr <textureData> getTextureData (void) const;
65 lockedRect lockRect (uint lvl, rect *rc, bool readOnly);
66 void unlockRect (uint lvl);
68 virtual int_ptr getObject (void) const;
72 typedef smartPtr <texture> texturePtr;
76 #endif // __F_TEXTURE_H