Home
last modified time | relevance | path

Searched refs:posx (Results 1 – 4 of 4) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/gem/
DSDL_gemevents.c330 int posx, posy; in do_mouse() local
333 posx = mx - x2; in do_mouse()
334 if (posx<0) posx = 0; in do_mouse()
335 if (posx>w2) posx = w2-1; in do_mouse()
340 SDL_PrivateMouseMotion(0, 0, posx, posy); in do_mouse()
/external/pdfium/core/src/fxge/win32/
Dfx_win32_device.cpp673 FX_FLOAT posx = pPoints[i].m_PointX, posy = pPoints[i].m_PointY; in _SetPathToDC() local
675 pMatrix->Transform(posx, posy); in _SetPathToDC()
677 int screen_x = FXSYS_round(posx), screen_y = FXSYS_round(posy); in _SetPathToDC()
690 posx = pPoints[i + 1].m_PointX; in _SetPathToDC()
693 pMatrix->Transform(posx, posy); in _SetPathToDC()
695 lppt[1].x = FXSYS_round(posx); in _SetPathToDC()
697 posx = pPoints[i + 2].m_PointX; in _SetPathToDC()
700 pMatrix->Transform(posx, posy); in _SetPathToDC()
702 lppt[2].x = FXSYS_round(posx); in _SetPathToDC()
/external/qemu/include/ui/
Dconsole.h226 void vga_fill_rect (DisplayState *ds, int posx, int posy,
/external/qemu/ui/
Dconsole.c272 void vga_fill_rect(DisplayState *ds, int posx, int posy, in vga_fill_rect() argument
280 ds_get_linesize(ds) * posy + bpp * posx; in vga_fill_rect()