2019-12-29 12:41:50 -05:00
|
|
|
using Ryujinx.Graphics.GAL;
|
2019-10-13 02:02:07 -04:00
|
|
|
using Ryujinx.Graphics.Gpu.State;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Engine
|
|
|
|
{
|
|
|
|
partial class Methods
|
|
|
|
{
|
2019-12-31 14:19:44 -05:00
|
|
|
/// <summary>
|
|
|
|
/// Clears the current color and depth-stencil buffers.
|
|
|
|
/// Which buffers should be cleared is also specified on the argument.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="state">Current GPU state</param>
|
|
|
|
/// <param name="argument">Method call argument</param>
|
2019-11-21 21:46:14 -05:00
|
|
|
private void Clear(GpuState state, int argument)
|
2019-10-13 02:02:07 -04:00
|
|
|
{
|
2020-04-22 02:00:11 -04:00
|
|
|
if (!GetRenderEnable(state))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-03-28 23:02:58 -04:00
|
|
|
// Scissor affects clears aswell.
|
|
|
|
if (state.QueryModified(MethodOffset.ScissorState))
|
|
|
|
{
|
|
|
|
UpdateScissorState(state);
|
|
|
|
}
|
|
|
|
|
2019-12-06 17:37:00 -05:00
|
|
|
UpdateRenderTargetState(state, useControl: false);
|
2019-10-26 13:50:52 -04:00
|
|
|
|
2019-12-29 12:41:50 -05:00
|
|
|
TextureManager.CommitGraphicsBindings();
|
2019-10-13 02:02:07 -04: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-21 21:46:14 -05:00
|
|
|
var clearColor = state.Get<ClearColors>(MethodOffset.ClearColors);
|
2019-10-13 02:02:07 -04:00
|
|
|
|
|
|
|
ColorF color = new ColorF(
|
|
|
|
clearColor.Red,
|
|
|
|
clearColor.Green,
|
|
|
|
clearColor.Blue,
|
|
|
|
clearColor.Alpha);
|
|
|
|
|
2019-10-26 13:50:52 -04:00
|
|
|
_context.Renderer.Pipeline.ClearRenderTargetColor(index, componentMask, color);
|
2019-10-13 02:02:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (clearDepth || clearStencil)
|
|
|
|
{
|
2019-11-21 21:46:14 -05:00
|
|
|
float depthValue = state.Get<float>(MethodOffset.ClearDepthValue);
|
|
|
|
int stencilValue = state.Get<int> (MethodOffset.ClearStencilValue);
|
2019-10-13 02:02:07 -04:00
|
|
|
|
|
|
|
int stencilMask = 0;
|
|
|
|
|
|
|
|
if (clearStencil)
|
|
|
|
{
|
2019-11-21 21:46:14 -05:00
|
|
|
stencilMask = state.Get<StencilTestState>(MethodOffset.StencilTestState).FrontMask;
|
2019-10-13 02:02:07 -04:00
|
|
|
}
|
|
|
|
|
2019-10-17 22:41:18 -04:00
|
|
|
_context.Renderer.Pipeline.ClearRenderTargetDepthStencil(
|
2019-10-13 02:02:07 -04:00
|
|
|
depthValue,
|
|
|
|
clearDepth,
|
|
|
|
stencilValue,
|
|
|
|
stencilMask);
|
|
|
|
}
|
2019-12-06 17:37:00 -05:00
|
|
|
|
|
|
|
UpdateRenderTargetState(state, useControl: true);
|
2019-10-13 02:02:07 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|