GUI_DrawBitmapExp.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_DrawBitmapExp.C
  16. Purpose     : Implementation of GUI_DrawBitmapExp
  17. ---------------------------END-OF-HEADER------------------------------
  18. */
  19. #include <stddef.h>           /* needed for definition of NULL */
  20. #include "GUI_Protected.H"
  21. /*********************************************************************
  22. *
  23. *             GUI_DrawBitmapExp
  24. *
  25. **********************************************************************
  26. */
  27. void GUI_DrawBitmapExp(int x0,    int y0,
  28.                        int XSize, int YSize,
  29.                        int XMul,  int YMul,
  30.                        int BitsPerPixel, 
  31.                        int BytesPerLine,
  32.                        const U8* pData,
  33.                        const GUI_LOGPALETTE* pPal)
  34. {
  35.   GUI_DRAWMODE PrevDraw;
  36.   GUI_LOCK();
  37.   PrevDraw = GUI_SetDrawMode((pPal && pPal->HasTrans) ? GUI_DRAWMODE_TRANS : 0);
  38.   #if (GUI_WINSUPPORT)
  39.     WM_ADDORG(x0,y0);
  40.     {
  41.       GUI_RECT r;
  42.       r.x0 = x0;
  43.       r.x1 = x0 + XSize * XMul -1;
  44.       r.y0 = y0;
  45.       r.y1 = y0 + YSize * YMul -1;
  46.       WM_ITERATE_START(&r); {
  47.   #endif
  48.   LCD_DrawBitmap( x0, y0 ,XSize ,YSize, XMul, YMul
  49.                  ,BitsPerPixel, BytesPerLine, pData, pPal);
  50.   #if (GUI_WINSUPPORT)
  51.       } WM_ITERATE_END();
  52.     }
  53.   #endif
  54.   GUI_SetDrawMode(PrevDraw);
  55.   GUI_UNLOCK();
  56. }