| 985 | } |
| 986 | |
| 987 | auto TaskGraph::create_task_buffer(TaskBufferInfo info) -> TaskBufferView |
| 988 | { |
| 989 | auto & impl = *reinterpret_cast<ImplTaskGraph *>(this->object); |
| 990 | return TaskBufferView{.task_graph_index = impl.unique_index, .index = create_buffer_helper(impl, TaskResourceKind::BUFFER, info.size, info.lifetime_type, info.name)}; |
| 991 | } |
| 992 | |
| 993 | auto TaskGraph::create_task_tlas(TaskTlasInfo info) -> TaskTlasView |
| 994 | { |
no test coverage detected