Moved cat out of support, removed support

This commit is contained in:
Timidger 2018-04-16 18:42:10 -04:00
parent 8fd58ce725
commit ad6d40c7c6
No known key found for this signature in database
GPG key ID: 42EF7ECE5FEF1D17
15 changed files with 12 additions and 1332 deletions

13
examples/cat.h Normal file
View file

@ -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