summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2021-10-31 16:47:03 +0000
committerPhil Jones <philj56@gmail.com>2021-10-31 16:54:20 +0000
commit74adfe0cbca300e73774c6e0aa9b3c53a5e5b57b (patch)
tree88d0efbdd9755849eb22ee3478595df5c8e69a34 /src/util.h
parentc691b8e48c572e2d5f1c7c16c8f42babd7d706d5 (diff)
Add HiDPI support and lots of cleanup.
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/util.h b/src/util.h
deleted file mode 100644
index 02e2c6a..0000000
--- a/src/util.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef UTIL_H
-#define UTIL_H
-
-#include <stdbool.h>
-#include <stdint.h>
-
-struct image {
- uint8_t *buffer;
- uint32_t width;
- uint32_t height;
- bool swizzle;
- bool redraw;
-};
-
-struct color {
- float r;
- float g;
- float b;
- float a;
-};
-
-#endif /* UTIL_H */