Home | History | Annotate | Download | only in host

Lines Matching defs:mouse_pos_

87     SkIPoint mouse_pos_;
191 mouse_pos_ = SkIPoint::Make(event.x(), event.y());
203 mouse_pos_ += SkIPoint::Make(desktop_config.pixel_bounds.left(),
207 mouse_pos_ = SkIPoint::Make(
209 std::min(desktop_config.pixel_bounds.right(), mouse_pos_.x())),
211 std::min(desktop_config.pixel_bounds.bottom(), mouse_pos_.y())));
214 mouse_pos_ = SkIPoint::Make(
215 SkScalarRound(mouse_pos_.x() / desktop_config.dip_to_pixel_scale),
216 SkScalarRound(mouse_pos_.y() / desktop_config.dip_to_pixel_scale));
218 VLOG(3) << "Moving mouse to " << mouse_pos_.x() << "," << mouse_pos_.y();
239 CGPoint position = CGPointMake(mouse_pos_.x(), mouse_pos_.y());