diff options
author | Anton Kling <anton@kling.gg> | 2023-10-24 01:10:35 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-10-24 01:10:35 +0200 |
commit | 0f208f4f03d0df85aacafa35deba11f19e96b5dd (patch) | |
tree | 475cf2e00ac4dfc166174c8a0731846b7946bada /userland/windowserver/draw.h | |
parent | 1fb51985714f0b16e89d038439ffb2ecaed1187d (diff) |
WindowServer: Don't hardcode the display resolution
Diffstat (limited to 'userland/windowserver/draw.h')
-rw-r--r-- | userland/windowserver/draw.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/userland/windowserver/draw.h b/userland/windowserver/draw.h index cebe0fa..f7ade64 100644 --- a/userland/windowserver/draw.h +++ b/userland/windowserver/draw.h @@ -2,10 +2,6 @@ #define DRAW_H #include "ws.h" -#define WIDTH 0x500 -#define HEIGHT 0x320 -#define BPP 4 - void draw_wallpaper(DISPLAY *disp); void draw_window(DISPLAY *disp, const WINDOW *w); void update_full_display(DISPLAY *disp, int mouse_x, int mouse_y); |