aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Video/IDecoder.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Video/IDecoder.cs')
-rw-r--r--Ryujinx.Graphics.Video/IDecoder.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/Ryujinx.Graphics.Video/IDecoder.cs b/Ryujinx.Graphics.Video/IDecoder.cs
deleted file mode 100644
index 5957af08..00000000
--- a/Ryujinx.Graphics.Video/IDecoder.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-
-namespace Ryujinx.Graphics.Video
-{
- public interface IDecoder : IDisposable
- {
- bool IsHardwareAccelerated { get; }
-
- ISurface CreateSurface(int width, int height);
- }
-}