mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
rsx: Apply Clang-Tidy fix "readability-avoid-const-params-in-decls"
This commit is contained in:
parent
370dcd9d6e
commit
1e327ad31b
4 changed files with 5 additions and 5 deletions
|
@ -161,7 +161,7 @@ public:
|
|||
std::string GetVecMaskDisasm();
|
||||
std::string GetScaMaskDisasm();
|
||||
std::string GetDSTDisasm(bool is_sca = false);
|
||||
std::string GetSRCDisasm(const u32 n);
|
||||
std::string GetSRCDisasm(u32 n);
|
||||
std::string GetTexDisasm();
|
||||
std::string GetCondDisasm();
|
||||
std::string AddAddrMaskDisasm();
|
||||
|
|
|
@ -71,7 +71,7 @@ struct VertexProgramDecompiler
|
|||
std::string GetVecMask();
|
||||
std::string GetScaMask();
|
||||
std::string GetDST(bool is_sca = false);
|
||||
std::string GetSRC(const u32 n);
|
||||
std::string GetSRC(u32 n);
|
||||
std::string GetTex();
|
||||
std::string GetRawCond();
|
||||
std::string GetCond();
|
||||
|
|
|
@ -645,7 +645,7 @@ namespace rsx
|
|||
gsl::span<const gsl::byte> get_raw_vertex_buffer(const rsx::data_array_format_info&, u32 base_offset, const draw_clause& draw_array_clause) const;
|
||||
|
||||
std::vector<std::variant<vertex_array_buffer, vertex_array_register, empty_vertex_array>>
|
||||
get_vertex_buffers(const rsx::rsx_state& state, const u64 consumed_attrib_mask) const;
|
||||
get_vertex_buffers(const rsx::rsx_state& state, u64 consumed_attrib_mask) const;
|
||||
|
||||
std::variant<draw_array_command, draw_indexed_array_command, draw_inlined_array>
|
||||
get_draw_command(const rsx::rsx_state& state) const;
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
namespace rsx
|
||||
{
|
||||
std::string get_method_name(const u32 id);
|
||||
std::string get_method_name(u32 id);
|
||||
|
||||
std::function<std::string(u32)> get_pretty_printing_function(const u32 id);
|
||||
std::function<std::string(u32)> get_pretty_printing_function(u32 id);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue