don't enable cube map compression by default

This commit is contained in:
Stephen Birarda 2017-05-18 17:47:10 -07:00
parent 2ba700d062
commit 0621ddfd9f

View file

@ -30,11 +30,10 @@ Oven::Oven(int argc, char* argv[]) :
// init the settings interface so we can save and load settings
Setting::init();
// enable compression in image library
// enable compression in image library, except for cube maps
image::setColorTexturesCompressionEnabled(true);
image::setGrayscaleTexturesCompressionEnabled(true);
image::setNormalTexturesCompressionEnabled(true);
image::setCubeTexturesCompressionEnabled(true);
// check if we were passed any command line arguments that would tell us just to run without the GUI