// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include #include #include "common/types.h" namespace Shader { using PFN_SrtWalker = void PS4_SYSV_ABI (*)(const u32* /*user_data*/, u32* /*flat_dst*/); struct PersistentSrtInfo { // Special case when fetch shader uses step rates. struct SrtSharpReservation { u32 sgpr_base; u32 dword_offset; u32 num_dwords; }; PFN_SrtWalker walker_func{}; u32 flattened_bufsize_dw = 16; // NumUserDataRegs }; } // namespace Shader