Example #1
0
        public void StartLibraryTest(string file)
        {
            TexImage image = new TexImage();

            var dxtLib = new DxtTexLib();

            dxtLib.Execute(image, new LoadingRequest(Module.PathToInputImages + file, false));
            image.CurrentLibrary = dxtLib;
            dxtLib.EndLibrary(image);

            TexLibraryTest.StartLibraryTest(image, library);

            image.Dispose();
        }
Example #2
0
 public DxtTexLibTest()
 {
     library = new DxtTexLib();
     Assert.True(library.SupportBGRAOrder());
 }
Example #3
0
 public void TestSetUp()
 {
     library = new DxtTexLib();
     Assert.IsTrue(library.SupportBGRAOrder());
 }