mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-16 15:43:14 +00:00
gnmdriver: Implement neo mode differences. (#2011)
* gnmdriver: Implement neo mode differences. * gnmdriver: Move init sequences to separate file.
This commit is contained in:
parent
2951788afc
commit
9434cae458
4 changed files with 696 additions and 282 deletions
|
@ -204,6 +204,11 @@ struct PM4CmdSetData {
|
|||
static constexpr u32* SetShReg(u32* cmdbuf, Args... data) {
|
||||
return WritePacket<PM4ItOpcode::SetShReg>(cmdbuf, type, data...);
|
||||
}
|
||||
|
||||
template <PM4ShaderType type = PM4ShaderType::ShaderGraphics, typename... Args>
|
||||
static constexpr u32* SetUconfigReg(u32* cmdbuf, Args... data) {
|
||||
return WritePacket<PM4ItOpcode::SetUconfigReg>(cmdbuf, type, data...);
|
||||
}
|
||||
};
|
||||
|
||||
struct PM4CmdNop {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue