summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSøren Sandmann Pedersen <ssp@redhat.com>2010-10-05 11:05:25 -0400
committerSøren Sandmann Pedersen <ssp@redhat.com>2010-10-11 12:06:20 -0400
commit233b27257b63ecd502c6392e5ef3a7f736f14365 (patch)
tree8ae841854b0d018c932e19f520ccc514ba1fe3d7 /test
parent3f7da59352b604bd6974230d0b149e8e7da77b5c (diff)
test: Add some more colors to the color table in composite.c
Specifically, add transparent black and superluminescent white with alpha = 0.
Diffstat (limited to 'test')
-rw-r--r--test/composite.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/composite.c b/test/composite.c
index 216046f..5cdc521 100644
--- a/test/composite.c
+++ b/test/composite.c
@@ -54,10 +54,12 @@ struct format_t
static const color_t colors[] =
{
{ 1.0, 1.0, 1.0, 1.0 },
+ { 1.0, 1.0, 1.0, 0.0 },
+ { 0.0, 0.0, 0.0, 1.0 },
+ { 0.0, 0.0, 0.0, 0.0 },
{ 1.0, 0.0, 0.0, 1.0 },
{ 0.0, 1.0, 0.0, 1.0 },
{ 0.0, 0.0, 1.0, 1.0 },
- { 0.0, 0.0, 0.0, 1.0 },
{ 0.5, 0.0, 0.0, 0.5 },
};