mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-10-15 21:15:51 -05:00
Move solution and projects to src
This commit is contained in:
14
src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorInfo.cs
Normal file
14
src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorInfo.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Ryujinx.Graphics.Nvdec.Vp9
|
||||
{
|
||||
internal struct InternalErrorInfo
|
||||
{
|
||||
public CodecErr ErrorCode;
|
||||
|
||||
public void InternalError(CodecErr error, string message)
|
||||
{
|
||||
ErrorCode = error;
|
||||
|
||||
throw new InternalErrorException(message);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user