1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
6 /* From pp_rect.idl modified Tue Jun 3 12:31:06 2014. */
8 #ifndef PPAPI_C_PP_RECT_H_
9 #define PPAPI_C_PP_RECT_H_
11 #include "ppapi/c/pp_macros.h"
12 #include "ppapi/c/pp_point.h"
13 #include "ppapi/c/pp_size.h"
14 #include "ppapi/c/pp_stdint.h"
18 * This file defines the APIs for creating a 2 dimensional rectangle.
27 * The <code>PP_Rect</code> struct contains the size and location of a 2D
32 * This value represents the x and y coordinates of the upper-left corner of
35 struct PP_Point point
;
36 /** This value represents the width and height of the rectangle. */
39 PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_Rect
, 16);
42 * The <code>PP_FloatRect</code> struct contains the size and location of a 2D
47 * This value represents the x and y coordinates of the upper-left corner of
50 struct PP_FloatPoint point
;
51 /** This value represents the width and height of the rectangle. */
52 struct PP_FloatSize size
;
60 * @addtogroup Functions
65 * PP_MakeRectFromXYWH() creates a <code>PP_Rect</code> given x and y
66 * coordinates and width and height dimensions as int32_t values.
68 * @param[in] x An int32_t value representing a horizontal coordinate of a
69 * point, starting with 0 as the left-most coordinate.
70 * @param[in] y An int32_t value representing a vertical coordinate of a point,
71 * starting with 0 as the top-most coordinate.
72 * @param[in] w An int32_t value representing a width.
73 * @param[in] h An int32_t value representing a height.
75 * @return A <code>PP_Rect</code> structure.
77 PP_INLINE
struct PP_Rect
PP_MakeRectFromXYWH(int32_t x
, int32_t y
,
78 int32_t w
, int32_t h
) {
88 * PP_MakeFloatRectFromXYWH() creates a <code>PP_FloatRect</code> given x and y
89 * coordinates and width and height dimensions as float values.
91 * @param[in] x An float value representing a horizontal coordinate of a
92 * point, starting with 0 as the left-most coordinate.
93 * @param[in] y An float value representing a vertical coordinate of a point,
94 * starting with 0 as the top-most coordinate.
95 * @param[in] w An float value representing a width.
96 * @param[in] h An float value representing a height.
98 * @return A <code>PP_FloatRect</code> structure.
100 PP_INLINE
struct PP_FloatRect
PP_MakeFloatRectFromXYWH(float x
, float y
,
102 struct PP_FloatRect ret
;
114 #endif /* PPAPI_C_PP_RECT_H_ */