1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:18:11 +00:00

WindowServer: Factor out compositing from WSWindowManager into WSCompositor.

This is far from finished and the two classes are awkwardly grabbing at each
other's innards, but here's a first step in the right direction.
This commit is contained in:
Andreas Kling 2019-05-24 19:32:46 +02:00
parent 508007f1dd
commit ad908f1395
11 changed files with 487 additions and 426 deletions

View file

@ -1,6 +1,7 @@
#include <WindowServer/WSScreen.h>
#include <WindowServer/WSWindowManager.h>
#include <WindowServer/WSEventLoop.h>
#include <WindowServer/WSCompositor.h>
#include <signal.h>
#include <stdio.h>
@ -18,6 +19,7 @@ int main(int, char**)
WSEventLoop loop;
WSScreen screen(1024, 768);
WSCompositor::the();
WSWindowManager window_manager;
dbgprintf("Entering WindowServer main loop.\n");