From 69733d1f2171978e3d15078d24323af39d54c518 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Mon, 3 Feb 2025 08:43:19 -0700 Subject: Scripting working so far --- test/scanTest1.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/scanTest1.c (limited to 'test') diff --git a/test/scanTest1.c b/test/scanTest1.c new file mode 100644 index 0000000..e14a620 --- /dev/null +++ b/test/scanTest1.c @@ -0,0 +1,15 @@ +#include +#include + +typedef struct Color { + unsigned char r; + unsigned char g; + unsigned char b; + unsigned char a; +} Color; + +Color lineScanner(uint16_t x, uint16_t y, uint32_t frameNumber) +{ + return (Color){.r = 0, .g = 0, .b = 255, .a = 255}; +} + -- cgit v1.2.3