Searched defs:width (Results 1 - 5 of 5) sorted by relevance

/bootable/recovery/minui/
H A Dfont_10x18.h2 unsigned width; member in struct:__anon17
8 .width = 960,
H A Dminui.h29 int width; member in struct:__anon19
H A Dresources.c48 png_uint_32* width, png_uint_32* height, png_byte* channels) {
94 png_get_IHDR(*png_ptr, *info_ptr, width, height, &bit_depth,
140 static gr_surface init_display_surface(png_uint_32 width, png_uint_32 height) { argument
143 surface = malloc_surface(width * height * 4);
146 surface->width = width;
148 surface->row_bytes = width * 4;
162 // 'width' is the number of pixels in the row.
165 int channels, int width) {
173 for (x = 0; x < width;
47 open_png(const char* name, png_structp* png_ptr, png_infop* info_ptr, png_uint_32* width, png_uint_32* height, png_byte* channels) argument
163 transform_rgb_to_draw(unsigned char* input_row, unsigned char* output_row, int channels, int width) argument
204 png_uint_32 width, height; local
239 png_uint_32 width, height; local
313 png_uint_32 width, height; local
375 png_uint_32 width, height; local
[all...]
H A Dgraphics.c61 return x < 0 || x >= gr_draw->width || y < 0 || y >= gr_draw->height;
77 int width, int height)
83 for (i = 0; i < width; ++i) {
151 if (outside(x, y) || outside(x+icon->width-1, y+icon->height-1)) return;
158 icon->width, icon->height);
178 for (x = 0; x < gr_draw->width; ++x) {
184 px += gr_draw->row_bytes - (gr_draw->width * gr_draw->pixel_bytes);
258 return surface->width;
277 gr_font->cwidth = gr_font->texture->width / 96;
284 gr_font->texture->width
75 text_blend(unsigned char* src_p, int src_row_bytes, unsigned char* dst_p, int dst_row_bytes, int width, int height) argument
[all...]
/bootable/recovery/
H A Dscreen_ui.cpp146 int width = gr_get_width(progressBarEmpty); local
149 int dx = (gr_fb_width() - width)/2;
154 gr_fill(dx, dy, width, height);
158 int pos = (int) (p * width);
163 gr_blit(progressBarFill, width-pos, 0, pos, height, dx+width-pos, dy);
165 if (pos < width-1) {
166 gr_blit(progressBarEmpty, 0, 0, width-pos, height, dx, dy);
173 if (pos < width-1) {
174 gr_blit(progressBarEmpty, pos, 0, width
453 int width = gr_get_width(progressBarEmpty); local
[all...]

Completed in 122 milliseconds