mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 06:46:24 +02: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);
|
|
}
|
|
}
|