MythTV master
graphic.cpp
Go to the documentation of this file.
1#include "graphic.h"
2
3const Color BLACK = { .r=0, .v=0, .b=0 };
4const Color WHITE = { .r=0xff, .v=0xff, .b=0xff };
5const Color RED = { .r=0xff, .v=0, .b=0 };
6const Color GREEN = { .r=0, .v=0xff, .b=0 };
7const Color BLUE = { .r=0, .v=0, .b=0xff };
8const Color YELLOW = { .r=0xff, .v=0xff, .b=0x33 };
9const Color ORANGE = { .r=0xff, .v=0xcc, .b=0x00 };
10const Color VIOLET = { .r=0x55, .v=0x00, .b=0xff };
11
12unsigned int SIZE;
13unsigned int HEIGHT;
14unsigned int WIDTH;
const Color VIOLET
Definition: graphic.cpp:10
unsigned int SIZE
Definition: graphic.cpp:12
unsigned int HEIGHT
Definition: graphic.cpp:13
const Color BLUE
Definition: graphic.cpp:7
const Color YELLOW
Definition: graphic.cpp:8
const Color RED
Definition: graphic.cpp:5
const Color WHITE
Definition: graphic.cpp:4
const Color ORANGE
Definition: graphic.cpp:9
const Color BLACK
Definition: graphic.cpp:3
unsigned int WIDTH
Definition: graphic.cpp:14
const Color GREEN
Definition: graphic.cpp:6
Definition: graphic.h:5
unsigned short r
Definition: graphic.h:6