mesa/src/imagination/vulkan/pvr_border.h
Erik Faye-Lund a51f1311bf pvr: rename PVR_PER_ARCH aliases to pvr_arch_ for clarity
When using the aliases for the PVR_PER_ARCH functions, it's hard to see
what's per-arch and what's not. Let's bake that into the name instead,
so it's a bit more clear.

Reviewed-by: Ashish Chauhan <ashish.chauhan@imgtec.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39035>
2026-01-12 19:38:03 +00:00

97 lines
3.2 KiB
C

/*
* Copyright © 2023 Imagination Technologies Ltd.
*
* 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 PVR_BORDER_H
#define PVR_BORDER_H
#include <stdbool.h>
#include <stdint.h>
#include <vulkan/vulkan_core.h>
#include "util/bitset.h"
#include "pvr_csb.h"
#include "pvr_macros.h"
#define PVR_BORDER_COLOR_TABLE_NR_ENTRIES \
(ROGUE_TEXSTATE_SAMPLER_WORD0_BORDERCOLOR_INDEX_MAX_SIZE + 1)
#define PVR_BORDER_COLOR_TABLE_NR_BUILTIN_ENTRIES \
(VK_BORDER_COLOR_INT_OPAQUE_WHITE + 1)
#define PVR_BORDER_COLOR_TABLE_NR_CUSTOM_ENTRIES \
(PVR_BORDER_COLOR_TABLE_NR_ENTRIES - \
PVR_BORDER_COLOR_TABLE_NR_BUILTIN_ENTRIES)
/* Forward declaration from "pvr_common.h" */
struct pvr_sampler;
/* Forward declaration from "pvr_bo.h" */
struct pvr_bo;
/* Forward declaration from "pvr_device.h" */
struct pvr_device;
struct pvr_border_color_table {
BITSET_DECLARE(unused_entries, PVR_BORDER_COLOR_TABLE_NR_ENTRIES);
/* Contains an array of:
* PVR_BORDER_COLOR_TABLE_NR_ENTRIES x struct pvr_border_color_table_entry
*/
struct pvr_bo *table;
};
#ifdef PVR_PER_ARCH
VkResult PVR_PER_ARCH(border_color_table_init)(struct pvr_device *const device);
# define pvr_arch_border_color_table_init \
PVR_PER_ARCH(border_color_table_init)
void PVR_PER_ARCH(border_color_table_finish)(struct pvr_device *device);
# define pvr_arch_border_color_table_finish \
PVR_PER_ARCH(border_color_table_finish)
VkResult PVR_PER_ARCH(border_color_table_get_or_create_entry)(
struct pvr_device *device,
const struct pvr_sampler *sampler,
struct pvr_border_color_table *table,
uint32_t *index_out);
# define pvr_arch_border_color_table_get_or_create_entry \
PVR_PER_ARCH(border_color_table_get_or_create_entry)
void PVR_PER_ARCH(border_color_table_release_entry)(
struct pvr_border_color_table *table,
uint32_t index);
# define pvr_arch_border_color_table_release_entry \
PVR_PER_ARCH(border_color_table_release_entry)
#endif
static inline bool pvr_border_color_table_is_index_valid(
const struct pvr_border_color_table *const table,
const uint32_t index)
{
return !BITSET_TEST(table->unused_entries, index);
}
#endif /* PVR_BORDER_H */