mirror of
https://github.com/nothings/stb
synced 2024-12-15 04:22:35 +03:00
tweak release docs
tweak credits tweak revision history remove trailing whitespace
This commit is contained in:
parent
b4e526d7cf
commit
9ad85cc8d2
52
stb_image.h
52
stb_image.h
@ -73,12 +73,18 @@
|
|||||||
removed in future versions of the library. It is only intended for
|
removed in future versions of the library. It is only intended for
|
||||||
back-compatibility use.
|
back-compatibility use.
|
||||||
|
|
||||||
|
- Added support for PNM images.
|
||||||
|
|
||||||
|
- Added STBI_MALLOC, STBI_REALLOC, and STBI_FREE macros for replacing
|
||||||
|
the memory allocator. Unlike other STBI libraries, these macros don't
|
||||||
|
support a context parameter, so if you need to pass a context in to
|
||||||
|
the allocator, you'll have to store it in a global or a thread-local
|
||||||
|
variable.
|
||||||
|
|
||||||
|
|
||||||
Latest revision history:
|
Latest revision history:
|
||||||
1.49 (2014-12-25) optimize JPG, incl. x86 SIMD
|
1.49 (2014-12-25) optimize JPG, incl. x86 SIMD
|
||||||
PGM/PPM support
|
PGM/PPM support
|
||||||
allocation macros
|
|
||||||
stbi_load_into() -- load into pre-defined memory
|
|
||||||
STBI_MALLOC,STBI_REALLOC,STBI_FREE
|
STBI_MALLOC,STBI_REALLOC,STBI_FREE
|
||||||
1.48 (2014-12-14) fix incorrectly-named assert()
|
1.48 (2014-12-14) fix incorrectly-named assert()
|
||||||
1.47 (2014-12-14) 1/2/4-bit PNG support (both grayscale and paletted)
|
1.47 (2014-12-14) 1/2/4-bit PNG support (both grayscale and paletted)
|
||||||
@ -86,10 +92,6 @@
|
|||||||
fix bug in interlaced PNG with user-specified channel count
|
fix bug in interlaced PNG with user-specified channel count
|
||||||
1.46 (2014-08-26) fix broken tRNS chunk in non-paletted PNG
|
1.46 (2014-08-26) fix broken tRNS chunk in non-paletted PNG
|
||||||
1.45 (2014-08-16) workaround MSVC-ARM internal compiler error by wrapping malloc
|
1.45 (2014-08-16) workaround MSVC-ARM internal compiler error by wrapping malloc
|
||||||
1.44 (2014-08-07) warnings
|
|
||||||
1.43 (2014-07-15) fix MSVC-only bug in 1.42
|
|
||||||
1.42 (2014-07-09) no _CRT_SECURE_NO_WARNINGS; error-path fixes; STBI_ASSERT
|
|
||||||
1.41 (2014-06-25) fix search&replace that messed up comments/error messages
|
|
||||||
|
|
||||||
See end of file for full revision history.
|
See end of file for full revision history.
|
||||||
|
|
||||||
@ -105,24 +107,32 @@
|
|||||||
Thatcher Ulrich (psd) Janez Zemva
|
Thatcher Ulrich (psd) Janez Zemva
|
||||||
Ken Miller (pgm, ppm) Jonathan Blow
|
Ken Miller (pgm, ppm) Jonathan Blow
|
||||||
Laurent Gomila
|
Laurent Gomila
|
||||||
Extensions, features Aruelien Pocheville
|
Aruelien Pocheville
|
||||||
Jetro Lauha (stbi_info) Ryamond Barbiero
|
Extensions, features Ryamond Barbiero
|
||||||
James "moose2000" Brown (iPhone PNG) David Woo
|
Jetro Lauha (stbi_info) David Woo
|
||||||
Ben "Disch" Wenger (io callbacks) Roy Eltham
|
Martin "SpartanJ" Golini (stbi_info) Martin Golini
|
||||||
Martin "SpartanJ" Golini Luke Graham
|
James "moose2000" Brown (iPhone PNG) Roy Eltham
|
||||||
Omar Cornut (1/2/4-bit png) Thomas Ruf
|
Ben "Disch" Wenger (io callbacks) Luke Graham
|
||||||
|
Omar Cornut (1/2/4-bit PNG) Thomas Ruf
|
||||||
John Bartholomew
|
John Bartholomew
|
||||||
Optimizations & bugfixes Ken Hamada
|
Ken Hamada
|
||||||
Fabian "ryg" Giesen Cort Stratton
|
Optimizations & bugfixes Cort Stratton
|
||||||
Arseny Kapoulkine Blazej Dariusz Roszkowski
|
Fabian "ryg" Giesen Blazej Dariusz Roszkowski
|
||||||
Thibault Reuille
|
Arseny Kapoulkine Thibault Reuille
|
||||||
Paul Du Bois
|
Paul Du Bois
|
||||||
Guillaume George
|
Guillaume George
|
||||||
Jerry Jansson
|
If your name should be here but Jerry Jansson
|
||||||
If your name should be here but Hayaki Saito
|
isn't, let Sean know. Hayaki Saito
|
||||||
isn't, let Sean know. Johan Duparc
|
Johan Duparc
|
||||||
Ronny Chevalier
|
Ronny Chevalier
|
||||||
Michal Cichon
|
Michal Cichon
|
||||||
|
Tero Hanninen
|
||||||
|
|
||||||
|
License:
|
||||||
|
This software is in the public domain. Where that dedication is not
|
||||||
|
recognized, you are granted a perpetual, irrevocable license to copy
|
||||||
|
and modify this file as you see fit.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef STBI_INCLUDE_STB_IMAGE_H
|
#ifndef STBI_INCLUDE_STB_IMAGE_H
|
||||||
@ -5347,6 +5357,10 @@ STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *c, void *user, int
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
revision history:
|
revision history:
|
||||||
|
1.49 (2014-12-25) optimize JPG, incl. x86 SIMD (ryg)
|
||||||
|
PGM/PPM support (Ken Miller)
|
||||||
|
STBI_MALLOC,STBI_REALLOC,STBI_FREE
|
||||||
|
stbi_load_into() -- load into pre-defined memory
|
||||||
1.48 (2014-12-14) fix incorrectly-named assert()
|
1.48 (2014-12-14) fix incorrectly-named assert()
|
||||||
1.47 (2014-12-14) 1/2/4-bit PNG support, both direct and paletted (Omar Cornut & stb)
|
1.47 (2014-12-14) 1/2/4-bit PNG support, both direct and paletted (Omar Cornut & stb)
|
||||||
optimize PNG (ryg)
|
optimize PNG (ryg)
|
||||||
|
Loading…
Reference in New Issue
Block a user