MCPcopy Create free account
hub / github.com/PDAL/PDAL / ReadImage2DData

Method ReadImage2DData

plugins/e57/libE57Format/src/E57SimpleReader.cpp:78–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected