mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 17:58:37 +12:00
Merge branch 'master' of https://github.com/DHrpcs3/rpcs3
This commit is contained in:
commit
017e44cf4d
4 changed files with 323 additions and 27 deletions
|
@ -559,6 +559,14 @@ void RSXThread::DoCmd(const u32 fcmd, const u32 cmd, mem32_ptr_t& args, const u3
|
|||
}
|
||||
break;
|
||||
|
||||
case NV4097_SET_DEPTH_BOUNDS_MAX:
|
||||
{
|
||||
m_set_depth_bounds = true;
|
||||
const u32 a0 = ARGS(0);
|
||||
m_depth_bounds_max = (float&)a0;
|
||||
}
|
||||
break;
|
||||
|
||||
// Viewport
|
||||
case NV4097_SET_VIEWPORT_VERTICAL:
|
||||
{
|
||||
|
@ -1620,6 +1628,12 @@ void RSXThread::DoCmd(const u32 fcmd, const u32 cmd, mem32_ptr_t& args, const u3
|
|||
}
|
||||
break;
|
||||
|
||||
case NV4097_SET_FREQUENCY_DIVIDER_OPERATION:
|
||||
{
|
||||
m_set_frequency_divider_operation = ARGS(0);
|
||||
}
|
||||
break;
|
||||
|
||||
case 0x000002c8:
|
||||
case 0x000002d0:
|
||||
case 0x000002d8:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue