summaryrefslogtreecommitdiff
path: root/MdePkg/Include/Library/GraphicsLib.h
diff options
context:
space:
mode:
authorvanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-20 03:08:28 +0000
committervanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-20 03:08:28 +0000
commitb31547205f3f46a563249fdf300fe67ee915a3a1 (patch)
tree413a5fb124fffb4a40740709a2f8791681f8faef /MdePkg/Include/Library/GraphicsLib.h
parentb10a05d6c3024ec78935353f157df9e7411dfe06 (diff)
downloadedk2-b31547205f3f46a563249fdf300fe67ee915a3a1.zip
edk2-b31547205f3f46a563249fdf300fe67ee915a3a1.tar.gz
edk2-b31547205f3f46a563249fdf300fe67ee915a3a1.tar.bz2
1.Removed PrintXY from Graphics Library.
2.Added PrintXY and AsciiPrintXY in Uefi Library 3.Moved PcdUgaConsumeSupport from MdeModulePkg to MdePkg. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6642 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Library/GraphicsLib.h')
-rw-r--r--MdePkg/Include/Library/GraphicsLib.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/MdePkg/Include/Library/GraphicsLib.h b/MdePkg/Include/Library/GraphicsLib.h
index 37dc557..c54dcf8 100644
--- a/MdePkg/Include/Library/GraphicsLib.h
+++ b/MdePkg/Include/Library/GraphicsLib.h
@@ -17,9 +17,6 @@
#ifndef __EFI_GRAPHICS_LIB_H__
#define __EFI_GRAPHICS_LIB_H__
-#include <Protocol/GraphicsOutput.h>
-
-
/**
Return the graphics image file named FileNameGuid into Image and return it's
size in ImageSize. All Firmware Volumes (FV) in the system are searched for the
@@ -146,32 +143,4 @@ LockKeyboards (
IN CHAR16 *Password
);
-
-/**
- Print Unicode string to graphics screen at the given X,Y coordinates of the graphics screen.
- see definition of Print to find rules for constructing Fmt.
-
- @param[in] X Row to start printing at
- @param[in] Y Column to start printing at
- @param[in] ForeGround Foreground color
- @param[in] BackGround background color
- @param[in] Fmt Print format sting. See definition of Print
- @param ... Variable argument list whose contents are accessed based on
- the format string specified by Format.
-
- @return Number of Characters printed.
-
-**/
-UINTN
-EFIAPI
-PrintXY (
- IN UINTN X,
- IN UINTN Y,
- IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL
- IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL
- IN CHAR16 *Fmt,
- ...
- );
-
-
#endif