Pass backend to render

This commit is contained in:
Scott Anderson 2017-10-22 10:20:26 +13:00
parent bdeffad7e5
commit 37b8a096a9
2 changed files with 4 additions and 6 deletions

View file

@ -153,8 +153,7 @@ static bool set_cursor(struct wlr_output *output, const uint8_t *buf,
output->cursor.height = height;
if (!output->cursor.renderer) {
/* NULL egl is okay given that we are only using pixel buffers */
output->cursor.renderer = wlr_gles2_renderer_create(NULL);
output->cursor.renderer = wlr_gles2_renderer_create(output->backend);
if (!output->cursor.renderer) {
return false;
}