mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-25 01:11:59 +00:00
20 lines
799 B
C#
20 lines
799 B
C#
using Ryujinx.Common.Configuration;
|
|
using Ryujinx.Graphics.GAL;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
internal abstract class WindowBase : IWindow
|
|
{
|
|
public bool ScreenCaptureRequested { get; set; }
|
|
|
|
public abstract void Dispose();
|
|
public abstract void Present(ITexture texture, ImageCrop crop, Action swapBuffersCallback);
|
|
public abstract void SetSize(int width, int height);
|
|
public abstract void ChangeVSyncMode(VSyncMode vSyncMode);
|
|
public abstract void SetAntiAliasing(AntiAliasing effect);
|
|
public abstract void SetScalingFilter(ScalingFilter scalerType);
|
|
public abstract void SetScalingFilterLevel(float scale);
|
|
public abstract void SetColorSpacePassthrough(bool colorSpacePassthroughEnabled);
|
|
}
|
|
}
|