mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-29 17:33:08 +03:00
Add back accidentally removed static from decode_565
This commit is contained in:
parent
8e11a6144a
commit
1c3a1df632
|
@ -28,5 +28,3 @@ typedef struct {
|
||||||
INT8 a0, a1;
|
INT8 a0, a1;
|
||||||
UINT8 lut[6];
|
UINT8 lut[6];
|
||||||
} bc5s_alpha;
|
} bc5s_alpha;
|
||||||
|
|
||||||
rgba decode_565(UINT16 x);
|
|
|
@ -28,7 +28,7 @@ bc1_color_load(bc1_color *dst, const UINT8 *src) {
|
||||||
dst->lut = LOAD32(src + 4);
|
dst->lut = LOAD32(src + 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
rgba
|
static rgba
|
||||||
decode_565(UINT16 x) {
|
decode_565(UINT16 x) {
|
||||||
rgba c;
|
rgba c;
|
||||||
int r, g, b;
|
int r, g, b;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user