Remove TODOs

This commit is contained in:
Isaac Marovitz 2024-03-21 11:45:50 -04:00
parent 37b08ebaef
commit aa53977e98
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
1 changed files with 0 additions and 2 deletions

View File

@ -528,7 +528,6 @@ namespace Ryujinx.Graphics.Metal
if (maxScissors == 0) { return; }
// TODO: Test max allowed scissor rects on device
var mtlScissorRects = new MTLScissorRect[maxScissors];
for (int i = 0; i < maxScissors; i++)
@ -721,7 +720,6 @@ namespace Ryujinx.Graphics.Metal
public unsafe void SetViewports(ReadOnlySpan<Viewport> viewports)
{
// TODO: Test max allowed viewports on device
var mtlViewports = new MTLViewport[viewports.Length];
for (int i = 0; i < viewports.Length; i++)