mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
Fix software cursor. Fixes #45
This commit is contained in:
parent
7486263f7e
commit
afd058b754
1 changed files with 3 additions and 0 deletions
|
|
@ -196,6 +196,9 @@ void wlr_output_make_current(struct wlr_output *output) {
|
|||
|
||||
void wlr_output_swap_buffers(struct wlr_output *output) {
|
||||
if (output->cursor.is_sw) {
|
||||
glViewport(0, 0, output->width, output->height);
|
||||
glEnable(GL_BLEND);
|
||||
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||
float matrix[16];
|
||||
wlr_surface_get_matrix(output->cursor.texture, &matrix, &output->transform_matrix,
|
||||
output->cursor.x, output->cursor.y);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue