mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-22 18:15:11 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
19 lines
761 B
C#
19 lines
761 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);
|
|
public abstract void SetColorSpacePassthrough(bool colorSpacePassthroughEnabled);
|
|
}
|
|
}
|