MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / PNG_read32bitLE

Function PNG_read32bitLE

Protocols/AppleImageCodec/picopng.c:755–758  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

753}
754
755UINT32 PNG_read32bitLE(const UINT8 *buffer)
756{
757 return (buffer[3] << 24) | (buffer[2] << 16) | (buffer[1] << 8) | buffer[0];
758}
759
760INT32 PNG_checkColorValidity(UINT32 colorType, UINT32 bd) // return type is a LodePNG error code
761{

Callers 1

PNG_decodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected