MCPcopy Create free account
hub / github.com/DFHack/dfhack / lodepng_decode32

Function lodepng_decode32

depends/lodepng/lodepng.cpp:5005–5007  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5003}
5004
5005unsigned lodepng_decode32(unsigned char** out, unsigned* w, unsigned* h, const unsigned char* in, size_t insize) {
5006 return lodepng_decode_memory(out, w, h, in, insize, LCT_RGBA, 8);
5007}
5008
5009unsigned lodepng_decode24(unsigned char** out, unsigned* w, unsigned* h, const unsigned char* in, size_t insize) {
5010 return lodepng_decode_memory(out, w, h, in, insize, LCT_RGB, 8);

Callers

nothing calls this directly

Calls 1

lodepng_decode_memoryFunction · 0.85

Tested by

no test coverage detected