-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapple_drawing.c
39 lines (37 loc) · 3.53 KB
/
apple_drawing.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* GIMP RGB C-Source image dump (apple_drawing.c) */
#define APPLE_WIDTH (20)
#define APPLE_HEIGHT (20)
#define APPLE_BYTES_PER_PIXEL (2) /* 2:RGB16, 3:RGB, 4:RGBA */
#define APPLE_PIXEL_DATA ((unsigned char*) APPLE_pixel_data)
static const unsigned char APPLE_pixel_data[20 * 20 * 2 + 1] =
("\000\000\000\000\000\000\000\000\000\000\000\000\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\370\000\370\000\370\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\000\000\000\000\000\000\000\000\000\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\370\000\370\000\370\000\370\000\370\000\000\000\000\000\000\000\370\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\000\000\000\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\000\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\000\000\370\000\370\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\000\000\000\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\000\000\000\000\000\000\370\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\000\000\000\000\000\000\000\000\000\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000"
"\370\000\370\000\370\000\370\000\370\000\370\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\370\000\370"
"\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\370\000\370\000\370\000\370\000\370\000\370\000\370\000\370"
"\000\000\000\000\000\000\000\000\000\000\000\000");