cd24d49f297dd7344d018a440e52cd42f2d2be0d
[platform/upstream/gst-plugins-good.git] / gst / goom / graphic.c
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4
5 #include "graphic.h"
6
7 const Color BLACK = {0,0,0} ;
8 const Color WHITE = {0xff,0xff,0xff} ;
9 const Color RED = {0xff,0,0} ;
10 const Color GREEN = {0,0xff,0} ;
11 const Color BLUE = {0,0,0xff} ;
12 const Color YELLOW = {0xff, 0xff, 0x33} ;
13 const Color ORANGE = {0xff, 0xcc, 0x00} ;
14 const Color VIOLET = {0x55, 0x00, 0xff} ;
15
16 unsigned int SIZE ;
17 unsigned int HEIGHT ;
18 unsigned int WIDTH ;
19
20 int * rand_tab = 0 ;
21 unsigned short int rand_pos = 0 ;