mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-31 00:51:17 +00:00
7 lines
333 B
C
7 lines
333 B
C
#ifndef R_IMAGEJPG_H_
|
|
#define R_IMAGEJPG_H_
|
|
|
|
void RE_SaveJPG(char * filename, int quality, int image_width, int image_height, unsigned char *image_buffer, int padding);
|
|
size_t RE_SaveJPGToBuffer(unsigned char *buffer, size_t bufSize, int quality, int image_width, int image_height, unsigned char *image_buffer, int padding);
|
|
|
|
#endif
|