| 33 | } |
| 34 | |
| 35 | void Buffer::read(size_t byteOffset, size_t byteSize, void* dstHostPtr, SyncMode sync) |
| 36 | { |
| 37 | throw Exception(Error::InvalidOperation, "reading the buffer is not supported"); |
| 38 | } |
| 39 | |
| 40 | void Buffer::write(size_t byteOffset, size_t byteSize, const void* srcHostPtr, SyncMode sync) |
| 41 | { |