| 527 | /************************************************************************/ |
| 528 | |
| 529 | bool ZarrV2Array::LoadBlockData(const uint64_t *blockIndices, |
| 530 | bool &bMissingBlockOut) const |
| 531 | { |
| 532 | return LoadBlockData(blockIndices, |
| 533 | false, // use mutex |
| 534 | m_psDecompressor, m_abyRawBlockData, |
| 535 | m_abyTmpRawBlockData, m_abyDecodedBlockData, |
| 536 | bMissingBlockOut); |
| 537 | } |
| 538 | |
| 539 | bool ZarrV2Array::LoadBlockData(const uint64_t *blockIndices, bool bUseMutex, |
| 540 | const CPLCompressor *psDecompressor, |
no test coverage detected