From e26e9368e13fd001a5226074bd1dcb4cf6f37883 Mon Sep 17 00:00:00 2001 From: Piplup Date: Thu, 23 May 2024 14:13:35 +0100 Subject: [PATCH] forgot to update the note --- src/Ryujinx.Graphics.Vulkan/PipelineState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.Graphics.Vulkan/PipelineState.cs b/src/Ryujinx.Graphics.Vulkan/PipelineState.cs index 2734f1e779..535c64f77d 100644 --- a/src/Ryujinx.Graphics.Vulkan/PipelineState.cs +++ b/src/Ryujinx.Graphics.Vulkan/PipelineState.cs @@ -560,7 +560,7 @@ namespace Ryujinx.Graphics.Vulkan } } - // AMD has a bug where it enables logical operations even for float formats, + // AMD and Intel has a bug where it enables logical operations even for float formats, // so we need to force disable them here. bool logicOpEnable = LogicOpEnable && (gd.Vendor != Vendor.Amd && gd.Vendor != Vendor.Intel || Internal.LogicOpsAllowed);