diff options
author | emersion <contact@emersion.fr> | 2018-03-26 12:41:51 -0400 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-26 12:41:51 -0400 |
commit | 793c3b30473bcad488eae9266b67ccfdf3106231 (patch) | |
tree | ee25807dec18f6f79dfbe262567cb2259d66119c /rootston/output.c | |
parent | bcb74c2c781405149af99f66ce61b1a8f63771fd (diff) |
render: add simple functions to render rectangles and ellipses
Diffstat (limited to 'rootston/output.c')
-rw-r--r-- | rootston/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/output.c b/rootston/output.c index 1284c928..c75935af 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -363,7 +363,7 @@ static void render_decorations(struct roots_view *view, pixman_region32_rectangles(&damage, &nrects); for (int i = 0; i < nrects; ++i) { scissor_output(output, &rects[i]); - wlr_render_colored_quad(renderer, color, matrix); + wlr_render_quad_with_matrix(renderer, color, matrix); } damage_finish: |