summaryrefslogtreecommitdiff
path: root/firmware/lib/include/bmpblk_font.h
blob: b79274cc799912d6d6af3c5b43f54f26b64025be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 *
 * This describes the internal format used to pack a set of character glpyhs so
 * we can render strings by drawing one character at a time.
 *
 * The format is this:
 *
 *   +-------------------------+
 *   | FontArrayHeader         |
 *   +-------------------------+
 *   | FontArrayEntryHeader[0] |
 *   +-------------------------+
 *   | raw image data[0]       |
 *   +-------------------------+
 *   | FontArrayEntryHeader[1] |
 *   +-------------------------+
 *   | raw image data[1]       |
 *   +-------------------------+
 *   | FontArrayEntryHeader[2] |
 *   +-------------------------+
 *   | raw image data[2]       |
 *   +-------------------------+
 *      ...
 *   +-------------------------+
 *   | FontArrayEntryHeader[n] |
 *   +-------------------------+
 *   | raw image data[n]       |
 *   +-------------------------+
 *
 * The FontArrayHeader describes how many characters will be encoded.
 * Each character encoding consists of a FontArrayEntryHeader followed
 * immediately by the raw image data for that character.
 */

#ifndef VBOOT_REFERENCE_BMPBLK_FONT_H_
#define VBOOT_REFERENCE_BMPBLK_FONT_H_

#include "bmpblk_header.h"

__pragma(pack(push, 1))  /* Support packing for MSVC. */

#define FONT_SIGNATURE      "FONT"
#define FONT_SIGNATURE_SIZE 4

typedef struct FontArrayHeader {
	uint8_t  signature[FONT_SIGNATURE_SIZE];
	uint32_t num_entries;  /* Number of chars encoded here. */
} __attribute__((packed)) FontArrayHeader;

typedef struct FontArrayEntryHeader {
	uint32_t ascii;  /* What to show. Could even be UTF? */
	ImageInfo info;  /* Describes the bitmap. */

	/*
	 * The image to use follows immediately, NOT compressed. It's
	 * uncompressed because each glyph is only a few hundred bytes, but
	 * they have much in common (colormaps, for example). When we add the
	 * whole font blob to the bmpblk, it will be compressed as a single
	 * item there.
	 */
} __attribute__((packed)) FontArrayEntryHeader;

__pragma(pack(pop)) /* Support packing for MSVC. */

#endif  /* VBOOT_REFERENCE_BMPBLK_FONT_H_ */