2019-02-28 01:12:24 +00:00
|
|
|
using Ryujinx.Common;
|
2018-05-11 23:20:44 +00:00
|
|
|
using System;
|
|
|
|
|
2018-09-08 17:51:50 +00:00
|
|
|
namespace Ryujinx.Graphics.Texture
|
2018-04-08 19:17:35 +00:00
|
|
|
{
|
|
|
|
class BlockLinearSwizzle : ISwizzle
|
|
|
|
{
|
2019-02-28 01:12:24 +00:00
|
|
|
private const int GobWidth = 64;
|
|
|
|
private const int GobHeight = 8;
|
|
|
|
|
|
|
|
private const int GobSize = GobWidth * GobHeight;
|
|
|
|
|
|
|
|
private int TexWidth;
|
|
|
|
private int TexHeight;
|
|
|
|
private int TexDepth;
|
|
|
|
private int TexGobBlockHeight;
|
|
|
|
private int TexGobBlockDepth;
|
|
|
|
private int TexBpp;
|
|
|
|
|
|
|
|
private int BhMask;
|
|
|
|
private int BdMask;
|
|
|
|
|
2018-04-08 19:17:35 +00:00
|
|
|
private int BhShift;
|
2019-02-28 01:12:24 +00:00
|
|
|
private int BdShift;
|
2018-04-08 19:17:35 +00:00
|
|
|
private int BppShift;
|
|
|
|
|
|
|
|
private int XShift;
|
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
private int RobSize;
|
|
|
|
private int SliceSize;
|
|
|
|
|
|
|
|
private int BaseOffset;
|
|
|
|
|
|
|
|
public BlockLinearSwizzle(
|
|
|
|
int Width,
|
|
|
|
int Height,
|
|
|
|
int Depth,
|
|
|
|
int GobBlockHeight,
|
|
|
|
int GobBlockDepth,
|
|
|
|
int Bpp)
|
2018-04-08 19:17:35 +00:00
|
|
|
{
|
2019-02-28 01:12:24 +00:00
|
|
|
TexWidth = Width;
|
|
|
|
TexHeight = Height;
|
|
|
|
TexDepth = Depth;
|
|
|
|
TexGobBlockHeight = GobBlockHeight;
|
|
|
|
TexGobBlockDepth = GobBlockDepth;
|
|
|
|
TexBpp = Bpp;
|
|
|
|
|
|
|
|
BppShift = BitUtils.CountTrailingZeros32(Bpp);
|
|
|
|
|
|
|
|
SetMipLevel(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SetMipLevel(int Level)
|
|
|
|
{
|
|
|
|
BaseOffset = GetMipOffset(Level);
|
|
|
|
|
|
|
|
int Width = Math.Max(1, TexWidth >> Level);
|
|
|
|
int Height = Math.Max(1, TexHeight >> Level);
|
|
|
|
int Depth = Math.Max(1, TexDepth >> Level);
|
2018-04-08 19:17:35 +00:00
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
GobBlockSizes GbSizes = AdjustGobBlockSizes(Height, Depth);
|
2018-04-08 19:17:35 +00:00
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
BhMask = GbSizes.Height - 1;
|
|
|
|
BdMask = GbSizes.Depth - 1;
|
2018-04-08 19:17:35 +00:00
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
BhShift = BitUtils.CountTrailingZeros32(GbSizes.Height);
|
|
|
|
BdShift = BitUtils.CountTrailingZeros32(GbSizes.Depth);
|
2018-04-08 19:17:35 +00:00
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
XShift = BitUtils.CountTrailingZeros32(GobSize * GbSizes.Height * GbSizes.Depth);
|
|
|
|
|
|
|
|
RobAndSliceSizes GsSizes = GetRobAndSliceSizes(Width, Height, GbSizes);
|
|
|
|
|
|
|
|
RobSize = GsSizes.RobSize;
|
|
|
|
SliceSize = GsSizes.SliceSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int GetImageSize(int MipsCount)
|
|
|
|
{
|
|
|
|
int Size = GetMipOffset(MipsCount);
|
|
|
|
|
|
|
|
Size = (Size + 0x1fff) & ~0x1fff;
|
|
|
|
|
|
|
|
return Size;
|
2018-04-08 19:17:35 +00:00
|
|
|
}
|
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
public int GetMipOffset(int Level)
|
2018-04-08 19:17:35 +00:00
|
|
|
{
|
2019-02-28 01:12:24 +00:00
|
|
|
int TotalSize = 0;
|
2018-04-08 19:17:35 +00:00
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
for (int Index = 0; Index < Level; Index++)
|
2018-04-08 19:17:35 +00:00
|
|
|
{
|
2019-02-28 01:12:24 +00:00
|
|
|
int Width = Math.Max(1, TexWidth >> Index);
|
|
|
|
int Height = Math.Max(1, TexHeight >> Index);
|
|
|
|
int Depth = Math.Max(1, TexDepth >> Index);
|
|
|
|
|
|
|
|
GobBlockSizes GbSizes = AdjustGobBlockSizes(Height, Depth);
|
|
|
|
|
|
|
|
RobAndSliceSizes RsSizes = GetRobAndSliceSizes(Width, Height, GbSizes);
|
|
|
|
|
|
|
|
TotalSize += BitUtils.DivRoundUp(Depth, GbSizes.Depth) * RsSizes.SliceSize;
|
2018-04-08 19:17:35 +00:00
|
|
|
}
|
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
return TotalSize;
|
2018-04-08 19:17:35 +00:00
|
|
|
}
|
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
private struct GobBlockSizes
|
|
|
|
{
|
|
|
|
public int Height;
|
|
|
|
public int Depth;
|
|
|
|
|
|
|
|
public GobBlockSizes(int GobBlockHeight, int GobBlockDepth)
|
|
|
|
{
|
|
|
|
this.Height = GobBlockHeight;
|
|
|
|
this.Depth = GobBlockDepth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private GobBlockSizes AdjustGobBlockSizes(int Height, int Depth)
|
|
|
|
{
|
|
|
|
int GobBlockHeight = TexGobBlockHeight;
|
|
|
|
int GobBlockDepth = TexGobBlockDepth;
|
|
|
|
|
|
|
|
int Pow2Height = BitUtils.Pow2RoundUp(Height);
|
|
|
|
int Pow2Depth = BitUtils.Pow2RoundUp(Depth);
|
|
|
|
|
|
|
|
while (GobBlockHeight * GobHeight > Pow2Height && GobBlockHeight > 1)
|
|
|
|
{
|
|
|
|
GobBlockHeight >>= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (GobBlockDepth > Pow2Depth && GobBlockDepth > 1)
|
|
|
|
{
|
|
|
|
GobBlockDepth >>= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new GobBlockSizes(GobBlockHeight, GobBlockDepth);
|
|
|
|
}
|
|
|
|
|
|
|
|
private struct RobAndSliceSizes
|
|
|
|
{
|
|
|
|
public int RobSize;
|
|
|
|
public int SliceSize;
|
|
|
|
|
|
|
|
public RobAndSliceSizes(int RobSize, int SliceSize)
|
|
|
|
{
|
|
|
|
this.RobSize = RobSize;
|
|
|
|
this.SliceSize = SliceSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private RobAndSliceSizes GetRobAndSliceSizes(int Width, int Height, GobBlockSizes GbSizes)
|
|
|
|
{
|
|
|
|
int WidthInGobs = BitUtils.DivRoundUp(Width * TexBpp, GobWidth);
|
|
|
|
|
|
|
|
int RobSize = GobSize * GbSizes.Height * GbSizes.Depth * WidthInGobs;
|
|
|
|
|
|
|
|
int SliceSize = BitUtils.DivRoundUp(Height, GbSizes.Height * GobHeight) * RobSize;
|
|
|
|
|
|
|
|
return new RobAndSliceSizes(RobSize, SliceSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
public int GetSwizzleOffset(int X, int Y, int Z)
|
2018-04-08 19:17:35 +00:00
|
|
|
{
|
|
|
|
X <<= BppShift;
|
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
int YH = Y / GobHeight;
|
|
|
|
|
|
|
|
int Position = (Z >> BdShift) * SliceSize + (YH >> BhShift) * RobSize;
|
|
|
|
|
|
|
|
Position += (X / GobWidth) << XShift;
|
2018-04-08 19:17:35 +00:00
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
Position += (YH & BhMask) * GobSize;
|
2018-04-08 19:17:35 +00:00
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
Position += ((Z & BdMask) * GobSize) << BhShift;
|
2018-04-08 19:17:35 +00:00
|
|
|
|
|
|
|
Position += ((X & 0x3f) >> 5) << 8;
|
|
|
|
Position += ((Y & 0x07) >> 1) << 6;
|
|
|
|
Position += ((X & 0x1f) >> 4) << 5;
|
|
|
|
Position += ((Y & 0x01) >> 0) << 4;
|
|
|
|
Position += ((X & 0x0f) >> 0) << 0;
|
|
|
|
|
2019-02-28 01:12:24 +00:00
|
|
|
return BaseOffset + Position;
|
2018-04-08 19:17:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|