mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-12-03 23:12:09 +01:00
Remove TODOs
This commit is contained in:
parent
df6821d023
commit
00b99770a2
1 changed files with 0 additions and 2 deletions
|
@ -528,7 +528,6 @@ namespace Ryujinx.Graphics.Metal
|
||||||
|
|
||||||
if (maxScissors == 0) { return; }
|
if (maxScissors == 0) { return; }
|
||||||
|
|
||||||
// TODO: Test max allowed scissor rects on device
|
|
||||||
var mtlScissorRects = new MTLScissorRect[maxScissors];
|
var mtlScissorRects = new MTLScissorRect[maxScissors];
|
||||||
|
|
||||||
for (int i = 0; i < maxScissors; i++)
|
for (int i = 0; i < maxScissors; i++)
|
||||||
|
@ -721,7 +720,6 @@ namespace Ryujinx.Graphics.Metal
|
||||||
|
|
||||||
public unsafe void SetViewports(ReadOnlySpan<Viewport> viewports)
|
public unsafe void SetViewports(ReadOnlySpan<Viewport> viewports)
|
||||||
{
|
{
|
||||||
// TODO: Test max allowed viewports on device
|
|
||||||
var mtlViewports = new MTLViewport[viewports.Length];
|
var mtlViewports = new MTLViewport[viewports.Length];
|
||||||
|
|
||||||
for (int i = 0; i < viewports.Length; i++)
|
for (int i = 0; i < viewports.Length; i++)
|
||||||
|
|
Loading…
Reference in a new issue