blob: cebe0fa059b1eb7d023f16ff3c7c77c40382e4a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef DRAW_H
#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);
void update_active_window(DISPLAY *disp);
void draw_mouse(DISPLAY *disp, int mouse_x, int mouse_y);
#endif
|