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
|
/* GIMP RGBA C-Source image dump (navigate_closed_folder.c) */
static const struct {
guint width;
guint height;
guint bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
guint8 pixel_data[12 * 16 * 4 + 1];
} navigate_closed_folder = {
12, 16, 4,
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
"\000\000\000u\000\000\000+\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\000\000\000\000\020\020\020\244\006\006\006\367\003\003\003P\000\000\000\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021\021\021\245ggg\377"
"\026\026\026\366\015\015\015\211\000\000\000\002\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\000\000\021\021\021\245\232\232\232\377\353\353\353\377;;;\364\017"
"\017\017\301\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021\021"
"\021\245\232\232\232\377\377\377\377\377\373\373\373\377sss\370\014\014\014\346"
"\000\000\000,\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021\021\021\245\232\232\232"
"\377\377\377\377\377\377\377\377\377\377\377\377\377\242\242\242\376\014\014"
"\014\365\003\003\003T\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021\021\021\245\232\232\232\377"
"\377\377\377\377\377\377\377\377\377\377\377\377\314\314\314\377\023\023\023"
"\366\010\010\010\201\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021\021\021\245\232\232\232"
"\377\377\377\377\377\377\377\377\377\250\250\250\376\014\014\014\365\003\003\003S"
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021\021\021\245\232\232\232\377\376"
"\376\376\377|||\371\014\014\014\347\000\000\000,\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\021\021\021\245\215\215\215\377GGG\364\015\015\015\313\000\000\000\026"
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021\021\021\245\004\004"
"\004\376\014\014\014\230\000\000\000\004\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\000\000\003\003\003\225\005\005\005c\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\014\000\000\000\000\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"
"\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000",
};
|