1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
/*
* Copyright 2023 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrVkBackendSurface_DEFINED
#define GrVkBackendSurface_DEFINED
#include "include/private/base/SkAPI.h"
#include "include/private/gpu/vk/SkiaVulkan.h"
#include <string_view>
class GrBackendFormat;
class GrBackendTexture;
class GrBackendRenderTarget;
struct GrVkImageInfo;
namespace skgpu {
struct VulkanYcbcrConversionInfo;
}
namespace GrBackendFormats {
SK_API GrBackendFormat MakeVk(VkFormat format, bool willUseDRMFormatModifiers = false);
SK_API GrBackendFormat MakeVk(const skgpu::VulkanYcbcrConversionInfo& ycbcrInfo,
bool willUseDRMFormatModifiers = false);
SK_API bool AsVkFormat(const GrBackendFormat&, VkFormat*);
SK_API const skgpu::VulkanYcbcrConversionInfo* GetVkYcbcrConversionInfo(const GrBackendFormat&);
} // namespace GrBackendFormats
namespace GrBackendTextures {
SK_API GrBackendTexture MakeVk(int width,
int height,
const GrVkImageInfo&,
std::string_view label = {});
// If the backend API is Vulkan, copies a snapshot of the GrVkImageInfo struct into the passed
// in pointer and returns true. This snapshot will set the fImageLayout to the current layout
// state. Otherwise returns false if the backend API is not Vulkan.
SK_API bool GetVkImageInfo(const GrBackendTexture&, GrVkImageInfo*);
// Anytime the client changes the VkImageLayout of the VkImage captured by this
// GrBackendTexture, they must call this function to notify Skia of the changed layout.
SK_API void SetVkImageLayout(GrBackendTexture*, VkImageLayout);
} // namespace GrBackendTextures
namespace GrBackendRenderTargets {
SK_API GrBackendRenderTarget MakeVk(int width, int height, const GrVkImageInfo&);
// If the backend API is Vulkan, copies a snapshot of the GrVkImageInfo struct into the passed
// in pointer and returns true. This snapshot will set the fImageLayout to the current layout
// state. Otherwise returns false if the backend API is not Vulkan.
SK_API bool GetVkImageInfo(const GrBackendRenderTarget&, GrVkImageInfo*);
// Anytime the client changes the VkImageLayout of the VkImage captured by this
// GrBackendRenderTarget, they must call this function to notify Skia of the changed layout.
SK_API void SetVkImageLayout(GrBackendRenderTarget*, VkImageLayout);
} // namespace GrBackendRenderTargets
#endif
|