gui_color.h
上传用户:sunhongbo
上传日期:2022-01-25
资源大小:3010k
文件大小:1k
源码类别:

数据库系统

开发平台:

C/C++

  1. #ifndef _GUI_COLOR_H__
  2. #define _GUI_COLOR_H__
  3. #if GUI_COLOR == GUI_COLOR_CLUT
  4. #define GUI_COLOR_WHITE      1
  5. #define GUI_COLOR_BLACK 0
  6. #define GUI_COLOR_TRANSPARENT  255
  7. #elif GUI_COLOR == GUI_COLOR_1555
  8. #define GUI_COLOR_WHITE RGB(255,255,255)
  9. #define GUI_COLOR_BLACK RGB(0,0,0)
  10. #define GUI_COLOR_TRANSPARENT  ((0xff>>3)<<10)|(0xff>>3)
  11. #elif GUI_COLOR == GUI_COLOR_565
  12. #define GUI_COLOR_WHITE  RGB(255,255,255)
  13. #define GUI_COLOR_BLACK  RGB(0,0,0)
  14. #define GUI_COLOR_TRANSPARENT ((0xff>>3)<<10)|(0xff>>3)
  15. #endif
  16. #endif