added mipmaps, mode, and quality parameters to TextureLoader interface

git-svn-id: svn://anubis/misc/TextureLoader@185 bd8a9e45-a331-0410-811e-c64571078777
This commit is contained in:
josh 2009-10-18 16:33:57 +00:00
parent 032607b812
commit 9855d3e577

View File

@ -11,7 +11,8 @@ class TextureLoader
public: public:
virtual GLuint load( virtual GLuint load(
const FileLoader::Path & path, const FileLoader::Path & path,
FileLoader & fileLoader) = 0; FileLoader & fileLoader, bool mipmaps = true,
int mode = GL_DECAL, int quality = 1) = 0;
}; };
#endif #endif