Home | History | Annotate | Download | only in DxeCapsuleLibFmp

Lines Matching refs:GopBlt

309   is passed in a GopBlt buffer will be allocated by this routine. If a GopBlt

316 @param[in, out] GopBlt Buffer containing GOP version of BmpImage.
317 @param[in, out] GopBltSize Size of GopBlt in bytes.
318 @param[out] PixelHeight Height of GopBlt/BmpImage in pixels
319 @param[out] PixelWidth Width of GopBlt/BmpImage in pixels
321 @retval EFI_SUCCESS GopBlt and GopBltSize are returned.
323 @retval EFI_BUFFER_TOO_SMALL The passed in GopBlt buffer is not big enough.
333 IN OUT VOID **GopBlt,
445 if (*GopBlt == NULL) {
447 // GopBlt is not allocated by caller.
450 *GopBlt = AllocatePool (*GopBltSize);
452 if (*GopBlt == NULL) {
457 // GopBlt has been allocated by caller.
471 BltBuffer = *GopBlt;
542 FreePool (*GopBlt);
543 *GopBlt = NULL;