| 1 | // Copyright 2013 The Flutter 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 "flutter/testing/test_vulkan_image.h" |
| 6 | |
| 7 | #include "flutter/testing/test_vulkan_context.h" |
| 8 | |
| 9 | namespace flutter { |
| 10 | namespace testing { |
| 11 | |
| 12 | TestVulkanImage::TestVulkanImage() = default; |
| 13 | |
| 14 | TestVulkanImage::TestVulkanImage(TestVulkanImage&& other) = default; |
| 15 | TestVulkanImage& TestVulkanImage::operator=(TestVulkanImage&& other) = default; |
| 16 | |
| 17 | TestVulkanImage::~TestVulkanImage() = default; |
| 18 | |
| 19 | VkImage TestVulkanImage::GetImage() { |
| 20 | return image_; |
| 21 | } |
| 22 | |
| 23 | } // namespace testing |
| 24 | } // namespace flutter |
| 25 |
