mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-05-08 16:47:51 +00:00
12 lines
208 B
C#
12 lines
208 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Video
|
|
{
|
|
public interface IDecoder : IDisposable
|
|
{
|
|
bool IsHardwareAccelerated { get; }
|
|
|
|
ISurface CreateSurface(int width, int height);
|
|
}
|
|
}
|