MCPcopy Create free account
hub / github.com/Ipotrick/Daxa / create_tlas_from_buffer

Method create_tlas_from_buffer

src/cpp_wrapper.cpp:487–497  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

485 return id;
486 }
487 auto Device::create_tlas_from_buffer(BufferTlasInfo const & info) -> TlasId
488 {
489 TlasId id = {};
490 check_result(
491 daxa_dvc_create_tlas_from_buffer(
492 r_cast<daxa_Device>(this->object),
493 r_cast<daxa_BufferTlasInfo const *>(&info),
494 r_cast<daxa_TlasId *>(&id)),
495 "failed to create tlas from buffer");
496 return id;
497 }
498 auto Device::create_blas_from_buffer(BufferBlasInfo const & info) -> BlasId
499 {
500 BlasId id = {};

Callers

nothing calls this directly

Calls 2

check_resultFunction · 0.85

Tested by

no test coverage detected