diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-26 16:27:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-26 16:27:37 -0400 |
commit | b66ab811a675b0ceff72943dc1c0ed1ad2bd46ed (patch) | |
tree | ee25807dec18f6f79dfbe262567cb2259d66119c /rootston | |
parent | bcb74c2c781405149af99f66ce61b1a8f63771fd (diff) | |
parent | 793c3b30473bcad488eae9266b67ccfdf3106231 (diff) |
Merge pull request #750 from emersion/renderer-simple-interface
render: add simple functions to render rectangles and ellipses
Diffstat (limited to 'rootston')
-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: |