blob: 186c0d2469957405707a086b735684c0aabe8bd2 [file] [log] [blame]
Stéphane Marchesinae37e6c2014-08-08 18:19:40 -07001/*
2 * Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef FONT_H
8#define FONT_H
9
10void font_fillchar(uint32_t * dst_pointer, int dst_char_x, int dst_char_y,
11 int32_t pitch, uint32_t front_color, uint32_t back_color);
12void font_render(uint32_t * dst_pointer, int dst_char_x, int dst_char_y,
13 int32_t pitch, uint8_t ch, uint32_t front_color,
14 uint32_t back_color);
15void font_get_size(uint32_t * char_width, uint32_t * char_height);
16
17#endif