diff options
author | jmarshallnz <jmarshallnz@svn> | 2009-10-03 10:21:23 +0000 |
---|---|---|
committer | jmarshallnz <jmarshallnz@svn> | 2009-10-03 10:21:23 +0000 |
commit | 2c635ef73b1b69698617fd941191fb6a013ab5ba (patch) | |
tree | e23d3d74a78857d83789e1b354821500968707e0 /guilib/XBTFReader.h | |
parent | 6ae760859c4b57444be47d943b65882b1e0c6980 (diff) |
added: Support for ARGB, DXT1 and DXT3 in textures in .xbt files.
changed: Cleanup of texture interfaces.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23355 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'guilib/XBTFReader.h')
-rw-r--r-- | guilib/XBTFReader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guilib/XBTFReader.h b/guilib/XBTFReader.h index a24d44084d..27264d3333 100644 --- a/guilib/XBTFReader.h +++ b/guilib/XBTFReader.h @@ -35,8 +35,8 @@ public: bool Open(const CStdString& fileName); void Close(); time_t GetLastModificationTimestamp(); - bool Exists(const CStdString& name, int formatMask); - CXBTFFile* Find(const CStdString& name, int formatMask); + bool Exists(const CStdString& name); + CXBTFFile* Find(const CStdString& name); bool Load(const CXBTFFrame& frame, unsigned char* buffer); std::vector<CXBTFFile>& GetFiles(); @@ -44,7 +44,7 @@ private: CXBTF m_xbtf; CStdString m_fileName; FILE* m_file; - std::map<std::pair<CStdString, unsigned int>, CXBTFFile> m_filesMap; + std::map<CStdString, CXBTFFile> m_filesMap; }; #endif |