Changeset 5271e4c in mainline for uspace/srv/hid/rfb


Ignore:
Timestamp:
2020-06-22T12:20:42Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
195b7b3
Parents:
66a408f7
git-author:
Jiri Svoboda <jiri@…> (2020-06-21 15:20:18)
git-committer:
Jiri Svoboda <jiri@…> (2020-06-22 12:20:42)
Message:

Duplicate rendering to additional output devices using a cloning GC

This gives the display server a pretty good illusion of rendering to just
one output device, while supporting multiple. This makes RFB work properly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/rfb/main.c

    r66a408f7 r5271e4c  
    110110        rfb->damage_rect.y = new_rect.p0.y;
    111111        rfb->damage_rect.width = new_rect.p1.x - new_rect.p0.x;
    112         rfb->damage_rect.height = new_rect.p1.y - new_rect.p1.y;
     112        rfb->damage_rect.height = new_rect.p1.y - new_rect.p0.y;
    113113}
    114114
Note: See TracChangeset for help on using the changeset viewer.