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

/external/chromium_org/ppapi/c/
H A Dpp_point.h26 * The PP_Point structure defines the integer x and y coordinates of a point.
28 struct PP_Point { struct
40 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_Point, 8);
61 * PP_MakePoint() creates a <code>PP_Point</code> given the x and y coordinates
69 * @return A <code>PP_Point</code> structure.
71 PP_INLINE struct PP_Point PP_MakePoint(int32_t x, int32_t y) {
72 struct PP_Point ret;
/external/chromium_org/ppapi/cpp/
H A Dpoint.h36 /// A constructor accepting a pointer to a PP_Point and converting the
37 /// PP_Point to a Point. This is an implicit conversion constructor.
39 /// @param[in] point A pointer to a PP_Point.
40 Point(const PP_Point& point) { // Implicit.
49 /// A function allowing implicit conversion of a Point to a PP_Point.
51 operator PP_Point() const {
55 /// Getter function for returning the internal PP_Point struct.
57 /// @return A const reference to the internal PP_Point struct.
58 const PP_Point& pp_point() const {
62 /// Getter function for returning the internal PP_Point struc
[all...]

Completed in 240 milliseconds