1 /* 2 * Copyright 2022 Google LLC 3 * 4 * Use of this source code is governed by a BSD-style license that can be 5 * found in the LICENSE file. 6 */ 7 8 #ifndef skgpu_graphite_VulkanGraphiteUtils_DEFINED 9 #define skgpu_graphite_VulkanGraphiteUtils_DEFINED 10 11 #include <memory> 12 13 namespace skgpu { struct VulkanBackendContext; } 14 15 namespace skgpu::graphite { 16 17 class Context; 18 struct ContextOptions; 19 20 namespace ContextFactory { 21 std::unique_ptr<Context> MakeVulkan(const VulkanBackendContext&, const ContextOptions&); 22 } // namespace ContextFactory 23 24 } // namespace skgpu::graphite 25 26 #endif // skgpu_graphite_VulkanGraphiteUtils_DEFINED 27