#ifndef UI_GFX_BUFFER_FORMAT_UTIL_H_
#define UI_GFX_BUFFER_FORMAT_UTIL_H_
#include <stddef.h>
#include "base/component_export.h"
#include "base/containers/span.h"
#include "gpu/vulkan/buildflags.h"
#include "ui/gfx/buffer_types.h"
#include "ui/gfx/geometry/size.h"
#if BUILDFLAG(ENABLE_VULKAN)
#include <vulkan/vulkan_core.h>
#endif
namespace gfx {
COMPONENT_EXPORT(GFX)
base::span<const BufferFormat> GetBufferFormatsForTesting();
COMPONENT_EXPORT(GFX) size_t AlphaBitsForBufferFormat(BufferFormat format);
COMPONENT_EXPORT(GFX)
size_t NumberOfPlanesForLinearBufferFormat(BufferFormat format);
COMPONENT_EXPORT(GFX) bool BufferFormatIsMultiplanar(BufferFormat format);
COMPONENT_EXPORT(GFX)
size_t SubsamplingFactorForBufferFormat(BufferFormat format, size_t plane);
COMPONENT_EXPORT(GFX)
size_t RowByteAlignmentForBufferFormat(BufferFormat format, size_t plane);
COMPONENT_EXPORT(GFX)
size_t RowSizeForBufferFormat(size_t width, BufferFormat format, size_t plane);
[[nodiscard]] COMPONENT_EXPORT(GFX) bool RowSizeForBufferFormatChecked(
size_t width,
BufferFormat format,
size_t plane,
size_t* size_in_bytes);
[[nodiscard]] COMPONENT_EXPORT(GFX) bool PlaneHeightForBufferFormatChecked(
size_t width,
BufferFormat format,
size_t plane,
size_t* height_in_pixels);
COMPONENT_EXPORT(GFX)
size_t PlaneSizeForBufferFormat(const Size& size,
BufferFormat format,
size_t plane);
[[nodiscard]] COMPONENT_EXPORT(GFX) bool PlaneSizeForBufferFormatChecked(
const Size& size,
BufferFormat format,
size_t plane,
size_t* size_in_bytes);
COMPONENT_EXPORT(GFX)
size_t BufferSizeForBufferFormat(const Size& size, BufferFormat format);
[[nodiscard]] COMPONENT_EXPORT(GFX) bool BufferSizeForBufferFormatChecked(
const Size& size,
BufferFormat format,
size_t* size_in_bytes);
COMPONENT_EXPORT(GFX)
size_t BufferOffsetForBufferFormat(const Size& size,
BufferFormat format,
size_t plane);
COMPONENT_EXPORT(GFX) const char* BufferFormatToString(BufferFormat format);
COMPONENT_EXPORT(GFX) bool IsOddHeightMultiPlanarBuffersAllowed();
COMPONENT_EXPORT(GFX) bool IsOddWidthMultiPlanarBuffersAllowed();
#if BUILDFLAG(ENABLE_VULKAN)
COMPONENT_EXPORT(GFX) constexpr VkFormat ToVkFormat(const BufferFormat format) {
switch (format) {
case gfx::BufferFormat::BGRA_8888:
return VK_FORMAT_B8G8R8A8_UNORM;
case gfx::BufferFormat::R_8:
return VK_FORMAT_R8_UNORM;
case gfx::BufferFormat::R_16:
return VK_FORMAT_R16_UNORM;
case gfx::BufferFormat::RG_1616:
return VK_FORMAT_R16G16_UNORM;
case gfx::BufferFormat::RGBA_4444:
return VK_FORMAT_R4G4B4A4_UNORM_PACK16;
case gfx::BufferFormat::RGBA_8888:
return VK_FORMAT_R8G8B8A8_UNORM;
case gfx::BufferFormat::RGBA_F16:
return VK_FORMAT_R16G16B16A16_SFLOAT;
case gfx::BufferFormat::BGR_565:
return VK_FORMAT_R5G6B5_UNORM_PACK16;
case gfx::BufferFormat::RG_88:
return VK_FORMAT_R8G8_UNORM;
case gfx::BufferFormat::RGBX_8888:
return VK_FORMAT_R8G8B8A8_UNORM;
case gfx::BufferFormat::BGRX_8888:
return VK_FORMAT_B8G8R8A8_UNORM;
case gfx::BufferFormat::RGBA_1010102:
return VK_FORMAT_A2B10G10R10_UNORM_PACK32;
case gfx::BufferFormat::BGRA_1010102:
return VK_FORMAT_A2R10G10B10_UNORM_PACK32;
case gfx::BufferFormat::YVU_420:
return VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM;
case gfx::BufferFormat::YUV_420_BIPLANAR:
return VK_FORMAT_G8_B8R8_2PLANE_420_UNORM;
case gfx::BufferFormat::YUVA_420_TRIPLANAR:
return VK_FORMAT_UNDEFINED;
case gfx::BufferFormat::P010:
return VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16;
}
return VK_FORMAT_UNDEFINED;
}
#endif
}
#endif