12 lines
211 B
C#
12 lines
211 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.Graphics.Video
|
|||
|
{
|
|||
|
public interface IDecoder : IDisposable
|
|||
|
{
|
|||
|
bool IsHardwareAccelerated { get; }
|
|||
|
|
|||
|
ISurface CreateSurface(int width, int height);
|
|||
|
}
|
|||
|
}
|