mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 13:48:25 +00:00
Update coding style in WSWindowManager.
This commit is contained in:
@@ -15,13 +15,6 @@ WSFrameBuffer& WSFrameBuffer::the()
|
||||
return *s_the;
|
||||
}
|
||||
|
||||
WSFrameBuffer::WSFrameBuffer(unsigned width, unsigned height)
|
||||
: WSScreen(width, height)
|
||||
{
|
||||
ASSERT(!s_the);
|
||||
s_the = this;
|
||||
}
|
||||
|
||||
WSFrameBuffer::WSFrameBuffer(RGBA32* data, unsigned width, unsigned height)
|
||||
: WSScreen(width, height)
|
||||
, m_data(data)
|
||||
@@ -35,10 +28,6 @@ WSFrameBuffer::~WSFrameBuffer()
|
||||
{
|
||||
}
|
||||
|
||||
void WSFrameBuffer::show()
|
||||
{
|
||||
}
|
||||
|
||||
RGBA32* WSFrameBuffer::scanline(int y)
|
||||
{
|
||||
unsigned pitch = sizeof(RGBA32) * width();
|
||||
|
||||
Reference in New Issue
Block a user