Home | History | Annotate | Download | only in glx

Lines Matching refs:point

164   POINT point;
166 point.x = src_x;
167 point.y = src_y;
169 ClientToScreen(src, &point);
171 *dest_x_return = point.x;
172 *dest_y_return = point.y;
188 POINT point;
192 point.x = 0;
193 point.y = 0;
194 ClientToScreen(window, &point);
196 *x_return = point.x;
197 *y_return = point.y;
244 POINT point;
246 point.x = dst_x;
247 point.y = dst_y;
248 ClientToScreen(dst, &point);
250 SetCursorPos(point.x, point.y);