Lines Matching refs:RGB555
38 typedef u16 RGB555; typedef
65 #define RGB555_(r, g, b) (RGB555)(((r) << 0) | ((g) << 5) | ((b) << 10))
67 #define RGB555_CLEAR (RGB555)(1 << 15)
87 extern RGB555 col_text;
89 extern RGB555 col_gnd;
91 extern RGB555 col_clear;
104 static inline void SetTextColor(RGB555 col) in SetTextColor()
109 static inline void SetGroundColor(RGB555 col) in SetGroundColor()
114 static inline void SetClearColor(RGB555 col) in SetClearColor()
119 static inline RGB555 GetTextColor(void) in GetTextColor()
124 static inline RGB555 GetGroundColor(void) in GetGroundColor()
129 static inline RGB555 GetClearColor(void) in GetClearColor()
134 void ClearFrame(RGB555 col);
135 void FillRect(int x, int y, int wx, int wy, RGB555 col);
136 void BlitRect(int x, int y, int wx, int wy, RGB555 * src, int stroke);
137 void TransRect(int x, int y, int wx, int wy, RGB555 * src, int stroke);
138 void DrawLine(int sx, int sy, int tx, int ty, RGB555 col);