From 9855d3e577208d7c1ebc73f31489c7da9d6f7d07 Mon Sep 17 00:00:00 2001 From: josh Date: Sun, 18 Oct 2009 16:33:57 +0000 Subject: [PATCH] added mipmaps, mode, and quality parameters to TextureLoader interface git-svn-id: svn://anubis/misc/TextureLoader@185 bd8a9e45-a331-0410-811e-c64571078777 --- TextureLoader.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TextureLoader.h b/TextureLoader.h index 53ad73b..75d8879 100644 --- a/TextureLoader.h +++ b/TextureLoader.h @@ -11,7 +11,8 @@ class TextureLoader public: virtual GLuint load( const FileLoader::Path & path, - FileLoader & fileLoader) = 0; + FileLoader & fileLoader, bool mipmaps = true, + int mode = GL_DECAL, int quality = 1) = 0; }; #endif