From ac748cba9bd9751bd5b219d0eca4c73ca94b583d Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Sat, 16 Jan 2016 09:57:04 -0800 Subject: [PATCH] update contributor list, version history, version number --- stb_image.h | 7 +++++-- stb_image_write.h | 5 ++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/stb_image.h b/stb_image.h index 7709f6c..5e07746 100644 --- a/stb_image.h +++ b/stb_image.h @@ -146,6 +146,7 @@ Latest revision history: + 2.09 (2016-01-16) 16-bit TGA; comments in PNM files; STBI_REALLOC_SIZED 2.08 (2015-09-13) fix to 2.07 cleanup, reading RGB PSD as RGBA 2.07 (2015-09-13) partial animated GIF support limited 16-bit PSD support @@ -198,7 +199,7 @@ the Horde3D community Thomas Ruf Ronny Chevalier Nick Verigakis Janez Zemva John Bartholomew Michal Cichon svdijk@github Jonathan Blow Ken Hamada Tero Hanninen Baldur Karlsson - Laurent Gomila Cort Stratton Sergio Gonzalez + Laurent Gomila Cort Stratton Sergio Gonzalez romigrou@github Aruelien Pocheville Thibault Reuille Cass Everitt Ryamond Barbiero Paul Du Bois Engin Manap Blazej Dariusz Roszkowski @@ -6456,11 +6457,13 @@ STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *c, void *user, int /* revision history: 2.09 (2016-01-16) allow comments in PNM files + 16-bit-per-pixel TGA (not bit-per-component) info() for BMP to shares code instead of sloppy parse + can use STBI_REALLOC_SIZED if allocator doesn't support realloc 2.08 (2015-09-13) fix to 2.07 cleanup, reading RGB PSD as RGBA 2.07 (2015-09-13) fix compiler warnings partial animated GIF support - limited 16-bit PSD support + limited 16-bpc PSD support #ifdef unused functions bug with < 92 byte PIC,PNM,HDR,TGA 2.06 (2015-04-19) fix bug where PSD returns wrong '*comp' value diff --git a/stb_image_write.h b/stb_image_write.h index aa4b828..2d1e670 100644 --- a/stb_image_write.h +++ b/stb_image_write.h @@ -1,4 +1,4 @@ -/* stb_image_write - v1.00 - public domain - http://nothings.org/stb/stb_image_write.h +/* stb_image_write - v1.01 - public domain - http://nothings.org/stb/stb_image_write.h writes out PNG/BMP/TGA images to C stdio - Sean Barrett 2010-2015 no warranty implied; use at your own risk @@ -98,6 +98,7 @@ CREDITS: github:Chribba Guillaume Chereau github:jry2 + github:romigrou LICENSE @@ -974,6 +975,8 @@ STBIWDEF int stbi_write_png_to_func(stbi_write_func *func, void *context, int x, #endif // STB_IMAGE_WRITE_IMPLEMENTATION /* Revision history + 1.01 (2016-01-16) + STBIW_REALLOC_SIZED: support allocators with no realloc support 1.00 (2015-09-14) installable file IO function 0.99 (2015-09-13)