mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-08 08:53:04 +00:00
18 lines
No EOL
672 B
C#
18 lines
No EOL
672 B
C#
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(bool vsyncEnabled);
|
|
public abstract void SetAntiAliasing(AntiAliasing effect);
|
|
public abstract void SetScalingFilter(ScalingFilter scalerType);
|
|
public abstract void SetScalingFilterLevel(float scale);
|
|
}
|
|
} |