OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "ui/vulkan/vulkan_surface.h" | |
6 | |
7 #include "ui/vulkan/vulkan_implementation.h" | |
8 | |
9 namespace gfx { | |
10 | |
11 VulkanSurface::VulkanSurface() {} | |
12 | |
13 // static | |
14 bool VulkanSurface::InitializeOneOff() { | |
15 InitializeVulkan(); | |
16 return true; | |
17 } | |
18 | |
19 VulkanSurface::~VulkanSurface() {} | |
20 | |
21 } // namespace gfx | |
OLD | NEW |