| 103 | } // namespace vulkan |
| 104 | |
| 105 | drape_ptr<VertexArrayBufferImpl> VertexArrayBuffer::CreateImplForVulkan(ref_ptr<GraphicsContext> context, |
| 106 | ref_ptr<VertexArrayBuffer> buffer, |
| 107 | BindingInfoArray && bindingInfo, |
| 108 | uint8_t bindingInfoCount) |
| 109 | { |
| 110 | ref_ptr<dp::vulkan::VulkanBaseContext> vulkanContext = context; |
| 111 | return make_unique_dp<vulkan::VulkanVertexArrayBufferImpl>(buffer, vulkanContext->GetObjectManager(), |
| 112 | std::move(bindingInfo), bindingInfoCount); |
| 113 | } |
| 114 | } // namespace dp |
nothing calls this directly
no test coverage detected