From 233b27257b63ecd502c6392e5ef3a7f736f14365 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=B8ren=20Sandmann=20Pedersen?= Date: Tue, 5 Oct 2010 11:05:25 -0400 Subject: [PATCH] test: Add some more colors to the color table in composite.c Specifically, add transparent black and superluminescent white with alpha = 0. --- test/composite.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 }, }; -- 2.7.4