| 462 | } |
| 463 | |
| 464 | auto Device::create_tlas_from_memory_block(MemoryBlockTlasInfo const & info) -> TlasId |
| 465 | { |
| 466 | TlasId id = {}; |
| 467 | check_result( |
| 468 | daxa_dvc_create_tlas_from_memory_block( |
| 469 | r_cast<daxa_Device>(this->object), |
| 470 | r_cast<daxa_MemoryBlockTlasInfo const *>(&info), |
| 471 | r_cast<daxa_TlasId *>(&id)), |
| 472 | "failed to create tlas from memory block"); |
| 473 | return id; |
| 474 | } |
| 475 | |
| 476 | auto Device::create_image_from_memory_block(MemoryBlockImageInfo const & info) -> ImageId |
| 477 | { |
no test coverage detected