| 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 = {}; |
nothing calls this directly
no test coverage detected