Searched refs:font (Results 1 – 5 of 5) sorted by relevance
/bootable/recovery/minui/ |
D | graphics.cpp | 61 int gr_measure(const GRFont* font, const char* s) { in gr_measure() argument 62 if (font == nullptr) { in gr_measure() 66 return font->char_width * strlen(s); in gr_measure() 69 int gr_font_size(const GRFont* font, int* x, int* y) { in gr_font_size() argument 70 if (font == nullptr) { in gr_font_size() 74 *x = font->char_width; in gr_font_size() 75 *y = font->char_height; in gr_font_size() 158 void gr_text(const GRFont* font, int x, int y, const char* s, bool bold) { in gr_text() argument 159 if (!font || !font->texture || (gr_current & alpha_mask) == 0) return; in gr_text() 161 if (font->texture->pixel_bytes != 1) { in gr_text() [all …]
|
/bootable/recovery/minui/include/minui/ |
D | minui.h | 131 void gr_text(const GRFont* font, int x, int y, const char* s, bool bold); 133 int gr_measure(const GRFont* font, const char* s); 135 int gr_font_size(const GRFont* font, int* x, int* y);
|
/bootable/recovery/fonts/ |
D | README | 1 The images in this directory were generated using the font
|
D | OFL.txt | 14 development of collaborative font projects, to support the font creation 65 Copyright Holder. This restriction only applies to the primary font name as
|
/bootable/recovery/tools/image_generator/ |
D | ImageGenerator.java | 37 import java.awt.font.TextAttribute;
|