blob: 7ffb54c3b30e71aa176439b8972eeb5d5b42aabb [file] [log] [blame]
Subrata Banik7bc92f02023-08-03 10:11:28 +00001/* 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 */
10void fsp_convert_bmp_to_gop_blt(uint32_t *logo, uint32_t *logo_size,
11 uint32_t *blt_ptr, uint32_t *blt_size,
12 uint32_t *pixel_height, uint32_t *pixel_width);
13
14#endif /* FSP_GOP_BLT_H */