| 40 | } |
| 41 | |
| 42 | Ref<Buffer> Engine::newNativeBuffer(void* handle) |
| 43 | { |
| 44 | throw Exception(Error::InvalidOperation, |
| 45 | "creating a shared buffer from a native handle is not supported by the device"); |
| 46 | } |
| 47 | |
| 48 | Ref<Buffer> Engine::newExternalBuffer(ExternalMemoryTypeFlags fdType, |
| 49 | int fd, size_t byteSize) |
no test coverage detected