Bind TextureBuffers

This commit is contained in:
Isaac Marovitz 2024-07-27 11:32:45 +01:00
parent b3e002f8dc
commit 1987309fda
No known key found for this signature in database
GPG Key ID: 97250B2B09A132E1
2 changed files with 65 additions and 83 deletions

View File

@ -54,10 +54,10 @@ namespace Ryujinx.Graphics.Metal
record struct TextureRef
{
public ShaderStage Stage;
public Texture Storage;
public TextureBase Storage;
public Sampler Sampler;
public TextureRef(ShaderStage stage, Texture storage, Sampler sampler)
public TextureRef(ShaderStage stage, TextureBase storage, Sampler sampler)
{
Stage = stage;
Storage = storage;

View File

@ -805,13 +805,9 @@ namespace Ryujinx.Graphics.Metal
public readonly void UpdateTextureAndSampler(ShaderStage stage, ulong binding, TextureBase texture, Sampler sampler)
{
if (texture is TextureBuffer)
if (texture != null)
{
// TODO: Texture buffers
}
else if (texture is Texture view)
{
_currentState.TextureRefs[binding] = new(stage, view, sampler);
_currentState.TextureRefs[binding] = new(stage, texture, sampler);
}
else
{
@ -1123,8 +1119,6 @@ namespace Ryujinx.Graphics.Metal
break;
case MetalRenderer.TextureSetIndex:
if (!segment.IsArray)
{
if (segment.Type != ResourceType.BufferTexture)
{
for (int i = 0; i < count; i++)
{
@ -1175,11 +1169,6 @@ namespace Ryujinx.Graphics.Metal
}
}
else
{
// TODO: Buffer textures
}
}
else
{
// TODO: Texture arrays
}
@ -1342,8 +1331,6 @@ namespace Ryujinx.Graphics.Metal
break;
case MetalRenderer.TextureSetIndex:
if (!segment.IsArray)
{
if (segment.Type != ResourceType.BufferTexture)
{
for (int i = 0; i < count; i++)
{
@ -1375,11 +1362,6 @@ namespace Ryujinx.Graphics.Metal
}
}
else
{
// TODO: Buffer textures
}
}
else
{
// TODO: Texture arrays
}