| 76 | } |
| 77 | |
| 78 | int64_t Reader::ReadImage2DData( int64_t imageIndex, Image2DProjection imageProjection, |
| 79 | Image2DType imageType, void *pBuffer, int64_t start, |
| 80 | int64_t count ) const |
| 81 | { |
| 82 | auto *buffer = static_cast<uint8_t *>( pBuffer ); |
| 83 | const auto size = static_cast<size_t>( count ); |
| 84 | |
| 85 | const size_t read = |
| 86 | impl_->ReadImage2DData( imageIndex, imageProjection, imageType, buffer, start, size ); |
| 87 | |
| 88 | return static_cast<int64_t>( read ); |
| 89 | } |
| 90 | |
| 91 | int64_t Reader::GetData3DCount() const |
| 92 | { |
nothing calls this directly
no outgoing calls
no test coverage detected