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

uCOS

开发平台:

C/C++

  1. /*********************************************************************
  2. *                SEGGER MICROCONTROLLER SYSTEME GmbH                 *
  3. *        Solutions for real time microcontroller applications        *
  4. **********************************************************************
  5. *                                                                    *
  6. *        (c) 2002         SEGGER Microcontroller Systeme GmbH        *
  7. *                                                                    *
  8. *        Internet: www.segger.com    Support:  support@segger.com    *
  9. *                                                                    *
  10. **********************************************************************
  11. **** emWin/GSC Grafical user interface for embedded applications ****
  12. emWin is protected by international copyright laws. Knowledge of the
  13. source code may not be used to write a similar product. This file may
  14. only be used in accordance with a license and should not be re-
  15. distributed in any way. We appreciate your understanding and fairness.
  16. ----------------------------------------------------------------------
  17. File        : LCD_ClipRectEx.c
  18. Purpose     : Implementation of optional routines
  19. ---------------------------END-OF-HEADER------------------------------
  20. */
  21. #include "LCD_Private.h"
  22. #include "GUI_Private.h"
  23. /*********************************************************************
  24. *
  25. *           LCD_SetClipRectEx
  26. *
  27. **********************************************************************
  28. This function is actually a driver function.
  29. Since it is identical for all drivers with only one controller,
  30. it is placed here.
  31. For multi-controller systems, this routine is placed in the
  32. distribution driver.
  33. */
  34. void LCD_SetClipRectEx(const GUI_RECT* pRect) {
  35.   LCD_RECT r;
  36.   LCDDEV_L0_GetRect(&r);
  37.   GUI__IntersectRects(&GUI_Context.ClipRect, pRect, &r);
  38. }