| /xsrc/external/mit/xorg-server/dist/dix/ |
| enterleave.h | 40 extern void EnterLeaveEvent(DeviceIntPtr mouse, 44 extern void CoreEnterLeaveEvent(DeviceIntPtr mouse, 48 extern void DeviceEnterLeaveEvent(DeviceIntPtr mouse,
|
| inpututils.c | 765 event_get_corestate(DeviceIntPtr mouse, DeviceIntPtr kbd) 773 corestate |= (mouse && mouse->button) ? (mouse->button->state) : 0; 774 corestate |= (mouse && mouse->touch) ? (mouse->touch->state) : 0; 780 event_set_state(DeviceIntPtr mouse, DeviceIntPtr kbd, DeviceEvent *event) 784 for (i = 0; mouse && mouse->button && i < mouse->button->numButtons; i++ [all...] |
| events.c | 1516 UpdateTouchesForGrab(DeviceIntPtr mouse) 1520 if (!mouse->touch || mouse->deviceGrab.fromPassiveGrab) 1523 for (i = 0; i < mouse->touch->num_touches; i++) { 1524 TouchPointInfoPtr ti = mouse->touch->touches + i; 1526 GrabPtr grab = mouse->deviceGrab.grab; 1531 !xi2mask_isset(grab->xi2mask, mouse, XI_TouchBegin)) { 1562 UpdateGesturesForGrab(DeviceIntPtr mouse) 1564 if (!mouse->gesture || mouse->deviceGrab.fromPassiveGrab 1947 DeviceIntPtr mouse = NULL; local 4779 TryClientEvents(rClient(grab), mouse, &event, 1, mask, local 4872 TryClientEvents(rClient(grab), mouse, (xEvent *) event, 1, mask, 1, local 5411 DeviceIntPtr mouse = PickPointer(client); local 5908 DeviceIntPtr mouse = inputInfo.pointer; local [all...] |
| /xsrc/external/mit/xorg-server.old/dist/dix/ |
| enterleave.h | 50 DeviceIntPtr mouse, 61 extern void CoreEnterLeaveEvent(DeviceIntPtr mouse, 67 extern void DeviceEnterLeaveEvent(DeviceIntPtr mouse,
|
| events.c | 1435 * @param mouse The device to grab. 1441 ActivatePointerGrab(DeviceIntPtr mouse, GrabPtr grab, 1444 GrabInfoPtr grabinfo = &mouse->deviceGrab; 1447 : mouse->spriteInfo->sprite->win; 1452 !(autoGrab & ImplicitGrabMask) && !IsMaster(mouse)) 1453 DetachFromMaster(mouse); 1458 != mouse->spriteInfo->sprite->hotPhys.pScreen) 1459 mouse->spriteInfo->sprite->hotPhys.x = 1460 mouse->spriteInfo->sprite->hotPhys.y = 0; 1461 ConfineCursorToWindow(mouse, grab->confineTo, FALSE, TRUE) 1720 DeviceIntPtr mouse = NULL; local 4210 TryClientEvents(rClient(grab), mouse, &event, 1, mask, local 4302 TryClientEvents(rClient(grab), mouse, (xEvent*)event, 1, mask, local 4854 DeviceIntPtr mouse = PickPointer(client); local 5360 DeviceIntPtr mouse = inputInfo.pointer; local [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/redbook/ |
| double.c | 41 * Pressing the left mouse button rotates the rectangle. 42 * Pressing the middle mouse button stops the rotation. 96 static void mouse(int button, int state, int x, int y) function 130 * Register mouse input callback functions 142 glutMouseFunc(mouse);
|
| movelight.c | 49 * Interaction: pressing the left mouse button alters 110 static void mouse(int button, int state, int x, int y) function 144 glutMouseFunc(mouse);
|
| unproject.c | 40 * When the left mouse button is pressed, this program 41 * reads the mouse position and determines two 3D points 65 static void mouse(int button, int state, int x, int y) function 123 glutMouseFunc(mouse);
|
| colormat.c | 42 * mouse buttons will change the diffuse reflection values. 94 static void mouse(int button, int state, int x, int y) function 149 glutMouseFunc(mouse);
|
| varray.c | 129 static void mouse (int button, int state, int x, int y) function 182 glutMouseFunc(mouse);
|
| surface.c | 186 mouse(int button, int state, int x, int y) function 227 glutMouseFunc(mouse);
|
| /xsrc/external/mit/MesaLib/dist/src/intel/tools/ |
| aubinator_viewer_urb.h | 16 bool _Hovered(const ImVec2& mouse, bool window_hovered, 19 tl.x <= mouse.x && tl.y <= mouse.y && 20 br.x > mouse.x && br.y > mouse.y;
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/tools/ |
| aubinator_viewer_urb.h | 16 bool _Hovered(const ImVec2& mouse, bool window_hovered, 19 tl.x <= mouse.x && tl.y <= mouse.y && 20 br.x > mouse.x && br.y > mouse.y;
|
| /xsrc/external/mit/xorg-server.old/dist/test/xi2/ |
| protocol-common.c | 69 * default mouse, one default keyboard. 87 AllocDevicePair(&client, "", &devices.mouse, &devices.kbd, 89 ActivateDevice(devices.mouse, FALSE); 91 EnableDevice(devices.mouse, FALSE); 97 fake_init_sprite(devices.mouse);
|
| protocol-xiquerypointer.c | 182 request.deviceid = devices.mouse->id; 187 test_data.dev = devices.mouse; 188 devices.mouse->u.master = NULL; /* Float, kind-of */ 189 request.deviceid = devices.mouse->id; 205 test_data.dev = devices.mouse; 206 request.deviceid = devices.mouse->id;
|
| protocol-xiwarppointer.c | 143 request.deviceid = devices.mouse->id; 148 devices.mouse->u.master = NULL; /* Float, kind-of */ 149 request.deviceid = devices.mouse->id; 162 request.deviceid = devices.mouse->id;
|
| /xsrc/external/mit/xorg-server/dist/include/ |
| inpututils.h | 50 extern int event_get_corestate(DeviceIntPtr mouse, DeviceIntPtr kbd); 51 extern void event_set_state(DeviceIntPtr mouse, DeviceIntPtr kbd,
|
| /xsrc/external/mit/xorg-server/dist/test/xi2/ |
| protocol-xiquerypointer.c | 164 request.deviceid = devices.mouse->id; 169 test_data.dev = devices.mouse; 170 devices.mouse->master = NULL; /* Float, kind-of */ 171 request.deviceid = devices.mouse->id; 186 test_data.dev = devices.mouse; 187 request.deviceid = devices.mouse->id;
|
| protocol-xiwarppointer.c | 127 request.deviceid = devices.mouse->id; 132 devices.mouse->master = NULL; /* Float, kind-of */ 133 request.deviceid = devices.mouse->id; 145 request.deviceid = devices.mouse->id;
|
| /xsrc/external/mit/mesa-demos/dist/src/glsl/ |
| blinking-teapot.c | 130 mouse (int button, int state, int x, int y) function 176 glutMouseFunc (mouse);
|
| fsraytrace.c | 350 mouse(int button, int state, int x, int y) function 405 glutMouseFunc(mouse);
|
| vsraytrace.c | 340 mouse(int button, int state, int x, int y) function 395 glutMouseFunc(mouse);
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/ |
| xf86Configure.c | 66 static char *DFLT_MOUSE_DEV = "/dev/mouse"; 158 XF86ConfInputPtr mouse = NULL; local 171 /* Crude mechanism to auto-detect mouse (os dependent) */ 192 mouse = calloc(1, sizeof(XF86ConfInputRec)); 193 mouse->inp_identifier = "Mouse0"; 194 mouse->inp_driver = "mouse"; 195 mouse->inp_option_lst = 196 xf86addNewOption(mouse->inp_option_lst, strdup("Protocol"), 198 mouse->inp_option_lst = [all...] |
| /xsrc/external/mit/xeyes/dist/ |
| EyesP.h | 47 TPoint mouse; /* old mouse position */ member in struct:__anon6657
|
| Eyes.c | 35 * a widget which follows the mouse around 461 w->eyes.mouse.x = w->eyes.mouse.y = TPOINT_NONE; 597 TPoint mouse, 607 cx = layout->x; dx = mouse.x - cx; 608 cy = layout->y; dy = mouse.y - cy; 666 TPoint mouse, 684 pupils[i] = computePupil(&w->eyes.configuration->eyes[i], mouse, sp); 710 computePupils (w, w->eyes.mouse, w->eyes.pupils); 741 drawEyes(EyesWidget w, TPoint mouse) 772 TPoint mouse; local [all...] |