From 471ec64de83b21316cd7f4d86a9337f4d017a907 Mon Sep 17 00:00:00 2001 From: Ville Syrjälä Date: Fri, 18 Oct 2013 21:43:14 +0300 Subject: lib/drmtest: Add kmstest_paint_color_alpha() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit kmstest_paint_color_alpha() just like kmstest_paint_color() except you also get to specify the alpha channel. Signed-off-by: Ville Syrjälä --- lib/drmtest.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lib/drmtest.c') diff --git a/lib/drmtest.c b/lib/drmtest.c index d035f5e7..abcbba95 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -1367,6 +1367,14 @@ void kmstest_paint_color(cairo_t *cr, int x, int y, int w, int h, cairo_fill(cr); } +void kmstest_paint_color_alpha(cairo_t *cr, int x, int y, int w, int h, + double r, double g, double b, double a) +{ + cairo_rectangle(cr, x, y, w, h); + cairo_set_source_rgba(cr, r, g, b, a); + cairo_fill(cr); +} + void kmstest_paint_color_gradient(cairo_t *cr, int x, int y, int w, int h, int r, int g, int b) -- cgit v1.2.3