diff options
author | S. Davilla <davilla@4pi.com> | 2011-04-30 15:30:23 -0400 |
---|---|---|
committer | S. Davilla <davilla@4pi.com> | 2011-04-30 15:31:00 -0400 |
commit | 8c3dd261bebeae522ea3aca6db0b2229d3540335 (patch) | |
tree | edb88a257a51950c9b7c93afe191cf93509eba22 /tools/TexturePacker | |
parent | 451631665f3ad78eca046ee3d4fc4f10daeae612 (diff) |
removed some stray pvr compresion refs
Diffstat (limited to 'tools/TexturePacker')
-rw-r--r-- | tools/TexturePacker/XBMCTex.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tools/TexturePacker/XBMCTex.cpp b/tools/TexturePacker/XBMCTex.cpp index 3ff0f49d6e..4cf3aeea77 100644 --- a/tools/TexturePacker/XBMCTex.cpp +++ b/tools/TexturePacker/XBMCTex.cpp @@ -57,8 +57,6 @@ using namespace std; #define FLAGS_USE_LZO 1 #define FLAGS_ALLOW_YCOCG 2 #define FLAGS_USE_DXT 4 -#define FLAGS_USE_ETC 8 -#define FLAGS_USE_PVR 16 #define DIR_SEPARATOR "/" #define DIR_SEPARATOR_CHAR '/' @@ -517,8 +515,7 @@ int main(int argc, char* argv[]) bool dupecheck = false; CmdLineArgs args(argc, (const char**)argv); - // setup some defaults, lzo post compression, - // dxt unless compiled with prv, then use pvr + // setup some defaults, dxt with lzo post packing, flags = FLAGS_USE_DXT; #ifdef USE_LZO_PACKING flags |= FLAGS_USE_LZO; @@ -561,13 +558,9 @@ int main(int argc, char* argv[]) else if (!stricmp(args[i], "-use_none")) { flags &= ~FLAGS_USE_DXT; - flags &= ~FLAGS_USE_ETC; - flags &= ~FLAGS_USE_PVR; } else if (!stricmp(args[i], "-use_dxt")) { - flags &= ~FLAGS_USE_ETC; - flags &= ~FLAGS_USE_PVR; flags |= FLAGS_USE_DXT; } #ifdef USE_LZO_PACKING |