Move solution and projects to src

This commit is contained in:
TSR Berry
2023-04-08 01:22:00 +02:00
committed by Mary
parent cd124bda58
commit cee7121058
3466 changed files with 55 additions and 55 deletions

View File

@@ -0,0 +1,33 @@
using Ryujinx.Common;
using Ryujinx.Graphics.Texture;
namespace Ryujinx.Graphics.Vic.Image
{
static class SurfaceCommon
{
public static int GetPitch(int width, int bytesPerPixel)
{
return BitUtils.AlignUp(width * bytesPerPixel, 256);
}
public static int GetBlockLinearSize(int width, int height, int bytesPerPixel, int gobBlocksInY)
{
return SizeCalculator.GetBlockLinearTextureSize(width, height, 1, 1, 1, 1, 1, bytesPerPixel, gobBlocksInY, 1, 1).TotalSize;
}
public static ulong ExtendOffset(uint offset)
{
return (ulong)offset << 8;
}
public static ushort Upsample(byte value)
{
return (ushort)(value << 2);
}
public static byte Downsample(ushort value)
{
return (byte)(value >> 2);
}
}
}