Copies data from a region of the buffer to host memory.
| 290 | |
| 291 | // Copies data from a region of the buffer to host memory. |
| 292 | void read(size_t byteOffset, size_t byteSize, void* dstHostPtr) const |
| 293 | { |
| 294 | oidnReadBuffer(handle, byteOffset, byteSize, dstHostPtr); |
| 295 | } |
| 296 | |
| 297 | // Copies data from a region of the buffer to host memory asynchronously. |
| 298 | void readAsync(size_t byteOffset, size_t byteSize, void* dstHostPtr) const |
nothing calls this directly
no test coverage detected