diff options
| author | Tail Wag Games <carterza@gmail.com> | 2022-02-24 00:20:15 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-24 00:20:15 -0600 |
| commit | d4f62f52db3b263b2c081b90dca0b1a23ccb2993 (patch) | |
| tree | 569bb1166a287ff4fef2a0e47d52fe0f08f633c6 | |
| parent | dd0d61e97cc20956bc4c84e8c203653e22992738 (diff) | |
adding `is_16_bit_from_memory` to stbi
| -rw-r--r-- | vendor/stb/image/stb_image.odin | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vendor/stb/image/stb_image.odin b/vendor/stb/image/stb_image.odin index 8a3582792..4f7e43171 100644 --- a/vendor/stb/image/stb_image.odin +++ b/vendor/stb/image/stb_image.odin @@ -74,8 +74,9 @@ foreign stbi { info_from_memory :: proc(buffer: [^]byte, len: c.int, x, y, comp: ^c.int) -> c.int --- info_from_callbacks :: proc(clbk: ^Io_Callbacks, user: rawptr, x, y, comp: ^c.int) -> c.int --- - is_16_bit :: proc(filename: cstring) -> b32 --- - is_16_bit_from_file :: proc(f: ^c.FILE) -> b32 --- + is_16_bit :: proc(filename: cstring) -> b32 --- + is_16_bit_from_file :: proc(f: ^c.FILE) -> b32 --- + is_16_bit_from_memory :: proc(buffer: [^]byte, len: c.int) -> c.int --- // for image formats that explicitly notate that they have premultiplied alpha, // we just return the colors as stored in the file. set this flag to force |