blob: 78f53de3abc15cd5b5f824a98dd754799761214d [file] [log] [blame]
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
struct Rect {
float x;
float y;
float w;
float h;
};
struct Color {
uint8_t r;
uint8_t g;
uint8_t b;
uint8_t a;
};
enum DisplayItem_Tag {
Fill,
Image,
ClearScreen,
};
typedef uint8_t DisplayItem_Tag;
struct Fill_Body {
DisplayItem_Tag tag;
struct Rect _0;
struct Color _1;
};
struct Image_Body {
DisplayItem_Tag tag;
uint32_t id;
struct Rect bounds;
};
union DisplayItem {
DisplayItem_Tag tag;
struct Fill_Body fill;
struct Image_Body image;
};
bool push_item(union DisplayItem item);