aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs
blob: b7b7095363587b2cef5f71dff64cfb7e96cc97bc (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace Ryujinx.Graphics.Nvdec.Vp9
{
    internal enum BitDepth
    {
        Bits8 = 8,   /**<  8 bits */
        Bits10 = 10, /**< 10 bits */
        Bits12 = 12, /**< 12 bits */
    }
}