2018-04-08 21:17:35 +02:00
|
|
|
using Ryujinx.Graphics.Gal;
|
|
|
|
|
2018-06-24 02:39:25 +02:00
|
|
|
namespace Ryujinx.HLE.Gpu.Texture
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
2018-06-24 02:39:25 +02:00
|
|
|
struct TextureInfo
|
2018-04-08 21:17:35 +02:00
|
|
|
{
|
|
|
|
public long Position { get; private set; }
|
|
|
|
|
|
|
|
public int Width { get; private set; }
|
|
|
|
public int Height { get; private set; }
|
2018-04-08 22:09:41 +02:00
|
|
|
public int Pitch { get; private set; }
|
2018-04-08 21:17:35 +02:00
|
|
|
|
|
|
|
public int BlockHeight { get; private set; }
|
2018-07-19 07:30:21 +02:00
|
|
|
public int TileWidth { get; private set; }
|
2018-04-08 21:17:35 +02:00
|
|
|
|
|
|
|
public TextureSwizzle Swizzle { get; private set; }
|
|
|
|
|
|
|
|
public GalTextureFormat Format { get; private set; }
|
|
|
|
|
2018-06-24 02:39:25 +02:00
|
|
|
public TextureInfo(
|
2018-04-13 20:12:58 +02:00
|
|
|
long Position,
|
|
|
|
int Width,
|
|
|
|
int Height)
|
|
|
|
{
|
|
|
|
this.Position = Position;
|
|
|
|
this.Width = Width;
|
|
|
|
this.Height = Height;
|
|
|
|
|
|
|
|
Pitch = 0;
|
|
|
|
|
|
|
|
BlockHeight = 16;
|
|
|
|
|
2018-07-19 07:30:21 +02:00
|
|
|
TileWidth = 1;
|
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
Swizzle = TextureSwizzle.BlockLinear;
|
|
|
|
|
|
|
|
Format = GalTextureFormat.A8B8G8R8;
|
|
|
|
}
|
|
|
|
|
2018-06-24 02:39:25 +02:00
|
|
|
public TextureInfo(
|
2018-04-08 21:17:35 +02:00
|
|
|
long Position,
|
|
|
|
int Width,
|
|
|
|
int Height,
|
2018-04-08 22:09:41 +02:00
|
|
|
int Pitch,
|
2018-04-08 21:17:35 +02:00
|
|
|
int BlockHeight,
|
2018-07-19 07:30:21 +02:00
|
|
|
int TileWidth,
|
2018-04-08 21:17:35 +02:00
|
|
|
TextureSwizzle Swizzle,
|
|
|
|
GalTextureFormat Format)
|
|
|
|
{
|
2018-07-19 07:30:21 +02:00
|
|
|
this.Position = Position;
|
|
|
|
this.Width = Width;
|
|
|
|
this.Height = Height;
|
|
|
|
this.Pitch = Pitch;
|
|
|
|
this.BlockHeight = BlockHeight;
|
|
|
|
this.TileWidth = TileWidth;
|
|
|
|
this.Swizzle = Swizzle;
|
|
|
|
this.Format = Format;
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|