summaryrefslogtreecommitdiff
path: root/IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/Fonts.c
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2007-07-16 03:28:26 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2007-07-16 03:28:26 +0000
commitececc2eb4b589cc55eabcabbafbd067ff3432df0 (patch)
treeb0180c23dfe016c8fc61ccff49046f9323754e32 /IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/Fonts.c
parent7658d609a376be0fba1c2ba3496e016e55f7aa3a (diff)
downloadedk2-platforms-ececc2eb4b589cc55eabcabbafbd067ff3432df0.tar.xz
Modules clean up.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3242 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/Fonts.c')
-rw-r--r--IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/Fonts.c25
1 files changed, 10 insertions, 15 deletions
diff --git a/IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/Fonts.c b/IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/Fonts.c
index 2c3980da63..65a19e043a 100644
--- a/IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/Fonts.c
+++ b/IntelFrameworkModulePkg/Universal/HiiDataBaseDxe/Fonts.c
@@ -1,13 +1,13 @@
/*++
-Copyright (c) 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
-are licensed and made available under the terms and conditions of the BSD License
-which accompanies this distribution. The full text of the license may be found at
+Copyright (c) 2006, Intel Corporation
+All rights reserved. This program and the accompanying materials
+are licensed and made available under the terms and conditions of the BSD License
+which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
-
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Module Name:
@@ -20,11 +20,6 @@ Abstract:
--*/
-//
-// Include common header file for this module.
-//
-#include "CommonHeader.h"
-
#include "HiiDatabase.h"
//
@@ -85,7 +80,7 @@ HiiGetGlyph (
/*++
Routine Description:
- Translates a Unicode character into the corresponding font glyph.
+ Translates a Unicode character into the corresponding font glyph.
If the Source was pointing to a non-spacing character, the next Source[*Index]
character will be parsed and OR'd to the GlyphBuffer until a spacing character
is found in the Source. Since non-spacing characters are considered to be the
@@ -98,7 +93,7 @@ Routine Description:
Arguments:
-Returns:
+Returns:
--*/
{
@@ -222,7 +217,7 @@ Returns:
Attributes = GlobalData->NarrowGlyphs[Character].Attributes & EFI_GLYPH_NON_SPACING;
} else {
for (Value = 0; Value != Count; Value++) {
- *GlyphBuffer[Location + Value] = (UINT8) (*GlyphBuffer[Location + Value] |
+ *GlyphBuffer[Location + Value] = (UINT8) (*GlyphBuffer[Location + Value] |
GlobalData->WideGlyphs[Character].GlyphCol1[Value]);
*GlyphBuffer[Location + Value + Count] = (UINT8) (*GlyphBuffer[Location + Value + Count] |
GlobalData->WideGlyphs[Character].GlyphCol2[Value]);