Files
veejay/veejay-current/libgoom/graphic.c
Niels Elburg 20ba7effd7 added xmms visualization plugin Goom, libgoom, added 2 new effects , color map and goom fx to veejay-current
git-svn-id: svn://code.dyne.org/veejay/trunk@686 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
2006-11-14 00:59:48 +00:00

11 lines
354 B
C

#include "goom_graphic.h"
const Color BLACK = { 0, 0, 0 };
const Color WHITE = { 0xff, 0xff, 0xff };
const Color RED = { 0xff, 0x05, 0x05 };
const Color GREEN = { 0x05, 0xff, 0x05 };
const Color BLUE = { 0x05, 0x05, 0xff };
const Color YELLOW = { 0xff, 0xff, 0x33 };
const Color ORANGE = { 0xff, 0xcc, 0x05 };
const Color VIOLET = { 0x55, 0x05, 0xff };