aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp/gdisp_image_gif.c
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-07-08 11:08:55 +1000
committerinmarket <andrewh@inmarket.com.au>2018-07-08 11:08:55 +1000
commitcfb1b2a488d5b1a9e14c889b80e5324d16f63f1b (patch)
tree08ffe293a154f08325bca487ba73de1843e94ba5 /src/gdisp/gdisp_image_gif.c
parent2ab2d77fcba42467b62f2be732cb8dc00510fe19 (diff)
downloaduGFX-cfb1b2a488d5b1a9e14c889b80e5324d16f63f1b.tar.gz
uGFX-cfb1b2a488d5b1a9e14c889b80e5324d16f63f1b.tar.bz2
uGFX-cfb1b2a488d5b1a9e14c889b80e5324d16f63f1b.zip
Change pixel_t to gPixel
Diffstat (limited to 'src/gdisp/gdisp_image_gif.c')
-rw-r--r--src/gdisp/gdisp_image_gif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gdisp/gdisp_image_gif.c b/src/gdisp/gdisp_image_gif.c
index 5aaeaeb1..57af7fd9 100644
--- a/src/gdisp/gdisp_image_gif.c
+++ b/src/gdisp/gdisp_image_gif.c
@@ -91,14 +91,14 @@ typedef struct gdispImagePrivate_GIF {
uint8_t bgcolor; // Background Color (global)
uint16_t loops; // Remaining frame loops (if animated)
uint16_t palsize; // Global palette size (global)
- pixel_t *palette; // Global palette (global)
+ gPixel *palette; // Global palette (global)
size_t frame0pos; // The position of the first frame
gifimgcache * cache; // The list of cached frames
gifimgcache * curcache; // The cache of the current frame (if created)
gifimgdecode * decode; // The decode data for the decode in progress
gifimgframe frame;
gifimgdispose dispose;
- pixel_t buf[GDISP_IMAGE_GIF_BLIT_BUFFER_SIZE]; // Buffer for reading and blitting
+ gPixel buf[GDISP_IMAGE_GIF_BLIT_BUFFER_SIZE]; // Buffer for reading and blitting
} gdispImagePrivate_GIF;
/**