Now faster. And with more Jenny Holzer.

This commit is contained in:
jaseg 2014-03-04 01:07:22 +01:00
parent bd5b1b6267
commit 7878aa1d45
10 changed files with 528 additions and 64 deletions

View file

@ -6,12 +6,13 @@
/* For easier memsetting we use an inverted alpha channel, i.e. 0 ≘ fully opaque; 255 ≘ fully transparent */
typedef struct {
uint8_t r;
uint8_t g;
uint8_t b;
uint8_t a;
uint8_t r, g, b, a;
} color_t;
typedef struct {
uint8_t r, g, b;
} rgb_t;
typedef struct {
color_t *data;
size_t w;