From cda12a3eda7049e828c61506f16361c5a5b3869c Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 7 Jun 2017 11:05:31 -0400 Subject: Add texture, use index buffer, tweak matricies --- example/cat.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 example/cat.h (limited to 'example/cat.h') diff --git a/example/cat.h b/example/cat.h new file mode 100644 index 00000000..6db307fd --- /dev/null +++ b/example/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 * 3 + 1]; +}; + +extern const struct gimp_texture cat_tex; + +#endif -- cgit v1.2.3