mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-09 13:36:27 +02:00
Move solution and projects to src
This commit is contained in:
parent
cd124bda58
commit
cee7121058
3466 changed files with 55 additions and 55 deletions
37
src/Ryujinx.Graphics.Texture/Utils/BC7ModeInfo.cs
Normal file
37
src/Ryujinx.Graphics.Texture/Utils/BC7ModeInfo.cs
Normal file
|
@ -0,0 +1,37 @@
|
|||
namespace Ryujinx.Graphics.Texture.Utils
|
||||
{
|
||||
readonly struct BC7ModeInfo
|
||||
{
|
||||
public readonly int SubsetCount;
|
||||
public readonly int PartitionBitCount;
|
||||
public readonly int PBits;
|
||||
public readonly int RotationBitCount;
|
||||
public readonly int IndexModeBitCount;
|
||||
public readonly int ColorIndexBitCount;
|
||||
public readonly int AlphaIndexBitCount;
|
||||
public readonly int ColorDepth;
|
||||
public readonly int AlphaDepth;
|
||||
|
||||
public BC7ModeInfo(
|
||||
int subsetCount,
|
||||
int partitionBitsCount,
|
||||
int pBits,
|
||||
int rotationBitCount,
|
||||
int indexModeBitCount,
|
||||
int colorIndexBitCount,
|
||||
int alphaIndexBitCount,
|
||||
int colorDepth,
|
||||
int alphaDepth)
|
||||
{
|
||||
SubsetCount = subsetCount;
|
||||
PartitionBitCount = partitionBitsCount;
|
||||
PBits = pBits;
|
||||
RotationBitCount = rotationBitCount;
|
||||
IndexModeBitCount = indexModeBitCount;
|
||||
ColorIndexBitCount = colorIndexBitCount;
|
||||
AlphaIndexBitCount = alphaIndexBitCount;
|
||||
ColorDepth = colorDepth;
|
||||
AlphaDepth = alphaDepth;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue