1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-27 23:45:07 +00:00
serenity/Kernel/WindowComposer.cpp
Andreas Kling 659c54e32b Switch into 1024x768x32bpp VESA LFB mode at boot.
This is going to be pretty cool once I can hook up the Widgets/ code to it.
2019-01-09 02:29:11 +01:00

12 lines
204 B
C++

#include "WindowComposer.h"
#include "Process.h"
void WindowComposer_main()
{
auto info = current->get_display_info();
dbgprintf("Entering WindowComposer main loop.\n");
for (;;) {
}
}