Files
Kenji-NX/src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorInfo.cs
T
gdkchan 7218c66565 Implement VP9 loop filtering
* Initialize loop filter parameters
* Adjust docstrings for CodecError.cs
* Remove duplicate BitUtils methods
2025-01-21 13:47:12 -06:00

14 lines
299 B
C#

namespace Ryujinx.Graphics.Nvdec.Vp9
{
internal struct InternalErrorInfo
{
public CodecErr ErrorCode;
public void InternalError(CodecErr error, string message)
{
ErrorCode = error;
throw new InternalErrorException(message);
}
}
}