mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-31 22:25:21 -04:00
renderer: replace wlr_texture_get_matrix by wlr_render_texture
This commit is contained in:
parent
1914a1aa2b
commit
876f07e9f1
9 changed files with 34 additions and 72 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue