From d5486a5af100fb37fac08b60d862ac14943853ce Mon Sep 17 00:00:00 2001 From: Peter Fors Date: Sat, 29 Mar 2025 20:11:56 +0100 Subject: add base code for windowing and opengl crt-shader. --- base/ugg.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 base/ugg.h (limited to 'base/ugg.h') 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[]; +}; + -- cgit v1.2.3