GUI_MergeRect.c
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:2k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/GUI
  4. *                        Universal graphic software for embedded applications
  5. *
  6. *                       (c) Copyright 2002, Micrium Inc., Weston, FL
  7. *                       (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
  8. *
  9. *              礐/GUI is protected by international copyright laws. Knowledge of the
  10. *              source code may not be used to write a similar product. This file may
  11. *              only be used in accordance with a license and should not be redistributed
  12. *              in any way. We appreciate your understanding and fairness.
  13. *
  14. ----------------------------------------------------------------------
  15. File        : GUI_MergeRect.c
  16. Purpose     : Implementation of GUI_MergeRect
  17. ----------------------------------------------------------------------
  18. */
  19. #include "GUI.H"
  20. #include "GUIDebug.h"
  21. /*
  22.   ********************************************************************
  23.   *                                                                  *
  24.   *                 Macros for internal use                          *
  25.   *                                                                  *
  26.   ********************************************************************
  27. */
  28. #define Min(v0,v1) ((v0>v1) ? v1 : v0)
  29. #define Max(v0,v1) ((v0>v1) ? v0 : v1)
  30. /*
  31.   ********************************************************************
  32.   *
  33.   *                 Public : GUI_MergeRect
  34.   *
  35.   ********************************************************************
  36. */
  37. /* Calc smalles rectangles containing both rects*/
  38. void GUI_MergeRect(GUI_RECT* pDest, const GUI_RECT* pr0, const GUI_RECT* pr1) {
  39.   if (!pDest)
  40.     return;
  41.   if (pr0 && pr1) {
  42.     pDest->x0 = Min (pr0->x0, pr1->x0);
  43.     pDest->y0 = Min (pr0->y0, pr1->y0);
  44.     pDest->x1 = Max (pr0->x1, pr1->x1);
  45.     pDest->y1 = Max (pr0->y1, pr1->y1);
  46.   }
  47.   *pDest = *(pr0 ? pr0 : pr1);
  48. }