3e6e0e4afa
* Add support for large sampler arrays on Vulkan * Shader cache version bump * Format whitespace * Move DescriptorSetManager to PipelineLayoutCacheEntry to allow different pool sizes per layout * Handle array textures with different types on the same buffer * Somewhat better caching system * Avoid useless buffer data modification checks * Move redundant bindings update checking to the backend * Fix an issue where texture arrays would get the same bindings across stages on Vulkan * Backport some fixes from part 2 * Fix typo * PR feedback * Format whitespace * Add some missing XML docs
69 lines
2.1 KiB
C#
69 lines
2.1 KiB
C#
using Ryujinx.Common.Configuration;
|
|
using System;
|
|
using System.Threading;
|
|
|
|
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public interface IRenderer : IDisposable
|
|
{
|
|
event EventHandler<ScreenCaptureImageInfo> ScreenCaptured;
|
|
|
|
bool PreferThreading { get; }
|
|
|
|
IPipeline Pipeline { get; }
|
|
|
|
IWindow Window { get; }
|
|
|
|
void BackgroundContextAction(Action action, bool alwaysBackground = false);
|
|
|
|
BufferHandle CreateBuffer(int size, BufferAccess access = BufferAccess.Default);
|
|
BufferHandle CreateBuffer(int size, BufferAccess access, BufferHandle storageHint);
|
|
BufferHandle CreateBuffer(nint pointer, int size);
|
|
BufferHandle CreateBufferSparse(ReadOnlySpan<BufferRange> storageBuffers);
|
|
|
|
IImageArray CreateImageArray(int size, bool isBuffer);
|
|
|
|
IProgram CreateProgram(ShaderSource[] shaders, ShaderInfo info);
|
|
|
|
ISampler CreateSampler(SamplerCreateInfo info);
|
|
ITexture CreateTexture(TextureCreateInfo info);
|
|
ITextureArray CreateTextureArray(int size, bool isBuffer);
|
|
|
|
bool PrepareHostMapping(nint address, ulong size);
|
|
|
|
void CreateSync(ulong id, bool strict);
|
|
|
|
void DeleteBuffer(BufferHandle buffer);
|
|
|
|
PinnedSpan<byte> GetBufferData(BufferHandle buffer, int offset, int size);
|
|
|
|
Capabilities GetCapabilities();
|
|
ulong GetCurrentSync();
|
|
HardwareInfo GetHardwareInfo();
|
|
|
|
IProgram LoadProgramBinary(byte[] programBinary, bool hasFragmentShader, ShaderInfo info);
|
|
|
|
void SetBufferData(BufferHandle buffer, int offset, ReadOnlySpan<byte> data);
|
|
|
|
void UpdateCounters();
|
|
|
|
void PreFrame();
|
|
|
|
ICounterEvent ReportCounter(CounterType type, EventHandler<ulong> resultHandler, float divisor, bool hostReserved);
|
|
|
|
void ResetCounter(CounterType type);
|
|
|
|
void RunLoop(ThreadStart gpuLoop)
|
|
{
|
|
gpuLoop();
|
|
}
|
|
|
|
void WaitSync(ulong id);
|
|
|
|
void Initialize(GraphicsDebugLevel logLevel);
|
|
|
|
void SetInterruptAction(Action<Action> interruptAction);
|
|
|
|
void Screenshot();
|
|
}
|
|
}
|