File: colours.h

package info (click to toggle)
sludge 2.2.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,852 kB
  • sloc: cpp: 32,432; sh: 1,237; makefile: 634; xml: 284
file content (15 lines) | stat: -rw-r--r-- 654 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Simple colour conversion routines to deal with 16-bit graphics

//unsigned short int makeColour (byte r, byte g, byte b);

inline unsigned short redValue (unsigned short c) { return (c >> 11) << 3; }
inline unsigned short greenValue (unsigned short c) { return ((c >> 5) & 63) << 2; }
inline unsigned short blueValue (unsigned short c) { return (c & 31) << 3; }

inline unsigned short makeGrey (unsigned short int r) {
	return ((r >> 3) << 11) | ((r >> 2) << 5) | (r >> 3);
}

inline unsigned short makeColour (unsigned short int r, unsigned short int g, unsigned short int b) {
	return ((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3);
}