mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-09 22:52:00 +00:00
19 lines
541 B
C#
19 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);
|
|
}
|
|
}
|