| 762 | // ----------------------------------------------------------------------------- |
| 763 | |
| 764 | bool Compress(const void* srcdata, int width, int height, |
| 765 | const CompressFlags& flags, string* output) { |
| 766 | return CompressInternal(static_cast<const uint8*>(srcdata), width, height, |
| 767 | flags, output); |
| 768 | } |
| 769 | |
| 770 | string Compress(const void* srcdata, int width, int height, |
| 771 | const CompressFlags& flags) { |