aboutsummaryrefslogtreecommitdiff
path: root/examples/support/cat.h
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-05-11 08:10:32 +0100
committerGitHub <noreply@github.com>2018-05-11 08:10:32 +0100
commitd6f76bd3f39616878d0ae2c4c4d11f36e112002d (patch)
tree4d9c53fab06869e67073a748844163f1fe06cfd6 /examples/support/cat.h
parent8fd58ce72575df0f4cd96bffe55e4eeb04227f18 (diff)
parent9a1d0e42d2c8eda68bba1c1b4dfecc4bf6485baa (diff)
Merge pull request #932 from Timidger/standalone-examples
Made examples standalone
Diffstat (limited to 'examples/support/cat.h')
-rw-r--r--examples/support/cat.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/support/cat.h b/examples/support/cat.h
deleted file mode 100644
index 46dc50f6..00000000
--- a/examples/support/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 * 4 + 1];
-};
-
-extern const struct gimp_texture cat_tex;
-
-#endif