| 38 | } |
| 39 | |
| 40 | void Buffer::write(size_t byteOffset, size_t byteSize, const void* srcHostPtr, SyncMode sync) |
| 41 | { |
| 42 | throw Exception(Error::InvalidOperation, "writing the buffer is not supported"); |
| 43 | } |
| 44 | |
| 45 | Ref<Buffer> Buffer::newBuffer(size_t byteSize, size_t byteOffset) |
| 46 | { |
no test coverage detected