mirror of
https://github.com/ZDoom/ZDRay.git
synced 2024-11-25 21:31:32 +00:00
6 lines
220 B
C
6 lines
220 B
C
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
int decodePNG(std::vector<unsigned char>& out_image, unsigned long& image_width, unsigned long& image_height, const unsigned char* in_png, size_t in_size, bool convert_to_rgba32 = true);
|