blob: faa4ef976cd2354a8da81e8796d87bbd3a22e5cd [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
Stéphane Marchesinaf4423b2014-08-13 16:39:24 -070010void font_init(int scaling);
Haixia Shi95d680e2015-04-27 20:29:17 -070011void font_free();
Stéphane Marchesinf8807af2014-08-18 10:34:41 -070012void font_fillchar(uint32_t *dst_pointer, int dst_char_x, int dst_char_y,
Stéphane Marchesinae37e6c2014-08-08 18:19:40 -070013 int32_t pitch, uint32_t front_color, uint32_t back_color);
Stéphane Marchesinf8807af2014-08-18 10:34:41 -070014void font_render(uint32_t *dst_pointer, int dst_char_x, int dst_char_y,
Dominik Behr00003502014-08-15 16:42:37 -070015 int32_t pitch, uint32_t ch, uint32_t front_color,
Stéphane Marchesinae37e6c2014-08-08 18:19:40 -070016 uint32_t back_color);
Stéphane Marchesinf8807af2014-08-18 10:34:41 -070017void font_get_size(uint32_t *char_width, uint32_t *char_height);
Stéphane Marchesinae37e6c2014-08-08 18:19:40 -070018
19#endif