LCDDrawing.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* Copyright (c) 2002-2012 Croteam Ltd.
  2. This program is free software; you can redistribute it and/or modify
  3. it under the terms of version 2 of the GNU General Public License as published by
  4. the Free Software Foundation
  5. This program is distributed in the hope that it will be useful,
  6. but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  8. GNU General Public License for more details.
  9. You should have received a copy of the GNU General Public License along
  10. with this program; if not, write to the Free Software Foundation, Inc.,
  11. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
  12. #ifndef SE_INCL_LCDDRAWING_H
  13. #define SE_INCL_LCDDRAWING_H
  14. #ifdef PRAGMA_ONCE
  15. #pragma once
  16. #endif
  17. extern void LCDInit(void);
  18. extern void LCDEnd(void);
  19. extern void LCDPrepare(FLOAT fFade);
  20. extern void LCDSetDrawport(CDrawPort *pdp);
  21. extern void LCDDrawBox(PIX pixUL, PIX pixDR, PIXaabbox2D &box, COLOR col);
  22. extern void LCDScreenBox(COLOR col);
  23. extern void LCDScreenBoxOpenLeft(COLOR col);
  24. extern void LCDScreenBoxOpenRight(COLOR col);
  25. extern void LCDRenderClouds1(void);
  26. extern void LCDRenderClouds2(void);
  27. extern void LCDRenderClouds2Light(void);
  28. extern void LCDRenderGrid(void);
  29. extern void LCDDrawPointer(PIX pixI, PIX pixJ);
  30. extern COLOR LCDGetColor(COLOR colDefault, const char *strName);
  31. extern COLOR LCDFadedColor(COLOR col);
  32. extern COLOR LCDBlinkingColor(COLOR col0, COLOR col1);
  33. #endif /* include-once check. */