mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-02 15:10:46 -07:00
Initial conditional rendering support (#1012)
* Initial conditional rendering support * Properly reset state * Support conditional modes and skeleton a counter cache for future host conditional rendering * Address PR feedback
This commit is contained in:
@ -133,6 +133,9 @@ namespace Ryujinx.Graphics.Gpu.State
|
||||
// Default front stencil mask.
|
||||
_backingMemory[0x4e7] = 0xff;
|
||||
|
||||
// Conditional rendering condition.
|
||||
_backingMemory[0x556] = (int)Condition.Always;
|
||||
|
||||
// Default color mask.
|
||||
for (int index = 0; index < Constants.TotalRenderTargets; index++)
|
||||
{
|
||||
|
Reference in New Issue
Block a user