示例#1
0
 public static Bitmap ReadDXT5(byte[] data, int width, int height)
 {
     return(DXT5Reader.Read(new MemoryStream(data), width, height));
 }
示例#2
0
 public static Bitmap ReadDXT5(Stream stream, int width, int height)
 {
     return(DXT5Reader.Read(stream, width, height));
 }