From b76e309166f714b0a66fb4802f02e92a82d09082 Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Thu, 9 Jan 2025 14:44:31 -0500 Subject: flatten file structure + rename --- src/static-missing-texture.hpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/static-missing-texture.hpp (limited to 'src/static-missing-texture.hpp') diff --git a/src/static-missing-texture.hpp b/src/static-missing-texture.hpp new file mode 100644 index 0000000..83f7162 --- /dev/null +++ b/src/static-missing-texture.hpp @@ -0,0 +1,24 @@ +#ifndef PKE_STATIC_MISSING_TEXTURE_HPP +#define PKE_STATIC_MISSING_TEXTURE_HPP + +/* + * 0: #373b3e (55,59,62) // dark grey (desaturated light blue) + * 1: #bec8d1 (190,200,209) // light grey (desaturated light blue) + * 2: #86cecb (134,206,203) // light cyan + * 3: #137a7f (19,122,127) // dark cyan + * 4: #e12885 (225,40,133) // magenta + */ + +const unsigned long PKE_MISSING_TEXTURE_BYTE_COUNT = 16; +const unsigned char PKE_MISSING_TEXTURE_DATA[PKE_MISSING_TEXTURE_BYTE_COUNT] = { + // top left : color 0 + 0x37, 0x3b, 0x3e, 0xff, + // top right : color 2 + 0x86, 0xce, 0xcb, 0xff, + // bottom left : color 3 + 0x13, 0x7a, 0x7f, 0xff, + // bottom right : color 4 + 0xe1, 0x28, 0x85, 0xff, +}; + +#endif /* PKE_STATIC_MISSING_TEXTURE_HPP */ -- cgit v1.2.3