| 444 | namespace { |
| 445 | template <typename T> |
| 446 | const void *copyToHost(T &buffer) |
| 447 | { |
| 448 | buffer.copyToHost().wait(); |
| 449 | return static_cast<const void *>(buffer.hostPtr()); |
| 450 | } |
| 451 | } // namespace |
| 452 | |
| 453 | const void *LocalFrameBuffer::mapBuffer(OSPFrameBufferChannel channel) |
no test coverage detected