mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-16 12:11:41 +00:00
20 lines
541 B
C#
20 lines
541 B
C#
using Ryujinx.Common.Configuration;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public interface IWindow
|
|
{
|
|
void Present(ITexture texture, ImageCrop crop, Action swapBuffersCallback);
|
|
|
|
void SetSize(int width, int height);
|
|
|
|
void ChangeVSyncMode(VSyncMode vSyncMode);
|
|
|
|
void SetAntiAliasing(AntiAliasing antialiasing);
|
|
void SetScalingFilter(ScalingFilter type);
|
|
void SetScalingFilterLevel(float level);
|
|
void SetColorSpacePassthrough(bool colorSpacePassThroughEnabled);
|
|
}
|
|
}
|