Same 16x16 Bitmap, different Filter.
Code: Select all
this.Pixel.R = X;
this.Pixel.G = Y;
this.Pixel.B = 1-Y;
if(X == 0 || X == 1-1/16){
this.Pixel = 1;
}
if(Y == 0 || Y == 1-1/16){
this.Pixel = 1;
}
K
Code: Select all
this.Pixel.R = X;
this.Pixel.G = Y;
this.Pixel.B = 1-Y;
if(X == 0 || X == 1-1/16){
this.Pixel = 1;
}
if(Y == 0 || Y == 1-1/16){
this.Pixel = 1;
}