mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-29 01:47:11 +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);
|
|
}
|
|
}
|