aboutsummaryrefslogtreecommitdiff
path: root/src/graphics/draw.h
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2021-12-21 21:55:56 -0800
committerChristian Cunningham <cc@localhost>2021-12-21 21:55:56 -0800
commitce90c0aa44b1f07ddd59159ae60e6f63357d85b8 (patch)
treeabff13d15a2b2248068b5d576b31f6b882488d56 /src/graphics/draw.h
parent55f9f2e10b9e768cbd99ca195f430d2252dcb918 (diff)
Fixed Graphics
Diffstat (limited to 'src/graphics/draw.h')
-rw-r--r--src/graphics/draw.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/graphics/draw.h b/src/graphics/draw.h
deleted file mode 100644
index 4bc9816..0000000
--- a/src/graphics/draw.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef GRAPHICS_DRAW_H
-#define GRAPHICS_DRAW_H
-
-enum {
- SWIDTH = 640,
- SHEIGHT = 480,
- BPP = 16
-};
-
-extern unsigned long vram_base;
-extern void clear_screen();
-extern void draw_pix(unsigned long, unsigned long, unsigned short);
-
-void draw_box(unsigned short, unsigned short, unsigned short, unsigned short, unsigned short);
-
-#endif