aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Nvdec.Vp9/BitDepth.cs
blob: a43c835808459f234b16e8a346c0a7ee7b32ca95 (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 */
    }
}