2ee71a6dd0c1ac2176734f18d05d74d5c1fd84b5
[platform/upstream/gst-plugins-good.git] / gst / goom / graphic.c
1 #include "goom_graphic.h"
2
3 const Color BLACK = { 0, 0, 0 };
4 const Color WHITE = { 0xff, 0xff, 0xff };
5 const Color RED = { 0xff, 0x05, 0x05 };
6 const Color GREEN = { 0x05, 0xff, 0x05 };
7 const Color BLUE = { 0x05, 0x05, 0xff };
8 const Color YELLOW = { 0xff, 0xff, 0x33 };
9 const Color ORANGE = { 0xff, 0xcc, 0x05 };
10 const Color VIOLET = { 0x55, 0x05, 0xff };