xref: /openbmc/linux/include/drm/drm_rect.h (revision c70f577a)
13512f976SVille Syrjälä /*
23512f976SVille Syrjälä  * Copyright (C) 2011-2013 Intel Corporation
33512f976SVille Syrjälä  *
43512f976SVille Syrjälä  * Permission is hereby granted, free of charge, to any person obtaining a
53512f976SVille Syrjälä  * copy of this software and associated documentation files (the "Software"),
63512f976SVille Syrjälä  * to deal in the Software without restriction, including without limitation
73512f976SVille Syrjälä  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
83512f976SVille Syrjälä  * and/or sell copies of the Software, and to permit persons to whom the
93512f976SVille Syrjälä  * Software is furnished to do so, subject to the following conditions:
103512f976SVille Syrjälä  *
113512f976SVille Syrjälä  * The above copyright notice and this permission notice (including the next
123512f976SVille Syrjälä  * paragraph) shall be included in all copies or substantial portions of the
133512f976SVille Syrjälä  * Software.
143512f976SVille Syrjälä  *
153512f976SVille Syrjälä  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
163512f976SVille Syrjälä  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
173512f976SVille Syrjälä  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
183512f976SVille Syrjälä  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
193512f976SVille Syrjälä  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
203512f976SVille Syrjälä  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
213512f976SVille Syrjälä  * SOFTWARE.
223512f976SVille Syrjälä  */
233512f976SVille Syrjälä 
243512f976SVille Syrjälä #ifndef DRM_RECT_H
253512f976SVille Syrjälä #define DRM_RECT_H
263512f976SVille Syrjälä 
273512f976SVille Syrjälä /**
2803973536SVille Syrjälä  * DOC: rect utils
2903973536SVille Syrjälä  *
3003973536SVille Syrjälä  * Utility functions to help manage rectangular areas for
3103973536SVille Syrjälä  * clipping, scaling, etc. calculations.
3203973536SVille Syrjälä  */
3303973536SVille Syrjälä 
3403973536SVille Syrjälä /**
3503973536SVille Syrjälä  * struct drm_rect - two dimensional rectangle
363512f976SVille Syrjälä  * @x1: horizontal starting coordinate (inclusive)
373512f976SVille Syrjälä  * @x2: horizontal ending coordinate (exclusive)
383512f976SVille Syrjälä  * @y1: vertical starting coordinate (inclusive)
393512f976SVille Syrjälä  * @y2: vertical ending coordinate (exclusive)
403512f976SVille Syrjälä  */
413512f976SVille Syrjälä struct drm_rect {
423512f976SVille Syrjälä 	int x1, y1, x2, y2;
433512f976SVille Syrjälä };
443512f976SVille Syrjälä 
453512f976SVille Syrjälä /**
463512f976SVille Syrjälä  * drm_rect_adjust_size - adjust the size of the rectangle
473512f976SVille Syrjälä  * @r: rectangle to be adjusted
483512f976SVille Syrjälä  * @dw: horizontal adjustment
493512f976SVille Syrjälä  * @dh: vertical adjustment
503512f976SVille Syrjälä  *
513512f976SVille Syrjälä  * Change the size of rectangle @r by @dw in the horizontal direction,
523512f976SVille Syrjälä  * and by @dh in the vertical direction, while keeping the center
533512f976SVille Syrjälä  * of @r stationary.
543512f976SVille Syrjälä  *
553512f976SVille Syrjälä  * Positive @dw and @dh increase the size, negative values decrease it.
563512f976SVille Syrjälä  */
573512f976SVille Syrjälä static inline void drm_rect_adjust_size(struct drm_rect *r, int dw, int dh)
583512f976SVille Syrjälä {
593512f976SVille Syrjälä 	r->x1 -= dw >> 1;
603512f976SVille Syrjälä 	r->y1 -= dh >> 1;
613512f976SVille Syrjälä 	r->x2 += (dw + 1) >> 1;
623512f976SVille Syrjälä 	r->y2 += (dh + 1) >> 1;
633512f976SVille Syrjälä }
643512f976SVille Syrjälä 
653512f976SVille Syrjälä /**
663512f976SVille Syrjälä  * drm_rect_translate - translate the rectangle
673512f976SVille Syrjälä  * @r: rectangle to be tranlated
683512f976SVille Syrjälä  * @dx: horizontal translation
693512f976SVille Syrjälä  * @dy: vertical translation
703512f976SVille Syrjälä  *
713512f976SVille Syrjälä  * Move rectangle @r by @dx in the horizontal direction,
723512f976SVille Syrjälä  * and by @dy in the vertical direction.
733512f976SVille Syrjälä  */
743512f976SVille Syrjälä static inline void drm_rect_translate(struct drm_rect *r, int dx, int dy)
753512f976SVille Syrjälä {
763512f976SVille Syrjälä 	r->x1 += dx;
773512f976SVille Syrjälä 	r->y1 += dy;
783512f976SVille Syrjälä 	r->x2 += dx;
793512f976SVille Syrjälä 	r->y2 += dy;
803512f976SVille Syrjälä }
813512f976SVille Syrjälä 
823512f976SVille Syrjälä /**
833512f976SVille Syrjälä  * drm_rect_downscale - downscale a rectangle
843512f976SVille Syrjälä  * @r: rectangle to be downscaled
853512f976SVille Syrjälä  * @horz: horizontal downscale factor
863512f976SVille Syrjälä  * @vert: vertical downscale factor
873512f976SVille Syrjälä  *
883512f976SVille Syrjälä  * Divide the coordinates of rectangle @r by @horz and @vert.
893512f976SVille Syrjälä  */
903512f976SVille Syrjälä static inline void drm_rect_downscale(struct drm_rect *r, int horz, int vert)
913512f976SVille Syrjälä {
923512f976SVille Syrjälä 	r->x1 /= horz;
933512f976SVille Syrjälä 	r->y1 /= vert;
943512f976SVille Syrjälä 	r->x2 /= horz;
953512f976SVille Syrjälä 	r->y2 /= vert;
963512f976SVille Syrjälä }
973512f976SVille Syrjälä 
983512f976SVille Syrjälä /**
993512f976SVille Syrjälä  * drm_rect_width - determine the rectangle width
1003512f976SVille Syrjälä  * @r: rectangle whose width is returned
1013512f976SVille Syrjälä  *
1023512f976SVille Syrjälä  * RETURNS:
1033512f976SVille Syrjälä  * The width of the rectangle.
1043512f976SVille Syrjälä  */
1053512f976SVille Syrjälä static inline int drm_rect_width(const struct drm_rect *r)
1063512f976SVille Syrjälä {
1073512f976SVille Syrjälä 	return r->x2 - r->x1;
1083512f976SVille Syrjälä }
1093512f976SVille Syrjälä 
1103512f976SVille Syrjälä /**
1113512f976SVille Syrjälä  * drm_rect_height - determine the rectangle height
1123512f976SVille Syrjälä  * @r: rectangle whose height is returned
1133512f976SVille Syrjälä  *
1143512f976SVille Syrjälä  * RETURNS:
1153512f976SVille Syrjälä  * The height of the rectangle.
1163512f976SVille Syrjälä  */
1173512f976SVille Syrjälä static inline int drm_rect_height(const struct drm_rect *r)
1183512f976SVille Syrjälä {
1193512f976SVille Syrjälä 	return r->y2 - r->y1;
1203512f976SVille Syrjälä }
1213512f976SVille Syrjälä 
1223512f976SVille Syrjälä /**
1233512f976SVille Syrjälä  * drm_rect_visible - determine if the the rectangle is visible
1243512f976SVille Syrjälä  * @r: rectangle whose visibility is returned
1253512f976SVille Syrjälä  *
1263512f976SVille Syrjälä  * RETURNS:
1273512f976SVille Syrjälä  * %true if the rectangle is visible, %false otherwise.
1283512f976SVille Syrjälä  */
1293512f976SVille Syrjälä static inline bool drm_rect_visible(const struct drm_rect *r)
1303512f976SVille Syrjälä {
1313512f976SVille Syrjälä 	return drm_rect_width(r) > 0 && drm_rect_height(r) > 0;
1323512f976SVille Syrjälä }
1333512f976SVille Syrjälä 
1340894c96bSVille Syrjälä /**
1350894c96bSVille Syrjälä  * drm_rect_equals - determine if two rectangles are equal
1360894c96bSVille Syrjälä  * @r1: first rectangle
1370894c96bSVille Syrjälä  * @r2: second rectangle
1380894c96bSVille Syrjälä  *
1390894c96bSVille Syrjälä  * RETURNS:
1400894c96bSVille Syrjälä  * %true if the rectangles are equal, %false otherwise.
1410894c96bSVille Syrjälä  */
1420894c96bSVille Syrjälä static inline bool drm_rect_equals(const struct drm_rect *r1,
1430894c96bSVille Syrjälä 				   const struct drm_rect *r2)
1440894c96bSVille Syrjälä {
1450894c96bSVille Syrjälä 	return r1->x1 == r2->x1 && r1->x2 == r2->x2 &&
1460894c96bSVille Syrjälä 		r1->y1 == r2->y1 && r1->y2 == r2->y2;
1470894c96bSVille Syrjälä }
1480894c96bSVille Syrjälä 
1493512f976SVille Syrjälä bool drm_rect_intersect(struct drm_rect *r, const struct drm_rect *clip);
1503512f976SVille Syrjälä bool drm_rect_clip_scaled(struct drm_rect *src, struct drm_rect *dst,
1513512f976SVille Syrjälä 			  const struct drm_rect *clip,
1523512f976SVille Syrjälä 			  int hscale, int vscale);
1534954c428SVille Syrjälä int drm_rect_calc_hscale(const struct drm_rect *src,
1544954c428SVille Syrjälä 			 const struct drm_rect *dst,
1554954c428SVille Syrjälä 			 int min_hscale, int max_hscale);
1564954c428SVille Syrjälä int drm_rect_calc_vscale(const struct drm_rect *src,
1574954c428SVille Syrjälä 			 const struct drm_rect *dst,
1584954c428SVille Syrjälä 			 int min_vscale, int max_vscale);
1594954c428SVille Syrjälä int drm_rect_calc_hscale_relaxed(struct drm_rect *src,
1604954c428SVille Syrjälä 				 struct drm_rect *dst,
1614954c428SVille Syrjälä 				 int min_hscale, int max_hscale);
1624954c428SVille Syrjälä int drm_rect_calc_vscale_relaxed(struct drm_rect *src,
1634954c428SVille Syrjälä 				 struct drm_rect *dst,
1644954c428SVille Syrjälä 				 int min_vscale, int max_vscale);
165c70f577aSVille Syrjälä void drm_rect_debug_print(const char *prefix,
166c70f577aSVille Syrjälä 			  const struct drm_rect *r, bool fixed_point);
16707074006SVille Syrjälä void drm_rect_rotate(struct drm_rect *r,
16807074006SVille Syrjälä 		     int width, int height,
16907074006SVille Syrjälä 		     unsigned int rotation);
17007074006SVille Syrjälä void drm_rect_rotate_inv(struct drm_rect *r,
17107074006SVille Syrjälä 			 int width, int height,
17207074006SVille Syrjälä 			 unsigned int rotation);
1733512f976SVille Syrjälä 
1743512f976SVille Syrjälä #endif
175