mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-20 13:30:53 -05:00
up to date with 08126b26b1
This commit is contained in:
27
src/Ryujinx.Graphics.Metal/RenderEncoderState.cs
Normal file
27
src/Ryujinx.Graphics.Metal/RenderEncoderState.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using Ryujinx.Graphics.GAL;
|
||||
using SharpMetal.Metal;
|
||||
using System.Runtime.Versioning;
|
||||
|
||||
namespace Ryujinx.Graphics.Metal
|
||||
{
|
||||
[SupportedOSPlatform("macos")]
|
||||
struct RenderEncoderState
|
||||
{
|
||||
public MTLRenderPipelineState RenderPipelineState;
|
||||
public PrimitiveTopology Topology = PrimitiveTopology.Triangles;
|
||||
public MTLCullMode CullMode = MTLCullMode.None;
|
||||
public MTLWinding Winding = MTLWinding.Clockwise;
|
||||
|
||||
public RenderEncoderState(MTLRenderPipelineState renderPipelineState)
|
||||
{
|
||||
RenderPipelineState = renderPipelineState;
|
||||
}
|
||||
|
||||
public void SetEncoderState(MTLRenderCommandEncoder renderCommandEncoder)
|
||||
{
|
||||
renderCommandEncoder.SetRenderPipelineState(RenderPipelineState);
|
||||
renderCommandEncoder.SetCullMode(CullMode);
|
||||
renderCommandEncoder.SetFrontFacingWinding(Winding);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user