From nobody Tue May 21 15:26:49 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) client-ip=66.175.222.108; envelope-from=bounce+27952+98148+1787277+3901457@groups.io; helo=mail02.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+98148+1787277+3901457@groups.io ARC-Seal: i=1; a=rsa-sha256; t=1673114570; cv=none; d=zohomail.com; s=zohoarc; b=Sxgi7B5h49FvGCTFJZKoWx0LvHL7hXWuCgqegrzFs1uI/8JRZhGC8g3QyeGQWuyDD33edBTGDD2LB5YGwW0qcNo+do5/9Vdz40Pr3h216Xowvi7ik9xaFg9X0rhTjYKGsXunPx0bX17WfoMvyZeFjfJohkrNX49NqNxzdn9B7dc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1673114570; h=Content-Transfer-Encoding:Date:From:List-Subscribe:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:Sender:Subject:To; bh=PqTf3NFKlFQJeuBjElhCNT2U7WFLBcr5IYFj+GfLsyI=; b=cOV7Q5dgNPTP5cWzGk1UitUJ1b2yTkXS1/IXvVYVPWE7N+6Iqj/DxfSa6Eyp3Td6YGVeg1/V18cAd/fXxI8fdTO2rbHVxAn875ux9CDlxTgx1piPoC+HJJxNUH0vCq9a2nTtu1RWDIbDRFueBvaY/KLOUnR8tcJsVi4/vfuuDao= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass; spf=pass (zohomail.com: domain of groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce+27952+98148+1787277+3901457@groups.io Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by mx.zohomail.com with SMTPS id 16731145702601010.8959325023897; Sat, 7 Jan 2023 10:02:50 -0800 (PST) Return-Path: X-Received: by 127.0.0.2 with SMTP id 8e0EYY1788612xSxhCZ9vKp3; Sat, 07 Jan 2023 10:02:49 -0800 X-Received: from a3.inai.de (a3.inai.de [88.198.85.195]) by mx.groups.io with SMTP id smtpd.web10.21980.1673104573699647833 for ; Sat, 07 Jan 2023 07:16:14 -0800 X-Received: by a3.inai.de (Postfix, from userid 65534) id 0249E58714D1F; Sat, 7 Jan 2023 16:16:11 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.4.5 (2021-03-20) on a3.inai.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.5 X-Received: from a4.inai.de (a4.inai.de [IPv6:2a01:4f8:10b:45d8::f8]) by a3.inai.de (Postfix) with ESMTP id 2613B587332C6 for ; Sat, 7 Jan 2023 16:16:10 +0100 (CET) From: "Jan Engelhardt" To: devel@edk2.groups.io Subject: [edk2-devel] [PATCH] MdeModulePkg: remove garbage pixels in LaffStd glyphs Date: Sat, 7 Jan 2023 16:16:10 +0100 Message-Id: <20230107151610.18728-1-jengelh@inai.de> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,jengelh@inai.de X-Gm-Message-State: dnLZpuvI4psn8jt5KS6Xv89dx1787277AA= Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1673114569; bh=uu+TfbJeMcW0jwzegS/3EtzG8pembTT0hJ+mIEaHjqA=; h=Date:From:Reply-To:Subject:To; b=mBCsw3ohxV1nZmX9A3Kr+ABht5LO2HlLD7niw3YG9aky7BoIGUPa+1mpV4k5VOHdH7J Pm4RTuQSJJQ2UPYjCu4muH17qJqBm5iVhBFrNUpCnKIPV+k0OWvTHbTmB3Il8S9OdioxM NajWHXMmKKvcAtYd5TaFxZn5o95dDJB4WO8= X-ZohoMail-DKIM: pass (identity @groups.io) X-ZM-MESSAGEID: 1673114571271100001 Content-Type: text/plain; charset="utf-8" Signed-off-by: Jan Engelhardt Reviewed-by: Michael D Kinney --- This was previously posted to https://github.com/tianocore/edk2/pull/3330 where you can see a visual representation of what is being corrected. .../Universal/Console/GraphicsConsoleDxe/LaffStd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/LaffStd.c b/= MdeModulePkg/Universal/Console/GraphicsConsoleDxe/LaffStd.c index 1f7fe4cda8..99d909592c 100644 --- a/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/LaffStd.c +++ b/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/LaffStd.c @@ -213,13 +213,13 @@ EFI_NARROW_GLYPH gUsStdNarrowGlyphData[] =3D { }, { 0x00a3, 0x00, { 0x00, 0x00, 0x00, = 0x38, 0x6C, 0x64, 0x60, 0x60, 0xF0, 0x60, 0x60, 0x60, 0x60, 0xE6, 0xFC, 0x0= 0, 0x00, 0x00, 0x00 } }, - { 0x00a4, 0x00, { 0x00, 0x00, 0x18, = 0x00, 0x00, 0x00, 0xC6, 0x7C, 0xC6, 0xC6, 0xC6, 0xC6, 0x7C, 0xC6, 0x00, 0x0= 0, 0x00, 0x00, 0x00 } + { 0x00a4, 0x00, { 0x00, 0x00, 0x00, = 0x00, 0x00, 0x00, 0xC6, 0x7C, 0xC6, 0xC6, 0xC6, 0xC6, 0x7C, 0xC6, 0x00, 0x0= 0, 0x00, 0x00, 0x00 } }, { 0x00a5, 0x00, { 0x00, 0x00, 0x00, = 0x66, 0x66, 0x66, 0x3C, 0x18, 0x7E, 0x18, 0x7E, 0x18, 0x18, 0x18, 0x18, 0x0= 0, 0x00, 0x00, 0x00 } }, { 0x00a6, 0x00, { 0x00, 0x00, 0x00, = 0x18, 0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x18, 0x0= 0, 0x00, 0x00, 0x00 } }, - { 0x00a7, 0x00, { 0x00, 0x00, 0x18, = 0x7C, 0xC6, 0x60, 0x38, 0x6C, 0xC6, 0xC6, 0x6C, 0x38, 0x0C, 0xC6, 0x7C, 0x0= 0, 0x00, 0x00, 0x00 } + { 0x00a7, 0x00, { 0x00, 0x00, 0x00, = 0x7C, 0xC6, 0x60, 0x38, 0x6C, 0xC6, 0xC6, 0x6C, 0x38, 0x0C, 0xC6, 0x7C, 0x0= 0, 0x00, 0x00, 0x00 } }, { 0x00a8, 0x00, { 0x00, 0x00, 0x00, = 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0= 0, 0x00, 0x00, 0x00 } }, @@ -315,7 +315,7 @@ EFI_NARROW_GLYPH gUsStdNarrowGlyphData[] =3D { }, { 0x00d6, 0x00, { 0xCC, 0xCC, 0x00, = 0x00, 0x7C, 0xC6, 0xC6, 0xC6, 0xC6, 0xC6, 0xC6, 0xC6, 0xC6, 0xC6, 0x7C, 0x0= 0, 0x00, 0x00, 0x00 } }, - { 0x00d7, 0x00, { 0x10, 0x28, 0x00, = 0x00, 0x00, 0x00, 0x00, 0xC6, 0x6C, 0x38, 0x38, 0x6C, 0x6C, 0xC6, 0x00, 0x0= 0, 0x00, 0x00, 0x00 } + { 0x00d7, 0x00, { 0x00, 0x00, 0x00, = 0x00, 0x00, 0x00, 0x00, 0xC6, 0x6C, 0x38, 0x38, 0x6C, 0x6C, 0xC6, 0x00, 0x0= 0, 0x00, 0x00, 0x00 } }, { 0x00d8, 0x00, { 0x00, 0x00, 0x00, = 0x7C, 0xCE, 0xCE, 0xDE, 0xD6, 0xD6, 0xD6, 0xD6, 0xF6, 0xE6, 0xE6, 0x7C, 0x4= 0, 0x00, 0x00, 0x00 } }, @@ -329,11 +329,11 @@ EFI_NARROW_GLYPH gUsStdNarrowGlyphData[] =3D { }, { 0x00dd, 0x00, { 0x18, 0x30, 0x00, = 0x00, 0x66, 0x66, 0x66, 0x66, 0x66, 0x3C, 0x18, 0x18, 0x18, 0x18, 0x3C, 0x0= 0, 0x00, 0x00, 0x00 } }, - { 0x00de, 0x00, { 0x00, 0x00, 0x10, = 0x00, 0xF0, 0x60, 0x60, 0x7C, 0x66, 0x66, 0x66, 0x66, 0x7C, 0x60, 0xF0, 0x0= 0, 0x00, 0x00, 0x00 } + { 0x00de, 0x00, { 0x00, 0x00, 0x00, = 0x00, 0xF0, 0x60, 0x60, 0x7C, 0x66, 0x66, 0x66, 0x66, 0x7C, 0x60, 0xF0, 0x0= 0, 0x00, 0x00, 0x00 } }, { 0x00df, 0x00, { 0x00, 0x00, 0x00, = 0x78, 0xCC, 0xCC, 0xCC, 0xCC, 0xD8, 0xCC, 0xC6, 0xC6, 0xC6, 0xC6, 0xCC, 0x0= 0, 0x00, 0x00, 0x00 } }, - { 0x00e0, 0x00, { 0x00, 0x30, 0x30, = 0x60, 0x30, 0x18, 0x00, 0x78, 0x0C, 0x0C, 0x7C, 0xCC, 0xCC, 0xCC, 0x76, 0x0= 0, 0x00, 0x00, 0x00 } + { 0x00e0, 0x00, { 0x00, 0x00, 0x00, = 0x60, 0x30, 0x18, 0x00, 0x78, 0x0C, 0x0C, 0x7C, 0xCC, 0xCC, 0xCC, 0x76, 0x0= 0, 0x00, 0x00, 0x00 } }, { 0x00e1, 0x00, { 0x00, 0x00, 0x00, = 0x18, 0x30, 0x60, 0x00, 0x78, 0x0C, 0x0C, 0x7C, 0xCC, 0xCC, 0xCC, 0x76, 0x0= 0, 0x00, 0x00, 0x00 } }, --=20 2.39.0 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#98148): https://edk2.groups.io/g/devel/message/98148 Mute This Topic: https://groups.io/mt/96117470/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-