2019-10-13 08:02:07 +02:00
|
|
|
|
using Ryujinx.Common;
|
2019-12-11 20:43:28 +01:00
|
|
|
|
using System.Runtime.CompilerServices;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
|
|
using static Ryujinx.Graphics.Texture.BlockLinearConstants;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Texture
|
|
|
|
|
{
|
|
|
|
|
class BlockLinearLayout
|
|
|
|
|
{
|
|
|
|
|
private struct RobAndSliceSizes
|
|
|
|
|
{
|
|
|
|
|
public int RobSize;
|
|
|
|
|
public int SliceSize;
|
|
|
|
|
|
|
|
|
|
public RobAndSliceSizes(int robSize, int sliceSize)
|
|
|
|
|
{
|
|
|
|
|
RobSize = robSize;
|
|
|
|
|
SliceSize = sliceSize;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private int _texBpp;
|
|
|
|
|
|
|
|
|
|
private int _bhMask;
|
|
|
|
|
private int _bdMask;
|
|
|
|
|
|
|
|
|
|
private int _bhShift;
|
|
|
|
|
private int _bdShift;
|
|
|
|
|
private int _bppShift;
|
|
|
|
|
|
|
|
|
|
private int _xShift;
|
|
|
|
|
|
|
|
|
|
private int _robSize;
|
|
|
|
|
private int _sliceSize;
|
|
|
|
|
|
2020-06-14 00:31:06 +02:00
|
|
|
|
// Variables for built in iteration.
|
|
|
|
|
private int _yPart;
|
|
|
|
|
private int _yzPart;
|
|
|
|
|
private int _zPart;
|
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
|
public BlockLinearLayout(
|
|
|
|
|
int width,
|
|
|
|
|
int height,
|
|
|
|
|
int gobBlocksInY,
|
|
|
|
|
int gobBlocksInZ,
|
|
|
|
|
int bpp)
|
|
|
|
|
{
|
2019-12-11 20:43:28 +01:00
|
|
|
|
_texBpp = bpp;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
|
|
_bppShift = BitUtils.CountTrailingZeros32(bpp);
|
|
|
|
|
|
|
|
|
|
_bhMask = gobBlocksInY - 1;
|
|
|
|
|
_bdMask = gobBlocksInZ - 1;
|
|
|
|
|
|
|
|
|
|
_bhShift = BitUtils.CountTrailingZeros32(gobBlocksInY);
|
|
|
|
|
_bdShift = BitUtils.CountTrailingZeros32(gobBlocksInZ);
|
|
|
|
|
|
|
|
|
|
_xShift = BitUtils.CountTrailingZeros32(GobSize * gobBlocksInY * gobBlocksInZ);
|
|
|
|
|
|
|
|
|
|
RobAndSliceSizes rsSizes = GetRobAndSliceSizes(width, height, gobBlocksInY, gobBlocksInZ);
|
|
|
|
|
|
|
|
|
|
_robSize = rsSizes.RobSize;
|
|
|
|
|
_sliceSize = rsSizes.SliceSize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private RobAndSliceSizes GetRobAndSliceSizes(int width, int height, int gobBlocksInY, int gobBlocksInZ)
|
|
|
|
|
{
|
|
|
|
|
int widthInGobs = BitUtils.DivRoundUp(width * _texBpp, GobStride);
|
|
|
|
|
|
|
|
|
|
int robSize = GobSize * gobBlocksInY * gobBlocksInZ * widthInGobs;
|
|
|
|
|
|
|
|
|
|
int sliceSize = BitUtils.DivRoundUp(height, gobBlocksInY * GobHeight) * robSize;
|
|
|
|
|
|
|
|
|
|
return new RobAndSliceSizes(robSize, sliceSize);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-11 20:43:28 +01:00
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
2019-10-13 08:02:07 +02:00
|
|
|
|
public int GetOffset(int x, int y, int z)
|
|
|
|
|
{
|
2019-12-11 20:43:28 +01:00
|
|
|
|
return GetOffsetWithLineOffset(x << _bppShift, y, z);
|
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-11 20:43:28 +01:00
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public int GetOffsetWithLineOffset(int x, int y, int z)
|
|
|
|
|
{
|
2019-10-13 08:02:07 +02:00
|
|
|
|
int yh = y / GobHeight;
|
|
|
|
|
|
2019-12-11 20:43:28 +01:00
|
|
|
|
int offset = (z >> _bdShift) * _sliceSize + (yh >> _bhShift) * _robSize;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-11 20:43:28 +01:00
|
|
|
|
offset += (x / GobStride) << _xShift;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-11 20:43:28 +01:00
|
|
|
|
offset += (yh & _bhMask) * GobSize;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-11 20:43:28 +01:00
|
|
|
|
offset += ((z & _bdMask) * GobSize) << _bhShift;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-11 20:43:28 +01:00
|
|
|
|
offset += ((x & 0x3f) >> 5) << 8;
|
|
|
|
|
offset += ((y & 0x07) >> 1) << 6;
|
|
|
|
|
offset += ((x & 0x1f) >> 4) << 5;
|
|
|
|
|
offset += ((y & 0x01) >> 0) << 4;
|
|
|
|
|
offset += ((x & 0x0f) >> 0) << 0;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-11 20:43:28 +01:00
|
|
|
|
return offset;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
2020-06-14 00:31:06 +02:00
|
|
|
|
|
|
|
|
|
public (int offset, int size) GetRectangleRange(int x, int y, int width, int height)
|
|
|
|
|
{
|
|
|
|
|
// Justification:
|
|
|
|
|
// The 2D offset is a combination of separate x and y parts.
|
|
|
|
|
// Both components increase with input and never overlap bits.
|
|
|
|
|
// Therefore for each component, the minimum input value is the lowest that component can go.
|
|
|
|
|
// Minimum total value is minimum X component + minimum Y component. Similar goes for maximum.
|
|
|
|
|
|
|
|
|
|
int start = GetOffset(x, y, 0);
|
|
|
|
|
int end = GetOffset(x + width - 1, y + height - 1, 0) + _texBpp; // Cover the last pixel.
|
|
|
|
|
return (start, end - start);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool LayoutMatches(BlockLinearLayout other)
|
|
|
|
|
{
|
|
|
|
|
return _robSize == other._robSize &&
|
|
|
|
|
_sliceSize == other._sliceSize &&
|
|
|
|
|
_texBpp == other._texBpp &&
|
|
|
|
|
_bhMask == other._bhMask &&
|
|
|
|
|
_bdMask == other._bdMask;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Functions for built in iteration.
|
|
|
|
|
// Components of the offset can be updated separately, and combined to save some time.
|
|
|
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public void SetY(int y)
|
|
|
|
|
{
|
|
|
|
|
int yh = y / GobHeight;
|
|
|
|
|
int offset = (yh >> _bhShift) * _robSize;
|
|
|
|
|
|
|
|
|
|
offset += (yh & _bhMask) * GobSize;
|
|
|
|
|
|
|
|
|
|
offset += ((y & 0x07) >> 1) << 6;
|
|
|
|
|
offset += ((y & 0x01) >> 0) << 4;
|
|
|
|
|
|
|
|
|
|
_yPart = offset;
|
|
|
|
|
_yzPart = offset + _zPart;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public void SetZ(int z)
|
|
|
|
|
{
|
|
|
|
|
int offset = (z >> _bdShift) * _sliceSize;
|
|
|
|
|
|
|
|
|
|
offset += ((z & _bdMask) * GobSize) << _bhShift;
|
|
|
|
|
|
|
|
|
|
_zPart = offset;
|
|
|
|
|
_yzPart = offset + _yPart;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Optimized conversion for line offset in bytes to an absolute offset. Input x must be divisible by 16.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public int GetOffsetWithLineOffset16(int x)
|
|
|
|
|
{
|
|
|
|
|
int offset = (x / GobStride) << _xShift;
|
|
|
|
|
|
|
|
|
|
offset += ((x & 0x3f) >> 5) << 8;
|
|
|
|
|
offset += ((x & 0x1f) >> 4) << 5;
|
|
|
|
|
|
|
|
|
|
return offset + _yzPart;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Optimized conversion for line offset in bytes to an absolute offset. Input x must be divisible by 64.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public int GetOffsetWithLineOffset64(int x)
|
|
|
|
|
{
|
|
|
|
|
int offset = (x / GobStride) << _xShift;
|
|
|
|
|
|
|
|
|
|
return offset + _yzPart;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
|
|
|
|
public int GetOffset(int x)
|
|
|
|
|
{
|
|
|
|
|
x <<= _bppShift;
|
|
|
|
|
int offset = (x / GobStride) << _xShift;
|
|
|
|
|
|
|
|
|
|
offset += ((x & 0x3f) >> 5) << 8;
|
|
|
|
|
offset += ((x & 0x1f) >> 4) << 5;
|
|
|
|
|
offset += (x & 0x0f);
|
|
|
|
|
|
|
|
|
|
return offset + _yzPart;
|
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
}
|