|
@@ -1,26 +1,34 @@
|
|
|
using Ryujinx.Common.Logging;
|
|
using Ryujinx.Common.Logging;
|
|
|
|
|
+using Ryujinx.Graphics.GAL;
|
|
|
using Ryujinx.Graphics.Gpu.State;
|
|
using Ryujinx.Graphics.Gpu.State;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Engine
|
|
namespace Ryujinx.Graphics.Gpu.Engine
|
|
|
{
|
|
{
|
|
|
partial class Methods
|
|
partial class Methods
|
|
|
{
|
|
{
|
|
|
|
|
+ enum ConditionalRenderEnabled
|
|
|
|
|
+ {
|
|
|
|
|
+ False,
|
|
|
|
|
+ True,
|
|
|
|
|
+ Host
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/// <summary>
|
|
/// <summary>
|
|
|
/// Checks if draws and clears should be performed, according
|
|
/// Checks if draws and clears should be performed, according
|
|
|
/// to currently set conditional rendering conditions.
|
|
/// to currently set conditional rendering conditions.
|
|
|
/// </summary>
|
|
/// </summary>
|
|
|
/// <param name="state">GPU state</param>
|
|
/// <param name="state">GPU state</param>
|
|
|
/// <returns>True if rendering is enabled, false otherwise</returns>
|
|
/// <returns>True if rendering is enabled, false otherwise</returns>
|
|
|
- private bool GetRenderEnable(GpuState state)
|
|
|
|
|
|
|
+ private ConditionalRenderEnabled GetRenderEnable(GpuState state)
|
|
|
{
|
|
{
|
|
|
ConditionState condState = state.Get<ConditionState>(MethodOffset.ConditionState);
|
|
ConditionState condState = state.Get<ConditionState>(MethodOffset.ConditionState);
|
|
|
|
|
|
|
|
switch (condState.Condition)
|
|
switch (condState.Condition)
|
|
|
{
|
|
{
|
|
|
case Condition.Always:
|
|
case Condition.Always:
|
|
|
- return true;
|
|
|
|
|
|
|
+ return ConditionalRenderEnabled.True;
|
|
|
case Condition.Never:
|
|
case Condition.Never:
|
|
|
- return false;
|
|
|
|
|
|
|
+ return ConditionalRenderEnabled.False;
|
|
|
case Condition.ResultNonZero:
|
|
case Condition.ResultNonZero:
|
|
|
return CounterNonZero(condState.Address.Pack());
|
|
return CounterNonZero(condState.Address.Pack());
|
|
|
case Condition.Equal:
|
|
case Condition.Equal:
|
|
@@ -31,22 +39,32 @@ namespace Ryujinx.Graphics.Gpu.Engine
|
|
|
|
|
|
|
|
Logger.PrintWarning(LogClass.Gpu, $"Invalid conditional render condition \"{condState.Condition}\".");
|
|
Logger.PrintWarning(LogClass.Gpu, $"Invalid conditional render condition \"{condState.Condition}\".");
|
|
|
|
|
|
|
|
- return true;
|
|
|
|
|
|
|
+ return ConditionalRenderEnabled.True;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
|
/// Checks if the counter value at a given GPU memory address is non-zero.
|
|
/// Checks if the counter value at a given GPU memory address is non-zero.
|
|
|
/// </summary>
|
|
/// </summary>
|
|
|
/// <param name="gpuVa">GPU virtual address of the counter value</param>
|
|
/// <param name="gpuVa">GPU virtual address of the counter value</param>
|
|
|
- /// <returns>True if the value is not zero, false otherwise</returns>
|
|
|
|
|
- private bool CounterNonZero(ulong gpuVa)
|
|
|
|
|
|
|
+ /// <returns>True if the value is not zero, false otherwise. Returns host if handling with host conditional rendering</returns>
|
|
|
|
|
+ private ConditionalRenderEnabled CounterNonZero(ulong gpuVa)
|
|
|
{
|
|
{
|
|
|
- if (!FindAndFlush(gpuVa))
|
|
|
|
|
|
|
+ ICounterEvent evt = _counterCache.FindEvent(gpuVa);
|
|
|
|
|
+
|
|
|
|
|
+ if (evt == null)
|
|
|
{
|
|
{
|
|
|
- return false;
|
|
|
|
|
|
|
+ return ConditionalRenderEnabled.False;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- return _context.MemoryAccessor.ReadUInt64(gpuVa) != 0;
|
|
|
|
|
|
|
+ if (_context.Renderer.Pipeline.TryHostConditionalRendering(evt, 0L, false))
|
|
|
|
|
+ {
|
|
|
|
|
+ return ConditionalRenderEnabled.Host;
|
|
|
|
|
+ }
|
|
|
|
|
+ else
|
|
|
|
|
+ {
|
|
|
|
|
+ evt.Flush();
|
|
|
|
|
+ return (_context.MemoryAccessor.ReadUInt64(gpuVa) != 0) ? ConditionalRenderEnabled.True : ConditionalRenderEnabled.False;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
@@ -54,29 +72,57 @@ namespace Ryujinx.Graphics.Gpu.Engine
|
|
|
/// </summary>
|
|
/// </summary>
|
|
|
/// <param name="gpuVa">GPU virtual address</param>
|
|
/// <param name="gpuVa">GPU virtual address</param>
|
|
|
/// <param name="isEqual">True to check if the values are equal, false to check if they are not equal</param>
|
|
/// <param name="isEqual">True to check if the values are equal, false to check if they are not equal</param>
|
|
|
- /// <returns>True if the condition is met, false otherwise</returns>
|
|
|
|
|
- private bool CounterCompare(ulong gpuVa, bool isEqual)
|
|
|
|
|
|
|
+ /// <returns>True if the condition is met, false otherwise. Returns host if handling with host conditional rendering</returns>
|
|
|
|
|
+ private ConditionalRenderEnabled CounterCompare(ulong gpuVa, bool isEqual)
|
|
|
{
|
|
{
|
|
|
- if (!FindAndFlush(gpuVa) && !FindAndFlush(gpuVa + 16))
|
|
|
|
|
|
|
+ ICounterEvent evt = FindEvent(gpuVa);
|
|
|
|
|
+ ICounterEvent evt2 = FindEvent(gpuVa + 16);
|
|
|
|
|
+
|
|
|
|
|
+ if (evt == null && evt2 == null)
|
|
|
|
|
+ {
|
|
|
|
|
+ return ConditionalRenderEnabled.False;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ bool useHost;
|
|
|
|
|
+
|
|
|
|
|
+ if (evt != null && evt2 == null)
|
|
|
|
|
+ {
|
|
|
|
|
+ useHost = _context.Renderer.Pipeline.TryHostConditionalRendering(evt, _context.MemoryAccessor.ReadUInt64(gpuVa + 16), isEqual);
|
|
|
|
|
+ }
|
|
|
|
|
+ else if (evt == null && evt2 != null)
|
|
|
|
|
+ {
|
|
|
|
|
+ useHost = _context.Renderer.Pipeline.TryHostConditionalRendering(evt2, _context.MemoryAccessor.ReadUInt64(gpuVa), isEqual);
|
|
|
|
|
+ }
|
|
|
|
|
+ else
|
|
|
{
|
|
{
|
|
|
- return false;
|
|
|
|
|
|
|
+ useHost = _context.Renderer.Pipeline.TryHostConditionalRendering(evt, evt2, isEqual);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- ulong x = _context.MemoryAccessor.ReadUInt64(gpuVa);
|
|
|
|
|
- ulong y = _context.MemoryAccessor.ReadUInt64(gpuVa + 16);
|
|
|
|
|
|
|
+ if (useHost)
|
|
|
|
|
+ {
|
|
|
|
|
+ return ConditionalRenderEnabled.Host;
|
|
|
|
|
+ }
|
|
|
|
|
+ else
|
|
|
|
|
+ {
|
|
|
|
|
+ evt?.Flush();
|
|
|
|
|
+ evt2?.Flush();
|
|
|
|
|
|
|
|
- return isEqual ? x == y : x != y;
|
|
|
|
|
|
|
+ ulong x = _context.MemoryAccessor.ReadUInt64(gpuVa);
|
|
|
|
|
+ ulong y = _context.MemoryAccessor.ReadUInt64(gpuVa + 16);
|
|
|
|
|
+
|
|
|
|
|
+ return (isEqual ? x == y : x != y) ? ConditionalRenderEnabled.True : ConditionalRenderEnabled.False;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// <summary>
|
|
|
/// Tries to find a counter that is supposed to be written at the specified address,
|
|
/// Tries to find a counter that is supposed to be written at the specified address,
|
|
|
- /// flushing if necessary.
|
|
|
|
|
|
|
+ /// returning the related event.
|
|
|
/// </summary>
|
|
/// </summary>
|
|
|
/// <param name="gpuVa">GPU virtual address where the counter is supposed to be written</param>
|
|
/// <param name="gpuVa">GPU virtual address where the counter is supposed to be written</param>
|
|
|
- /// <returns>True if a counter value is found at the specified address, false otherwise</returns>
|
|
|
|
|
- private bool FindAndFlush(ulong gpuVa)
|
|
|
|
|
|
|
+ /// <returns>The counter event, or null if not present</returns>
|
|
|
|
|
+ private ICounterEvent FindEvent(ulong gpuVa)
|
|
|
{
|
|
{
|
|
|
- return _counterCache.Contains(gpuVa);
|
|
|
|
|
|
|
+ return _counterCache.FindEvent(gpuVa);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|