mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-04-01 02:06:11 +00:00
Oops, finish WindowServer rename.
This commit is contained in:
22
Kernel/WindowServer.cpp
Normal file
22
Kernel/WindowServer.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
#include "Process.h"
|
||||
#include <Widgets/Font.h>
|
||||
#include <Widgets/FrameBuffer.h>
|
||||
#include <Widgets/WindowManager.h>
|
||||
#include <Widgets/EventLoop.h>
|
||||
#include <Widgets/Window.h>
|
||||
|
||||
void WindowServer_main()
|
||||
{
|
||||
auto info = current->get_display_info();
|
||||
|
||||
dbgprintf("Screen is %ux%ux%ubpp\n", info.width, info.height, info.bpp);
|
||||
|
||||
FrameBuffer framebuffer((dword*)info.framebuffer, info.width, info.height);
|
||||
|
||||
WindowManager::the();
|
||||
|
||||
dbgprintf("Entering WindowServer main loop.\n");
|
||||
EventLoop::main().exec();
|
||||
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
Reference in New Issue
Block a user