Remove test pattern that is no longer needed.

This commit is contained in:
Michael Lotz 2012-12-02 22:36:25 +01:00
parent 67d9fcc3ba
commit 2dcc1cfeb9

View File

@ -161,15 +161,6 @@ ArchFramebufferBCM2708::SetVideoMode(int width, int height, int depth)
fBase = (addr_t)mmu_map_physical_memory(fPhysicalBase, fSize,
kDefaultPageFlags);
uint8* line = (uint8*)fBase;
for (uint32 y = 0; y < sFramebufferConfig.height; y++) {
volatile uint16* pixel = (volatile uint16*)line;
for (uint32 x = 0; x < sFramebufferConfig.width; x++)
*(pixel++) = y % 2 == 0 ? 0xffff : 0x0000;
line += sFramebufferConfig.bytes_per_row;
}
fCurrentWidth = width;
fCurrentHeight = height;
fCurrentDepth = depth;