mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-03 18:17:44 +02: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);
|
|
}
|
|
}
|