diff options
author | Marvin Borner | 2021-02-25 17:42:46 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-25 17:42:46 +0100 |
commit | 34885f1c73824a0fe47aa095e9d55a57021239d2 (patch) | |
tree | b59dfe47069d1f42bd8123e647fadf74bff835a6 /libgui | |
parent | b85ba196c47920b9d1b6622718a34f8f6f23bef3 (diff) |
Added *many* static keywords
Diffstat (limited to 'libgui')
-rw-r--r-- | libgui/inc/png.h | 3 | ||||
-rw-r--r-- | libgui/png.c | 12 | ||||
-rw-r--r-- | libgui/psf.c | 2 |
3 files changed, 10 insertions, 7 deletions
diff --git a/libgui/inc/png.h b/libgui/inc/png.h index 5614295..dba0947 100644 --- a/libgui/inc/png.h +++ b/libgui/inc/png.h @@ -27,6 +27,9 @@ freely, subject to the following restrictions: #ifndef PNG_H #define PNG_H +/* For now! TODO: Use PNG encoding */ +#define PNG_NO_COMPILE_ENCODER + #include <def.h> extern const char *PNG_VERSION_STRING; diff --git a/libgui/png.c b/libgui/png.c index 71b948b..03ff89e 100644 --- a/libgui/png.c +++ b/libgui/png.c @@ -631,7 +631,7 @@ static u32 readBits(pngBitReader *reader, u32 nbits) } /* Public for testing only. steps and result must have numsteps values. */ -u32 lode_png_test_bitreader(const u8 *data, u32 size, u32 numsteps, const u32 *steps, u32 *result) +/*static u32 png_test_bitreader(const u8 *data, u32 size, u32 numsteps, const u32 *steps, u32 *result) { u32 i; pngBitReader reader; @@ -654,7 +654,7 @@ u32 lode_png_test_bitreader(const u8 *data, u32 size, u32 numsteps, const u32 *s result[i] = readBits(&reader, step); } return 1; -} +}*/ #endif /*PNG_COMPILE_DECODER*/ static u32 reverseBits(u32 bits, u32 num) @@ -4089,14 +4089,16 @@ u32 png_convert(u8 *out, const u8 *in, const pngColorMode *mode_out, const pngCo return error; } +#ifdef PNG_COMPILE_ENCODER + /* Converts a single rgb color without alpha from one type to another, color bits truncated to their bitdepth. In case of single channel (gray or palette), only the r channel is used. Slow function, do not use to process all pixels of an image. Alpha channel not supported on purpose: this is for bKGD, supporting alpha may prevent it from finding a color in the palette, from the specification it looks like bKGD should ignore the alpha values of the palette since it can use any palette index but doesn't have an alpha channel. Idem with ignoring color key. */ -u32 png_convert_rgb(u32 *r_out, u32 *g_out, u32 *b_out, u32 r_in, u32 g_in, u32 b_in, - const pngColorMode *mode_out, const pngColorMode *mode_in) +static u32 png_convert_rgb(u32 *r_out, u32 *g_out, u32 *b_out, u32 r_in, u32 g_in, u32 b_in, + const pngColorMode *mode_out, const pngColorMode *mode_in) { u32 r = 0, g = 0, b = 0; u32 mul = 65535 / ((1u << mode_in->bitdepth) - 1u); /*65535, 21845, 4369, 257, 1*/ @@ -4147,8 +4149,6 @@ u32 png_convert_rgb(u32 *r_out, u32 *g_out, u32 *b_out, u32 r_in, u32 g_in, u32 return 0; } -#ifdef PNG_COMPILE_ENCODER - void png_color_stats_init(pngColorStats *stats) { /*stats*/ diff --git a/libgui/psf.c b/libgui/psf.c index 655fb07..e590add 100644 --- a/libgui/psf.c +++ b/libgui/psf.c @@ -9,7 +9,7 @@ // Verifies the PSF magics // Returns the PSF version or 0 -int psf_verify(char *data) +static int psf_verify(char *data) { struct psf1_header *header1 = (struct psf1_header *)data; struct psf2_header *header2 = (struct psf2_header *)data; |