mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-19 19:01:00 -05:00
Cleanup Pipeline
Housekeeping More housekeeping
This commit is contained in:
committed by
Evan Husted
parent
74083083cd
commit
197184657f
@@ -8,7 +8,7 @@ using System.Runtime.Versioning;
|
||||
namespace Ryujinx.Graphics.Metal
|
||||
{
|
||||
[SupportedOSPlatform("macos")]
|
||||
public class Texture : TextureBase, ITexture
|
||||
class Texture : TextureBase, ITexture
|
||||
{
|
||||
public Texture(MTLDevice device, MetalRenderer renderer, Pipeline pipeline, TextureCreateInfo info) : base(device, renderer, pipeline, info)
|
||||
{
|
||||
@@ -162,7 +162,7 @@ namespace Ryujinx.Graphics.Metal
|
||||
public void CopyTo(BufferRange range, int layer, int level, int stride)
|
||||
{
|
||||
var blitCommandEncoder = _pipeline.GetOrCreateBlitEncoder();
|
||||
var cbs = _pipeline.CurrentCommandBuffer;
|
||||
var cbs = _pipeline.Cbs;
|
||||
|
||||
int outSize = Info.GetMipSize(level);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user