aboutsummaryrefslogtreecommitdiff
path: root/examples/cat.c
diff options
context:
space:
mode:
authorScott Anderson <ascent12@hotmail.com>2017-07-11 00:14:55 +1200
committerScott Anderson <ascent12@hotmail.com>2017-07-11 00:14:55 +1200
commit8189c64d7f07a756abf5a6189719f02b2f1af967 (patch)
tree26a5b75622d0a750478dee5c8a5d99f5b75846b6 /examples/cat.c
parentbe064df25ee7c03543bb86d27addaa297682fba7 (diff)
Fixed that warnings that showed up with optimisations.
Diffstat (limited to 'examples/cat.c')
-rw-r--r--examples/cat.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/examples/cat.c b/examples/cat.c
index 0a4dba9e..cc1403d8 100644
--- a/examples/cat.c
+++ b/examples/cat.c
@@ -1,11 +1,8 @@
/* GIMP RGBA C-Source image dump (cat.c) */
-const struct {
- unsigned int width;
- unsigned int height;
- unsigned int bytes_per_pixel; /* 2:RGB16, 3:RGB, 4:RGBA */
- unsigned char pixel_data[128 * 128 * 4 + 1];
-} cat_tex = {
+#include "cat.h"
+
+const struct gimp_texture cat_tex = {
128, 128, 4,
"[\227\017\377L\206\001\377M\212\002\377T\227\011\377V\231\010\377W\224\001\377[\222"
"\001\377T\212\001\377P\211\001\377M\203\001\377P\212\001\377Q\217\001\377K\210\001\377"