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