diff options
author | emersion <contact@emersion.fr> | 2018-03-15 19:31:02 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-15 19:31:02 +0100 |
commit | 876f07e9f13946609047e8e32ca7918548315e1c (patch) | |
tree | 07fe534708d37ffa146a6631445cf57d19e931fb /backend/drm | |
parent | 1914a1aa2b4f3c5678bbbf7d734352a6f51bec58 (diff) |
renderer: replace wlr_texture_get_matrix by wlr_render_texture
Diffstat (limited to 'backend/drm')
-rw-r--r-- | backend/drm/drm.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/backend/drm/drm.c b/backend/drm/drm.c index e956f280..0447d865 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -647,10 +647,8 @@ static bool wlr_drm_connector_set_cursor(struct wlr_output *output, glClearColor(0.0, 0.0, 0.0, 0.0); glClear(GL_COLOR_BUFFER_BIT); - float matrix[9]; - wlr_texture_get_matrix(plane->wlr_tex, matrix, plane->matrix, 0, 0); - wlr_render_texture_with_matrix(plane->surf.renderer->wlr_rend, plane->wlr_tex, - matrix, 1.0f); + wlr_render_texture(plane->surf.renderer->wlr_rend, plane->wlr_tex, + plane->matrix, 0, 0, 1.0f); glFinish(); glPixelStorei(GL_UNPACK_ROW_LENGTH_EXT, bo_stride); |