mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-18 00:12:41 +00:00
Move solution and projects to src
This commit is contained in:
20
src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaTexture.cs
Normal file
20
src/Ryujinx.Graphics.Gpu/Engine/Dma/DmaTexture.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using Ryujinx.Graphics.Gpu.Engine.Types;
|
||||
|
||||
namespace Ryujinx.Graphics.Gpu.Engine.Dma
|
||||
{
|
||||
/// <summary>
|
||||
/// Buffer to texture copy parameters.
|
||||
/// </summary>
|
||||
struct DmaTexture
|
||||
{
|
||||
#pragma warning disable CS0649
|
||||
public MemoryLayout MemoryLayout;
|
||||
public int Width;
|
||||
public int Height;
|
||||
public int Depth;
|
||||
public int RegionZ;
|
||||
public ushort RegionX;
|
||||
public ushort RegionY;
|
||||
#pragma warning restore CS0649
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user