MCPcopy Create free account
hub / github.com/RenderKit/ospray / attach

Method attach

modules/denoiser/DenoiseFrameOp.cpp:501–511  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

499}
500
501std::unique_ptr<LiveFrameOpInterface> DenoiseFrameOp::attach(
502 FrameBufferView &fbView)
503{
504 if (drtDevice.getSyclQueuePtr())
505 return rkcommon::make_unique<LiveDenoiseFrameOpSharedSycl>(this, fbView);
506
507 if (oidnDevice.get<bool>("systemMemorySupported"))
508 return rkcommon::make_unique<LiveDenoiseFrameOpSharedCpu>(this, fbView);
509
510 return rkcommon::make_unique<LiveDenoiseFrameOpCopy>(this, fbView);
511}
512
513std::string DenoiseFrameOp::toString() const
514{

Callers

nothing calls this directly

Calls 1

getSyclQueuePtrMethod · 0.45

Tested by

no test coverage detected