2015-07-30 01:03:52 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the libpayload project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 Google, Inc.
|
|
|
|
*/
|
|
|
|
|
2015-08-03 19:51:38 +02:00
|
|
|
#include <libpayload.h>
|
|
|
|
#include <arch/types.h>
|
|
|
|
#include <stddef.h>
|
2015-07-30 01:03:52 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* API error codes
|
|
|
|
*/
|
2015-08-26 23:47:06 +02:00
|
|
|
#define CBGFX_SUCCESS 0
|
2015-07-30 01:03:52 +02:00
|
|
|
/* unknown error */
|
2015-08-26 23:47:06 +02:00
|
|
|
#define CBGFX_ERROR_UNKNOWN 1
|
2015-07-30 01:03:52 +02:00
|
|
|
/* failed to initialize cbgfx library */
|
2015-08-26 23:47:06 +02:00
|
|
|
#define CBGFX_ERROR_INIT 2
|
2015-09-28 22:14:43 +02:00
|
|
|
/* drawing beyond screen or canvas boundary */
|
|
|
|
#define CBGFX_ERROR_BOUNDARY 3
|
|
|
|
/* invalid parameter */
|
|
|
|
#define CBGFX_ERROR_INVALID_PARAMETER 4
|
2015-08-03 19:51:38 +02:00
|
|
|
/* bitmap error: signature mismatch */
|
|
|
|
#define CBGFX_ERROR_BITMAP_SIGNATURE 0x10
|
|
|
|
/* bitmap error: unsupported format */
|
|
|
|
#define CBGFX_ERROR_BITMAP_FORMAT 0x11
|
|
|
|
/* bitmap error: invalid data */
|
|
|
|
#define CBGFX_ERROR_BITMAP_DATA 0x12
|
|
|
|
/* bitmap error: scaling out of range */
|
|
|
|
#define CBGFX_ERROR_SCALE_OUT_OF_RANGE 0x13
|
2015-07-30 01:03:52 +02:00
|
|
|
|
2015-08-26 23:47:06 +02:00
|
|
|
struct fraction {
|
|
|
|
int32_t nume;
|
|
|
|
int32_t deno;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct scale {
|
|
|
|
struct fraction x;
|
|
|
|
struct fraction y;
|
|
|
|
};
|
|
|
|
|
2015-07-30 01:03:52 +02:00
|
|
|
struct vector {
|
|
|
|
union {
|
2015-08-26 23:47:06 +02:00
|
|
|
int32_t x;
|
|
|
|
int32_t width;
|
2015-07-30 01:03:52 +02:00
|
|
|
};
|
|
|
|
union {
|
2015-08-26 23:47:06 +02:00
|
|
|
int32_t y;
|
|
|
|
int32_t height;
|
2015-07-30 01:03:52 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-08-26 23:47:06 +02:00
|
|
|
struct rect {
|
|
|
|
struct vector offset;
|
|
|
|
struct vector size;
|
|
|
|
};
|
|
|
|
|
2015-07-30 01:03:52 +02:00
|
|
|
struct rgb_color {
|
|
|
|
uint8_t red;
|
|
|
|
uint8_t green;
|
|
|
|
uint8_t blue;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Resolution of scale parameters used to describe height, width, coordinate,
|
|
|
|
* etc. relative to the canvas. For example, if it's 100, scales range from 0 to
|
|
|
|
* 100%.
|
|
|
|
*/
|
|
|
|
#define CANVAS_SCALE 100
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The coordinate system is expected to have (0, 0) at top left corner with
|
|
|
|
* y values increasing towards bottom of screen.
|
|
|
|
*/
|
|
|
|
|
2015-09-28 22:14:43 +02:00
|
|
|
/**
|
2015-09-24 21:42:17 +02:00
|
|
|
* Load a bitmap file from cbfs
|
|
|
|
*
|
|
|
|
* Memory is allocated automatically and it's caller's responsibility to free it
|
|
|
|
*
|
|
|
|
* name: name of the bitmap file
|
|
|
|
* size: (OUT) size of the image
|
|
|
|
*
|
|
|
|
* return: pointer to the image data in memory or NULL on error
|
|
|
|
*/
|
|
|
|
void *load_bitmap(const char *name, size_t *size);
|
|
|
|
|
2015-09-28 22:14:43 +02:00
|
|
|
/**
|
2015-07-30 01:03:52 +02:00
|
|
|
* draw a box filled with a color on screen
|
|
|
|
*
|
2015-08-26 23:47:06 +02:00
|
|
|
* box: .offset points the coordinate of the top left corner and .size specifies
|
|
|
|
* width and height of the box. Both are relative to the canvas size thus scale
|
|
|
|
* from 0 to CANVAS_SCALE (0 to 100%).
|
2015-07-30 01:03:52 +02:00
|
|
|
* rgb: RGB color of the box.
|
|
|
|
*
|
|
|
|
* return: CBGFX_* error codes
|
|
|
|
*/
|
2015-08-26 23:47:06 +02:00
|
|
|
int draw_box(const struct rect *box, const struct rgb_color *rgb);
|
2015-07-30 01:03:52 +02:00
|
|
|
|
2015-09-28 22:14:43 +02:00
|
|
|
/**
|
2015-07-30 01:03:52 +02:00
|
|
|
* Clear the canvas
|
|
|
|
*/
|
2015-09-28 22:14:43 +02:00
|
|
|
int clear_canvas(const struct rgb_color *rgb);
|
2015-08-03 19:51:38 +02:00
|
|
|
|
2015-09-28 22:14:43 +02:00
|
|
|
/**
|
2015-09-22 02:17:25 +02:00
|
|
|
* Clear the screen
|
|
|
|
*/
|
2015-09-28 22:14:43 +02:00
|
|
|
int clear_screen(const struct rgb_color *rgb);
|
2015-09-22 02:17:25 +02:00
|
|
|
|
2015-09-28 22:14:43 +02:00
|
|
|
/**
|
|
|
|
* Draw a bitmap image using position and size relative to the canvas
|
2015-08-03 19:51:38 +02:00
|
|
|
*
|
2015-09-28 22:14:43 +02:00
|
|
|
* @param[in] bitmap Pointer to the bitmap data, starting from file header
|
|
|
|
* @param[in] size Size of the bitmap data
|
|
|
|
* @param[in] pos_rel Coordinate of the pivot relative to the canvas
|
|
|
|
* @param[in] pivot Pivot position. Use PIVOT_H_* and PIVOT_V_* flags.
|
|
|
|
* @param[in] dim_rel Width and height of the image relative to the canvas
|
|
|
|
* width and height. They must not exceed 1 (=100%). If one
|
|
|
|
* is zero, it's derived from the other to keep the aspect
|
|
|
|
* ratio.
|
2015-08-03 19:51:38 +02:00
|
|
|
*
|
2015-09-28 22:14:43 +02:00
|
|
|
* @return CBGFX_* error codes
|
|
|
|
*
|
|
|
|
* 'Pivot' is a point of the image based on which the image is positioned.
|
|
|
|
* For example, if a pivot is set to PIVOT_H_CENTER|PIVOT_V_CENTER, the image is
|
|
|
|
* positioned so that pos_rel matches the center of the image.
|
2015-08-03 19:51:38 +02:00
|
|
|
*/
|
2015-09-28 22:14:43 +02:00
|
|
|
int draw_bitmap(const void *bitmap, size_t size,
|
|
|
|
const struct scale *pos_rel, uint8_t pivot,
|
|
|
|
const struct scale *dim_rel);
|
|
|
|
|
|
|
|
/* Pivot flags. See the draw_bitmap description. */
|
|
|
|
#define PIVOT_H_LEFT (1 << 0)
|
|
|
|
#define PIVOT_H_CENTER (1 << 1)
|
|
|
|
#define PIVOT_H_RIGHT (1 << 2)
|
|
|
|
#define PIVOT_V_TOP (1 << 3)
|
|
|
|
#define PIVOT_V_CENTER (1 << 4)
|
|
|
|
#define PIVOT_V_BOTTOM (1 << 5)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw a bitmap image at screen coordinate with no scaling
|
|
|
|
*
|
|
|
|
* @param[in] bitmap Pointer to the bitmap data, starting from file header
|
|
|
|
* @param[in] size Size of the bitmap data
|
|
|
|
* @param[in] pos Screen coordinate of upper left corner of the image.
|
|
|
|
*
|
|
|
|
* @return CBGFX_* error codes
|
|
|
|
*/
|
|
|
|
int draw_bitmap_direct(const void *bitmap, size_t size,
|
|
|
|
const struct vector *pos);
|
|
|
|
|