Renamed CompressedData:getType to CompressedData:getFormat

This commit is contained in:
Alex Szpakowski
2013-08-17 14:30:23 -03:00
parent ce4d895918
commit 96a668ecf3
10 changed files with 92 additions and 92 deletions
+3 -3
View File
@@ -58,13 +58,13 @@ public:
* @param[in] data The data to parse.
* @param[out] images The list of sub-images (including byte data for each)
* parsed from the file data.
* @return The type of CompressedData.
* @return The format of the CompressedData.
**/
static CompressedData::TextureType parse(filesystem::FileData *data, std::vector<CompressedData::SubImage> &images);
static CompressedData::Format parse(filesystem::FileData *data, std::vector<CompressedData::SubImage> &images);
private:
static CompressedData::TextureType convertFormat(dds::Format ddsformat);
static CompressedData::Format convertFormat(dds::Format ddsformat);
}; // ddsHandler