summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Syrjälä <ville.syrjala@linux.intel.com>2013-10-18 21:43:14 +0300
committerVille Syrjälä <ville.syrjala@linux.intel.com>2013-10-21 20:00:32 +0300
commit471ec64de83b21316cd7f4d86a9337f4d017a907 (patch)
tree927c04c711fb0639f77e99348d9f3c2dbb59c505
parente98a06d593ba879a5292451812be773b4157fe21 (diff)
lib/drmtest: Add kmstest_paint_color_alpha()
kmstest_paint_color_alpha() just like kmstest_paint_color() except you also get to specify the alpha channel. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
-rw-r--r--lib/drmtest.c8
-rw-r--r--lib/drmtest.h2
2 files changed, 10 insertions, 0 deletions
diff --git a/lib/drmtest.c b/lib/drmtest.c
index d035f5e79..abcbba95e 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)
diff --git a/lib/drmtest.h b/lib/drmtest.h
index 3a3900ef1..609e7d843 100644
--- a/lib/drmtest.h
+++ b/lib/drmtest.h
@@ -363,6 +363,8 @@ void kmstest_remove_fb(int fd, struct kmstest_fb *fb_info);
cairo_t *kmstest_get_cairo_ctx(int fd, struct kmstest_fb *fb);
void kmstest_paint_color(cairo_t *cr, int x, int y, int w, int h,
double r, double g, double b);
+void kmstest_paint_color_alpha(cairo_t *cr, int x, int y, int w, int h,
+ double r, double g, double b, double a);
void kmstest_paint_color_gradient(cairo_t *cr, int x, int y, int w, int h,
int r, int g, int b);
void kmstest_paint_test_pattern(cairo_t *cr, int width, int height);