Lines Matching refs:ux1
1475 gfx_term_drawrect(uint32_t ux1, uint32_t uy1, uint32_t ux2, uint32_t uy2) in gfx_term_drawrect() argument
1492 if (ux1 != 0) in gfx_term_drawrect()
1493 ux1--; in gfx_term_drawrect()
1500 tem_image_display(tems.ts_active, uy1, ux1, uy2 + 1, ux2 + 1); in gfx_term_drawrect()
1505 x1 = (ux1 + 1) * vf_width + tems.ts_p_offset.x; in gfx_term_drawrect()
1516 x1 = ux1 * vf_width + tems.ts_p_offset.x + xshift; in gfx_term_drawrect()
1526 x1 = ux1 * vf_width + tems.ts_p_offset.x + xshift; in gfx_term_drawrect()
1530 x2 = ux1 * vf_width + tems.ts_p_offset.x; in gfx_term_drawrect()
1537 x1 = ux1 * vf_width + tems.ts_p_offset.x; in gfx_term_drawrect()
1541 x2 = ux1 * vf_width + tems.ts_p_offset.x + xshift; in gfx_term_drawrect()
1568 gfx_fb_putimage(png_t *png, uint32_t ux1, uint32_t uy1, uint32_t ux2, in gfx_fb_putimage() argument
1596 if (ux1 > gfx_fb.framebuffer_common.framebuffer_width || in gfx_fb_putimage()
1622 ux2 = ux1 + png->width; in gfx_fb_putimage()
1627 ux2 = ux1 + (png->width * (uy2 - uy1)) / png->height; in gfx_fb_putimage()
1630 uy2 = uy1 + (png->height * (ux2 - ux1)) / png->width; in gfx_fb_putimage()
1640 fwidth = ux2 - ux1; in gfx_fb_putimage()
1650 if (ux1 == 0) { in gfx_fb_putimage()
1657 ux1 = ux2 - fwidth; in gfx_fb_putimage()
1670 if (ux1 >= ux2 || uy1 >= uy2) { in gfx_fb_putimage()
1684 png->width, png->height, fwidth, fheight, ux1, uy1); in gfx_fb_putimage()
1686 da.col = ux1; in gfx_fb_putimage()
1703 gfx_fb_drawrect(ux1, uy1, ux2, uy2, 0); in gfx_fb_putimage()