summaryrefslogtreecommitdiff
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-05 13:09:11 -0400
commit58b1eb59bcaa7705f8970e7c865b4d4a650ad2c7 (patch)
tree53c3b0a1d6ff3db9074c2fd546ef84feab549403
parent6871aab11444ad6d8f74f1bf24b38e8999ad536d (diff)
test: Add some more colors to the color table in composite.ccomposite-test-fixes
Specifically, add transparent black and superluminescent white with alpha = 0.
-rw-r--r--test/composite.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/composite.c b/test/composite.c
index 216046ff..5cdc521b 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 },
};