Searched defs:DesktopVector (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.h20 class DesktopVector { class in namespace:webrtc
22 DesktopVector() : x_(0), y_(0) {} function in class:webrtc::DesktopVector
23 DesktopVector(int32_t x, int32_t y) : x_(x), y_(y) {} function in class:webrtc::DesktopVector
29 bool equals(const DesktopVector& other) const {
38 DesktopVector add(const DesktopVector& other) const {
39 return DesktopVector(x() + other.x(), y() + other.y());
41 DesktopVector subtract(const DesktopVector& other) const {
42 return DesktopVector(
[all...]

Completed in 692 milliseconds