diff options
author | Søren Sandmann Pedersen <ssp@redhat.com> | 2010-10-05 11:05:25 -0400 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@redhat.com> | 2010-10-11 12:06:20 -0400 |
commit | 233b27257b63ecd502c6392e5ef3a7f736f14365 (patch) | |
tree | 8ae841854b0d018c932e19f520ccc514ba1fe3d7 /test | |
parent | 3f7da59352b604bd6974230d0b149e8e7da77b5c (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.c | 4 |
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 }, }; |