MCPcopy Create free account
hub / github.com/crossuo/crossuo / UopDecompressBlock

Function UopDecompressBlock

xuocore/uodata.cpp:248–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246}
247
248static bool UopDecompressBlock(const UopFileEntry *block, uint8_t *dst, int fileId)
249{
250 assert(block);
251 assert(fileId >= 0 && fileId <= countof(g_FileManager.m_AnimationFrame));
252 uint8_t *src =
253 g_FileManager.m_AnimationFrame[fileId].Start + block->Offset + block->MetadataSize;
254 return DecompressBlock(block, dst, src);
255}
256
257std::vector<uint8_t> CUopMappedFile::GetMeta(const UopFileEntry *block)
258{

Callers 2

Calls 1

DecompressBlockFunction · 0.85

Tested by

no test coverage detected