InternalErrorInfo.cs
1 namespace Ryujinx.Graphics.Nvdec.Vp9 2 { 3 internal struct InternalErrorInfo 4 { 5 public CodecErr ErrorCode; 6 7 public void InternalError(CodecErr error, string message) 8 { 9 ErrorCode = error; 10 11 throw new InternalErrorException(message); 12 } 13 } 14 }