mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-03-17 04:41:49 +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);
|
|
}
|
|
}
|