So currently I\'m creating a 1000x1000 bitmap and it\'s spending about .3 seconds simply calling the Bitmap.SetPixel() function.
I\'m actually only drawing probably
I can recommend FastBitmap:
FastBitmap fb = new FastBitmap(b); fb.LockImage(); ... fb.SetPixel(x, y, Color.Red); ... fb.UnlockImage();