Ryujinx/Ryujinx.Graphics.Gpu/Engine/MethodClear.cs

54 lines
1.6 KiB
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
using Ryujinx.Graphics.GAL.Color;
using Ryujinx.Graphics.Gpu.State;
namespace Ryujinx.Graphics.Gpu.Engine
{
partial class Methods
{
2019-11-22 03:46:14 +01:00
private void Clear(GpuState state, int argument)
2019-10-13 08:02:07 +02:00
{
2019-11-22 03:46:14 +01:00
UpdateRenderTargetStateIfNeeded(state);
_textureManager.CommitGraphicsBindings();
2019-10-13 08:02:07 +02:00
bool clearDepth = (argument & 1) != 0;
bool clearStencil = (argument & 2) != 0;
uint componentMask = (uint)((argument >> 2) & 0xf);
int index = (argument >> 6) & 0xf;
if (componentMask != 0)
{
2019-11-22 03:46:14 +01:00
var clearColor = state.Get<ClearColors>(MethodOffset.ClearColors);
2019-10-13 08:02:07 +02:00
ColorF color = new ColorF(
clearColor.Red,
clearColor.Green,
clearColor.Blue,
clearColor.Alpha);
_context.Renderer.Pipeline.ClearRenderTargetColor(index, componentMask, color);
2019-10-13 08:02:07 +02:00
}
if (clearDepth || clearStencil)
{
2019-11-22 03:46:14 +01:00
float depthValue = state.Get<float>(MethodOffset.ClearDepthValue);
int stencilValue = state.Get<int> (MethodOffset.ClearStencilValue);
2019-10-13 08:02:07 +02:00
int stencilMask = 0;
if (clearStencil)
{
2019-11-22 03:46:14 +01:00
stencilMask = state.Get<StencilTestState>(MethodOffset.StencilTestState).FrontMask;
2019-10-13 08:02:07 +02:00
}
_context.Renderer.Pipeline.ClearRenderTargetDepthStencil(
2019-10-13 08:02:07 +02:00
depthValue,
clearDepth,
stencilValue,
stencilMask);
}
}
}
}