| 46 | } |
| 47 | |
| 48 | Ref<Buffer> Engine::newExternalBuffer(ExternalMemoryTypeFlags fdType, |
| 49 | int fd, size_t byteSize) |
| 50 | { |
| 51 | throw Exception(Error::InvalidOperation, |
| 52 | "creating a shared buffer from a POSIX file descriptor is not supported by the device"); |
| 53 | } |
| 54 | |
| 55 | Ref<Buffer> Engine::newExternalBuffer(ExternalMemoryTypeFlags handleType, |
| 56 | void* handle, const void* name, size_t byteSize) |
no test coverage detected