Remove unused constant
This commit is contained in:
parent
a363bc4a14
commit
002e1fc133
2 changed files with 5 additions and 9 deletions
|
@ -131,11 +131,11 @@ namespace Ryujinx.HLE.Gpu.Engines
|
|||
}
|
||||
|
||||
private void CopyTexture(
|
||||
NvGpuVmm Vmm,
|
||||
TextureInfo Texture,
|
||||
byte[] Buffer,
|
||||
int Width,
|
||||
int Height)
|
||||
NvGpuVmm Vmm,
|
||||
TextureInfo Texture,
|
||||
byte[] Buffer,
|
||||
int Width,
|
||||
int Height)
|
||||
{
|
||||
TextureWriter.Write(Vmm, Texture, Buffer, Width, Height);
|
||||
}
|
||||
|
|
|
@ -12,10 +12,6 @@ namespace Ryujinx.HLE.Gpu.Engines
|
|||
//a guess here and use 256kb as the size. Increase if needed.
|
||||
private const int MmeWords = 256 * 256;
|
||||
|
||||
//This is used to prevent an unbounded growth of the FIFO queue.
|
||||
//The game shouldn't send more commands than we are capable to process.
|
||||
private const int FifoCapacity = 10000;
|
||||
|
||||
private NvGpu Gpu;
|
||||
|
||||
private ConcurrentQueue<(NvGpuVmm, NvGpuPBEntry)> BufferQueue;
|
||||
|
|
Loading…
Add table
Reference in a new issue