123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520 |
- #define STBI_NO_STDIO
- #define STBI_NO_WRITE
- #define STBI_NO_HDR
- #ifndef STBI_INCLUDE_STB_IMAGE_H
- #define STBI_INCLUDE_STB_IMAGE_H
- #ifndef STBI_NO_STDIO
- #include <stdio.h>
- #endif
- #define STBI_VERSION 1
- enum
- {
- STBI_default = 0,
- STBI_grey = 1,
- STBI_grey_alpha = 2,
- STBI_rgb = 3,
- STBI_rgb_alpha = 4
- };
- typedef unsigned char stbi_uc;
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef STB_IMAGE_STATIC
- #define STBIDEF static
- #else
- #define STBIDEF extern
- #endif
- typedef struct
- {
- int (*read) (void *user,char *data,int size);
- void (*skip) (void *user,int n);
- int (*eof) (void *user);
- } stbi_io_callbacks;
- STBIDEF stbi_uc *stbi_load (char const *filename, int *x, int *y, int *comp, int req_comp);
- STBIDEF stbi_uc *stbi_load_from_memory (stbi_uc const *buffer, int len , int *x, int *y, int *comp, int req_comp);
- STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk , void *user, int *x, int *y, int *comp, int req_comp);
- #ifndef STBI_NO_STDIO
- STBIDEF stbi_uc *stbi_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
- #endif
- #ifndef STBI_NO_LINEAR
- STBIDEF float *stbi_loadf (char const *filename, int *x, int *y, int *comp, int req_comp);
- STBIDEF float *stbi_loadf_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
- STBIDEF float *stbi_loadf_from_callbacks (stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp);
- #ifndef STBI_NO_STDIO
- STBIDEF float *stbi_loadf_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
- #endif
- #endif
- #ifndef STBI_NO_HDR
- STBIDEF void stbi_hdr_to_ldr_gamma(float gamma);
- STBIDEF void stbi_hdr_to_ldr_scale(float scale);
- #endif
- #ifndef STBI_NO_LINEAR
- STBIDEF void stbi_ldr_to_hdr_gamma(float gamma);
- STBIDEF void stbi_ldr_to_hdr_scale(float scale);
- #endif
- STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user);
- STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len);
- #ifndef STBI_NO_STDIO
- STBIDEF int stbi_is_hdr (char const *filename);
- STBIDEF int stbi_is_hdr_from_file(FILE *f);
- #endif
- STBIDEF const char *stbi_failure_reason (void);
- STBIDEF void stbi_image_free (void *retval_from_stbi_load);
- STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp);
- STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp);
- #ifndef STBI_NO_STDIO
- STBIDEF int stbi_info (char const *filename, int *x, int *y, int *comp);
- STBIDEF int stbi_info_from_file (FILE *f, int *x, int *y, int *comp);
- #endif
- STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply);
- STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert);
- STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip);
- STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen);
- STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header);
- STBIDEF char *stbi_zlib_decode_malloc(const char *buffer, int len, int *outlen);
- STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, const char *ibuffer, int ilen);
- STBIDEF char *stbi_zlib_decode_noheader_malloc(const char *buffer, int len, int *outlen);
- STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen);
- #ifdef __cplusplus
- }
- #endif
- #endif
|