Performance and size optimised.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7280 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
gikidy
2009-01-15 03:11:09 +00:00
parent b364eeb012
commit 649e72d617
3 changed files with 6 additions and 30 deletions

View File

@@ -14,6 +14,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#include "GraphicsConsole.h"
EFI_NARROW_GLYPH gUsStdNarrowGlyphData[] = {
//
// Unicode glyphs from 0x20 to 0x7e are the same as ASCII characters 0x20 to 0x7e
@@ -270,19 +272,6 @@ EFI_NARROW_GLYPH gUsStdNarrowGlyphData[] = {
{ 0x0000, 0x00, {0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00}} //EOL
};
/**
Returns available Unicode glyphs narrow fonts(8*19 pixels) size.
// Get available Unicode glyphs narrow fonts(8*19 pixels) size.
UINT32 mNarrowFontSize = sizeof (gUsStdNarrowGlyphData);
@return Narrow font size.
**/
UINT32
ReturnNarrowFontSize (
VOID
)
{
//
// I need the size of this outside of this file, so here is a stub function to do that for me
//
return sizeof (gUsStdNarrowGlyphData);
}