Lines Matching refs:y

43 void VrRecoveryUI::DrawTextIcon(int x, int y, const GRSurface* surface) const {  in DrawTextIcon()  argument
44 gr_texticon(x + stereo_offset_, y, surface); in DrawTextIcon()
45 gr_texticon(x - stereo_offset_ + ScreenWidth(), y, surface); in DrawTextIcon()
48 int VrRecoveryUI::DrawTextLine(int x, int y, const std::string& line, bool bold) const { in DrawTextLine() argument
49 gr_text(gr_sys_font(), x + stereo_offset_, y, line.c_str(), bold); in DrawTextLine()
50 gr_text(gr_sys_font(), x - stereo_offset_ + ScreenWidth(), y, line.c_str(), bold); in DrawTextLine()
54 int VrRecoveryUI::DrawHorizontalRule(int y) const { in DrawHorizontalRule()
55 y += 4; in DrawHorizontalRule()
56 gr_fill(margin_width_ + stereo_offset_, y, ScreenWidth() - margin_width_ + stereo_offset_, y + 2); in DrawHorizontalRule()
57 gr_fill(ScreenWidth() + margin_width_ - stereo_offset_, y, in DrawHorizontalRule()
58 gr_fb_width() - margin_width_ - stereo_offset_, y + 2); in DrawHorizontalRule()
59 return y + 4; in DrawHorizontalRule()
62 void VrRecoveryUI::DrawHighlightBar(int /* x */, int y, int /* width */, int height) const { in DrawHighlightBar() argument
63 gr_fill(margin_width_ + stereo_offset_, y, ScreenWidth() - margin_width_ + stereo_offset_, in DrawHighlightBar()
64 y + height); in DrawHighlightBar()
65 gr_fill(ScreenWidth() + margin_width_ - stereo_offset_, y, in DrawHighlightBar()
66 gr_fb_width() - margin_width_ - stereo_offset_, y + height); in DrawHighlightBar()
69 void VrRecoveryUI::DrawFill(int x, int y, int w, int h) const { in DrawFill() argument
70 gr_fill(x + stereo_offset_, y, w, h); in DrawFill()
71 gr_fill(x - stereo_offset_ + ScreenWidth(), y, w, h); in DrawFill()