diff options
Diffstat (limited to 'samples/image_diff_png.h')
-rw-r--r-- | samples/image_diff_png.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/samples/image_diff_png.h b/samples/image_diff_png.h index 9febb3744c..7e0afecf83 100644 --- a/samples/image_diff_png.h +++ b/samples/image_diff_png.h @@ -12,9 +12,11 @@ namespace image_diff_png { // Decode a PNG into an RGBA pixel array. -bool DecodePNG(const unsigned char* input, size_t input_size, +bool DecodePNG(const unsigned char* input, + size_t input_size, std::vector<unsigned char>* output, - int* width, int* height); + int* width, + int* height); // Encode an RGBA pixel array into a PNG. bool EncodeRGBAPNG(const unsigned char* input, |