vulkan_image_mac.cc 619 B

123456789101112131415161718192021222324
  1. // Copyright 2022 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. #include "gpu/vulkan/vulkan_image.h"
  5. #include "base/notreached.h"
  6. namespace gpu {
  7. bool VulkanImage::InitializeFromGpuMemoryBufferHandle(
  8. VulkanDeviceQueue* device_queue,
  9. gfx::GpuMemoryBufferHandle gmb_handle,
  10. const gfx::Size& size,
  11. VkFormat format,
  12. VkImageUsageFlags usage,
  13. VkImageCreateFlags flags,
  14. VkImageTiling image_tiling,
  15. uint32_t queue_family_index) {
  16. NOTIMPLEMENTED();
  17. return false;
  18. }
  19. } // namespace gpu