aboutsummaryrefslogtreecommitdiff
path: root/examples/cat.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cat.h')
-rw-r--r--examples/cat.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/cat.h b/examples/cat.h
new file mode 100644
index 00000000..46dc50f6
--- /dev/null
+++ b/examples/cat.h
@@ -0,0 +1,13 @@
+#ifndef _CAT_H
+#define _CAT_H
+
+struct gimp_texture {
+ 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];
+};
+
+extern const struct gimp_texture cat_tex;
+
+#endif