123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef IMAGE_COMPRESS_SQUISH_H
- #define IMAGE_COMPRESS_SQUISH_H
- #include "core/image.h"
- #ifdef TOOLS_ENABLED
- void image_compress_squish(Image *p_image, float p_lossy_quality, Image::CompressSource p_source);
- #endif
- void image_decompress_squish(Image *p_image);
- #endif
|