diff options
author | Marvin Borner | 2020-04-29 23:26:51 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-29 23:26:51 +0200 |
commit | 8b52d7698e4a9a5abaf730c7da1c4f865cb78f8e (patch) | |
tree | 873f2ae99b369f4db809fe1cd2684ae0e60c6144 /src/userspace/libgui/draw.c | |
parent | 0f54f0de1004c6e9a455c295dc76879ac37a408f (diff) |
Working framebuffer from userspace...
Well, it doesn't actually work. I disabled several security measures to
get this working and I'll try to fix these soon.
Diffstat (limited to 'src/userspace/libgui/draw.c')
-rw-r--r-- | src/userspace/libgui/draw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/userspace/libgui/draw.c b/src/userspace/libgui/draw.c index adcdec2..ee35d3c 100644 --- a/src/userspace/libgui/draw.c +++ b/src/userspace/libgui/draw.c @@ -1,4 +1,5 @@ #include <stdint.h> +#include <stdio.h> #include <gui.h> void gui_draw_rectangle(int x1, int y1, int x2, int y2, const u32 color[3]) |