mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-21 06:02:54 +00:00
Add support for bindless textures from shader input (vertex buffer) on Vulkan (#6577)
* Add support for bindless textures from shader input (vertex buffer) * Shader cache version bump * Format whitespace * Remove cache entries on pool removal, disable for OpenGL * PR feedback
This commit is contained in:
@@ -58,10 +58,20 @@ namespace Ryujinx.ShaderTools
|
||||
return MemoryMarshal.Cast<byte, ulong>(new ReadOnlySpan<byte>(_data)[(int)address..]);
|
||||
}
|
||||
|
||||
public int QuerySamplerArrayLengthFromPool()
|
||||
{
|
||||
return DefaultArrayLength;
|
||||
}
|
||||
|
||||
public int QueryTextureArrayLengthFromBuffer(int slot)
|
||||
{
|
||||
return DefaultArrayLength;
|
||||
}
|
||||
|
||||
public int QueryTextureArrayLengthFromPool()
|
||||
{
|
||||
return DefaultArrayLength;
|
||||
}
|
||||
}
|
||||
|
||||
private class Options
|
||||
|
||||
Reference in New Issue
Block a user