[ https://issues.apache.org/jira/browse/GUACAMOLE-377?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17948813#comment-17948813 ]
Mike Jumper commented on GUACAMOLE-377: --------------------------------------- Resolved! For future reference/testing, here's the script I've been using to generate load: {code:bash} #!/bin/bash # # spin.sh - Induces 100% CPU load on all processors. Mysteriously helpful for # reproducing the graphical artifacts that occur with the scroll detection from # GUACAMOLE-377. # # Ensure all child jobs are killed upon exit trap 'kill $(jobs -pr) 2> /dev/null' SIGINT SIGTERM EXIT # Occupy all processors using "yes" for N in $(seq 1 $(nproc)); do yes > /dev/null & done # Show current processor status, implicitly kill all "yes" processes started by # this script once htop exits htop {code} > Improve efficiency of streaming complex/large changes (Graphics Pipeline > Extension, RemoteFX) > --------------------------------------------------------------------------------------------- > > Key: GUACAMOLE-377 > URL: https://issues.apache.org/jira/browse/GUACAMOLE-377 > Project: Guacamole > Issue Type: New Feature > Components: Documentation, guacamole-server, RDP > Reporter: Mike Jumper > Assignee: Mike Jumper > Priority: Minor > Fix For: 1.6.0 > > > {panel:bgColor=#FFFFEE} > *This issue was moved from > [GUAC-721|https://glyptodon.org/jira/browse/GUAC-721], an issue in the JIRA > instance used by the Guacamole project prior to its acceptance into the > Apache Incubator.* > Comments, attachments, related issues, and history from prior to acceptance > *have not been copied* and can be found instead at the original issue. > {panel} > [As discussed on the mailing > lists|https://lists.apache.org/thread.html/3ee71fcd3bc4040ccfb5d6b4a035803056bd4d829c3b8d1848ecb434@%3Cuser.guacamole.apache.org%3E], > Guacamole currently lacks support for RemoteFX, although the library > leveraged for low-level RDP support (FreeRDP) does have this support. > RemoteFX is important when it comes to forwarding accelerated graphics over > RDP, and the same support should be added to Guacamole. > Lacking API documentation for FreeRDP, this will naturally involve walking > through the source of FreeRDP's own client implementation to determine what > needs to be called and how. -- This message was sent by Atlassian Jira (v8.20.10#820010)