diff options
Diffstat (limited to 'UefiMonitorTest/Graphics.c')
-rw-r--r-- | UefiMonitorTest/Graphics.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/UefiMonitorTest/Graphics.c b/UefiMonitorTest/Graphics.c index 7c76e37..2efbbdd 100644 --- a/UefiMonitorTest/Graphics.c +++ b/UefiMonitorTest/Graphics.c @@ -447,6 +447,22 @@ DrawChar ( } } +EFI_STATUS +GetFontParameters ( + IN GRAPHICS_CONTEXT *Graphics, + OUT UINTN *FontWidth, + OUT UINTN *FontHeight + ) +{ + ASSERT (FontWidth != NULL); + ASSERT (FontHeight != NULL); + + *FontWidth = SYSTEM8X16_FONT_WIDTH; + *FontHeight = SYSTEM8X16_FONT_HEIGHT; + + return EFI_SUCCESS; +} + /** Draws output based on a null-terminated Unicode format string and a arguments list to the screen |