mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-25 15:00:03 +02:00
* Initialize loop filter parameters * Adjust docstrings for CodecError.cs * Remove duplicate BitUtils methods
14 lines
197 B
C#
14 lines
197 B
C#
namespace Ryujinx.Graphics.Nvdec.Vp9
|
|
{
|
|
internal enum BitDepth
|
|
{
|
|
// 8 bits
|
|
Bits8 = 8,
|
|
|
|
// 10 bits
|
|
Bits10 = 10,
|
|
|
|
// 12 bits
|
|
Bits12 = 12
|
|
}
|
|
} |