From b8ca0766a2006e4a11451cf447ac02372c996c12 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 23 Oct 2023 14:27:22 +0200 Subject: WindowServer: Make the wallpaper be stored in a shared memory region. This allow other processes to easily modify the wallpaper by opening the memory region and poking into memory. --- userland/windowserver/draw.h | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/windowserver/draw.h') diff --git a/userland/windowserver/draw.h b/userland/windowserver/draw.h index bf9ff4f..cebe0fa 100644 --- a/userland/windowserver/draw.h +++ b/userland/windowserver/draw.h @@ -4,6 +4,7 @@ #define WIDTH 0x500 #define HEIGHT 0x320 +#define BPP 4 void draw_wallpaper(DISPLAY *disp); void draw_window(DISPLAY *disp, const WINDOW *w); -- cgit v1.2.3