testBitmap
testBitmap(disk, run);
test(Surface& s, uint32 width, uint32 height, BBitmap* testBitmap)
BRect testBitmapCrop(testBitmap->Bounds());
s.DrawBitmap(testBitmap, testBitmapCrop, testBitmapDestRect);
BBitmap* testBitmap = new BBitmap(BRect(20, 0, 150, 50), 0, B_RGB32);
uint8* bits = (uint8*)testBitmap->Bits();
uint32 bitmapWidth = testBitmap->Bounds().IntegerWidth() + 1;
uint32 bitmapHeight = testBitmap->Bounds().IntegerHeight() + 1;
uint32 bpr = testBitmap->BytesPerRow();
bits = (uint8*)testBitmap->Bits();