Lines Matching +full:video +full:- +full:mode
6 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
11 http://opensource.org/licenses/bsd-license.php
29 Return the current video mode information.
32 @param HorizontalResolution Current video horizontal resolution in pixels
33 @param VerticalResolution Current video vertical resolution in pixels
34 @param ColorDepth Current video color depth in bits per pixel
35 @param RefreshRate Current video refresh rate in Hz.
37 @retval EFI_SUCCESS Mode information returned.
38 @retval EFI_NOT_STARTED Video display is not initialized. Call SetMode ()
54 Return the current video mode information.
57 @param HorizontalResolution Current video horizontal resolution in pixels
58 @param VerticalResolution Current video vertical resolution in pixels
59 @param ColorDepth Current video color depth in bits per pixel
60 @param RefreshRate Current video refresh rate in Hz.
62 @retval EFI_SUCCESS Mode information returned.
63 @retval EFI_NOT_STARTED Video display is not initialized. Call SetMode ()
102 <B>EfiUgaVideoFill</B> - Write data from the BltBuffer pixel (SourceX, SourceY)
103 directly to every pixel of the video display rectangle
107 <B>EfiUgaVideoToBltBuffer</B> - Read data from the video display rectangle
114 <B>EfiUgaBltBufferToVideo</B> - Write data from the BltBuffer rectangle
116 video display rectangle (DestinationX, DestinationY)
121 <B>EfiUgaVideoToVideo</B> - Copy from the video display rectangle (SourceX, SourceY)
122 (SourceX + Width, SourceY + Height) .to the video display rectangle
124 The BltBuffer and Delta are not used in this mode.
127 @param[in] This - Protocol instance pointer.
128 @param[in] BltBuffer - Buffer containing data to blit into video buffer. This
130 @param[in] BltOperation - Operation to perform on BlitBuffer and video memory
131 @param[in] SourceX - X coordinate of source for the BltBuffer.
132 @param[in] SourceY - Y coordinate of source for the BltBuffer.
133 @param[in] DestinationX - X coordinate of destination for the BltBuffer.
134 @param[in] DestinationY - Y coordinate of destination for the BltBuffer.
135 @param[in] Width - Width of rectangle in BltBuffer in pixels.
136 @param[in] Height - Hight of rectangle in BltBuffer in pixels.
137 @param[in] Delta - OPTIONAL
139 @retval EFI_SUCCESS - The Blt operation completed.
140 @retval EFI_INVALID_PARAMETER - BltOperation is not valid.
141 @retval EFI_DEVICE_ERROR - A hardware error occurred writing to the video buffer.
143 --*/