From d0bbc970eb60f8aae20b595e4e4d69009bade954 Mon Sep 17 00:00:00 2001 From: Isaac Marovitz Date: Mon, 9 Oct 2023 15:04:02 -0400 Subject: [PATCH] Cleanup --- src/Ryujinx.Graphics.Shader/CodeGen/Msl/Declarations.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ryujinx.Graphics.Shader/CodeGen/Msl/Declarations.cs b/src/Ryujinx.Graphics.Shader/CodeGen/Msl/Declarations.cs index 9b43ba1dc1..8f9154a129 100644 --- a/src/Ryujinx.Graphics.Shader/CodeGen/Msl/Declarations.cs +++ b/src/Ryujinx.Graphics.Shader/CodeGen/Msl/Declarations.cs @@ -28,8 +28,8 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Msl * * Metal does not have a combined image sampler like sampler2D in GLSL, as a result we need to bind * an individual texture and a sampler object for each instance of a combined image sampler. - * As a result, the binding indices of straight up textures (i.e. without a sampler) start - * after the last sampler/texture pair. + * Therefore, he binding indices of straight up textures (i.e. without a sampler) must start + * after the last sampler/texture pair (n + Number of Pairs). * * Uniforms *