xref: /aosp_15_r20/external/coreboot/src/drivers/intel/fsp2_0/include/fsp/fsp_gop_blt.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef FSP_GOP_BLT_H
4 #define FSP_GOP_BLT_H
5 
6 #include <efi/efi_datatype.h>
7 #include <types.h>
8 
9 /* Convert a *.BMP graphics image to a GOP blt buffer */
10 void fsp_convert_bmp_to_gop_blt(efi_uintn_t *logo, uint32_t *logo_size,
11 	efi_uintn_t *blt_ptr, efi_uintn_t *blt_size,
12 	uint32_t *pixel_height, uint32_t *pixel_width);
13 
14 #endif	/* FSP_GOP_BLT_H */
15