blob: b1c04d50473bbfb35ce17c489adf60523b709849 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "flutter/testing/test_vulkan_image.h"
#include "flutter/testing/test_vulkan_context.h"
namespace flutter::testing {
TestVulkanImage::TestVulkanImage() = default;
TestVulkanImage::TestVulkanImage(TestVulkanImage&& other) = default;
TestVulkanImage& TestVulkanImage::operator=(TestVulkanImage&& other) = default;
TestVulkanImage::~TestVulkanImage() = default;
VkImage TestVulkanImage::GetImage() {
return image_;
}
} // namespace flutter::testing