Lines Matching refs:width
187 int width = gr_get_width(progressBarEmpty); in draw_foreground_locked() local
190 int progress_x = (gr_fb_width() - width)/2; in draw_foreground_locked()
195 gr_fill(progress_x, progress_y, width, height); in draw_foreground_locked()
199 int pos = (int) (p * width); in draw_foreground_locked()
204 gr_blit(progressBarFill, width-pos, 0, pos, height, in draw_foreground_locked()
205 progress_x+width-pos, progress_y); in draw_foreground_locked()
207 if (pos < width-1) { in draw_foreground_locked()
208 gr_blit(progressBarEmpty, 0, 0, width-pos, height, progress_x, progress_y); in draw_foreground_locked()
215 if (pos < width-1) { in draw_foreground_locked()
216 gr_blit(progressBarEmpty, pos, 0, width-pos, height, in draw_foreground_locked()
598 int width = gr_get_width(progressBarEmpty); in SetProgress() local
599 float scale = width * progressScopeSize; in SetProgress()