Fix typo in SamplerType.TextureBuffer

This commit is contained in:
Isaac Marovitz 2024-05-22 22:01:39 -04:00 committed by Isaac Marovitz
parent 49e1058ab4
commit 93f817ef1d
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ namespace Ryujinx.Graphics.Shader
typeName = (type & SamplerType.Mask) switch
{
SamplerType.Texture1D => "texture1d",
SamplerType.TextureBuffer => "texturebuffer",
SamplerType.TextureBuffer => "texture_buffer",
SamplerType.Texture2D => "texture2d",
SamplerType.Texture3D => "texture3d",
SamplerType.TextureCube => "texturecube",