public void DdsDecoder_CanDecode_Cubemap_Without_Mips(TestTextureProvider provider)
 {
     using Texture texture = provider.GetTexture(DdsDecoder);
     provider.SaveTextures(texture);
 }
Beispiel #2
0
 public void DdsDecoder_CanDecode_Flat_TexConv_BC5_SNORM(TestTextureProvider provider)
 {
     using Texture texture = provider.GetTexture(DdsDecoder);
     provider.SaveTextures(texture);
 }
 public void DdsDecoder_CanDecode_Flat_NvDxt_Has_Mips_DXT1A(TestTextureProvider provider)
 {
     using Texture texture = provider.GetTexture(new DdsDecoder());
     provider.CompareTextures(texture);
     provider.SaveTextures(texture);
 }