mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-04-05 20:09:40 +00:00
11 lines
208 B
C#
11 lines
208 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Video
|
|
{
|
|
public interface IDecoder : IDisposable
|
|
{
|
|
bool IsHardwareAccelerated { get; }
|
|
|
|
ISurface CreateSurface(int width, int height);
|
|
}
|
|
}
|