mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 02:18:10 +02:00
Co-authored-by: Karmjit Mahil <Karmjit.Mahil@imgtec.com> Co-authored-by: Matt Coster <matt.coster@imgtec.com> Co-authored-by: Sarah Walker <sarah.walker@imgtec.com> Signed-off-by: Rajnesh Kanwal <rajnesh.kanwal@imgtec.com> Signed-off-by: Karmjit Mahil <Karmjit.Mahil@imgtec.com> Signed-off-by: Matt Coster <matt.coster@imgtec.com> Signed-off-by: Sarah Walker <sarah.walker@imgtec.com> Acked-by: Frank Binns <frank.binns@imgtec.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21550>
132 lines
3.9 KiB
C
132 lines
3.9 KiB
C
/*
|
|
* Copyright © 2022 Imagination Technologies Ltd.
|
|
*
|
|
* based in part on radv driver which is:
|
|
* Copyright © 2016 Red Hat.
|
|
* Copyright © 2016 Bas Nieuwenhuizen
|
|
*
|
|
* Based on u_format.h which is:
|
|
* Copyright 2009-2010 VMware, Inc.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the next
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
* Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
#ifndef VK_FORMAT_H
|
|
#define VK_FORMAT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <util/format/u_format.h>
|
|
#include <vulkan/util/vk_format.h>
|
|
|
|
#include <vulkan/vulkan.h>
|
|
|
|
#include "util/u_endian.h"
|
|
|
|
static inline bool vk_format_is_alpha_on_msb(VkFormat vk_format)
|
|
{
|
|
const struct util_format_description *desc =
|
|
vk_format_description(vk_format);
|
|
|
|
return (desc->colorspace == UTIL_FORMAT_COLORSPACE_RGB ||
|
|
desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) &&
|
|
#if UTIL_ARCH_BIG_ENDIAN
|
|
desc->swizzle[3] == PIPE_SWIZZLE_X;
|
|
#else
|
|
desc->swizzle[3] == PIPE_SWIZZLE_W;
|
|
#endif
|
|
}
|
|
|
|
static inline uint vk_format_get_channel_width(VkFormat vk_format,
|
|
uint32_t channel)
|
|
{
|
|
const struct util_format_description *desc =
|
|
vk_format_description(vk_format);
|
|
|
|
return desc->channel[channel].size;
|
|
}
|
|
|
|
static inline bool vk_format_has_32bit_component(VkFormat vk_format)
|
|
{
|
|
const struct util_format_description *desc =
|
|
vk_format_description(vk_format);
|
|
|
|
for (uint32_t i = 0; i < desc->nr_channels; i++) {
|
|
if (desc->channel[i].size == 32U)
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
static inline bool vk_format_is_normalized(VkFormat vk_format)
|
|
{
|
|
const struct util_format_description *desc =
|
|
vk_format_description(vk_format);
|
|
|
|
for (uint32_t i = 0; i < desc->nr_channels; i++) {
|
|
if (!desc->channel[i].normalized)
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static inline uint32_t
|
|
vk_format_get_common_color_channel_count(VkFormat src_format,
|
|
VkFormat dst_format)
|
|
{
|
|
const struct util_format_description *dst_desc =
|
|
vk_format_description(dst_format);
|
|
const struct util_format_description *src_desc =
|
|
vk_format_description(src_format);
|
|
uint32_t count = 0;
|
|
|
|
/* Check if destination format is alpha only and source format has alpha
|
|
* channel.
|
|
*/
|
|
if (util_format_is_alpha(vk_format_to_pipe_format(dst_format))) {
|
|
count = 1;
|
|
} else if (dst_desc->nr_channels <= src_desc->nr_channels) {
|
|
for (uint32_t i = 0; i < dst_desc->nr_channels; i++) {
|
|
enum pipe_swizzle swizzle = dst_desc->swizzle[i];
|
|
|
|
if (swizzle > PIPE_SWIZZLE_W)
|
|
continue;
|
|
|
|
for (uint32_t j = 0; j < src_desc->nr_channels; j++) {
|
|
if (src_desc->swizzle[j] == swizzle) {
|
|
count++;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
count = dst_desc->nr_channels;
|
|
}
|
|
|
|
return count;
|
|
}
|
|
|
|
static inline bool vk_format_is_alpha(VkFormat format)
|
|
{
|
|
return util_format_is_alpha(vk_format_to_pipe_format(format));
|
|
}
|
|
|
|
#endif /* VK_FORMAT_H */
|