| 991 | } |
| 992 | |
| 993 | auto TaskGraph::create_task_tlas(TaskTlasInfo info) -> TaskTlasView |
| 994 | { |
| 995 | auto & impl = *reinterpret_cast<ImplTaskGraph *>(this->object); |
| 996 | return TaskTlasView{.task_graph_index = impl.unique_index, .index = create_buffer_helper(impl, TaskResourceKind::TLAS, info.size, info.lifetime_type, info.name)}; |
| 997 | } |
| 998 | |
| 999 | auto TaskGraph::create_task_image(TaskImageInfo info) -> TaskImageView |
| 1000 | { |
nothing calls this directly
no test coverage detected