Beispiel #1
0
 public ubitmaprgb_32(usize2_32 size)
 {
     this.size = size;
     pixels    = new color_rgb[size.width * size.height];
 }
Beispiel #2
0
 public ubitmaprgb_32(usize2_32 size, color_rgb[] pixels)
 {
     this.size   = size;
     this.pixels = pixels;
 }