Ejemplo n.º 1
0
 public DDSFile(DDSHeader header, byte[] data)
 {
     Header     = header;
     BitmapData = data;
 }
Ejemplo n.º 2
0
 public DDSFile(BaseBitmap bitmap)
 {
     Header     = new DDSHeader(bitmap);
     BitmapData = bitmap.Data;
 }
Ejemplo n.º 3
0
 public DDSFile()
 {
     Header = new DDSHeader();
 }