summaryrefslogtreecommitdiff
path: root/base/ugg.h
diff options
context:
space:
mode:
authorPeter Fors <peter.fors@mindkiller.com>2025-03-29 20:11:56 +0100
committerPeter Fors <peter.fors@mindkiller.com>2025-03-29 20:11:56 +0100
commitd5486a5af100fb37fac08b60d862ac14943853ce (patch)
treee2206f620745ba49c94f0f29d180587e03bc9fda /base/ugg.h
parentee4f15400998ca704c6ad8fc537f0d924930fabd (diff)
add base code for windowing and opengl crt-shader.
Diffstat (limited to 'base/ugg.h')
-rw-r--r--base/ugg.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/base/ugg.h b/base/ugg.h
new file mode 100644
index 0000000..ac51678
--- /dev/null
+++ b/base/ugg.h
@@ -0,0 +1,10 @@
+#pragma once
+
+// Uncomplicated Generic Graphics
+struct ugg {
+ uint32_t width;
+ uint32_t height;
+ uint32_t palette[256];
+ uint8_t data[];
+};
+