mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-25 15:25:59 +03:00
[GH-ISSUE #29] Remote Desktop Issues #11
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#11
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @yankejustin on GitHub (Mar 19, 2015).
Original GitHub issue: https://github.com/quasar/Quasar/issues/29
Already known, but just kept here in case others would like to investigate or propose fixes to these issues with the Remote Desktop feature.
Issues:
--> When receiving data of a monitor that is larger than the one you are watching (ex: client has a 1920x1080 monitor and yours is 1080x760) the smaller monitor does not correctly scale the image. This issue is likely due to the way changes are calculated on the client. It causes random pixel anomalies (black pixels, poor resolution in some patches).
@ghost commented on GitHub (Mar 20, 2015):
I worked on this a while ago and believed to had found a long-term fix, however I wanted to get another perspective on how to go about accomplishing this.
I found that calling the Garbage Collector after the send buffer had received the bitmap data would keep the memory usage down greatly. Perhaps there could be something done in this area?
@yankejustin commented on GitHub (Mar 21, 2015):
The problem is that the garbage collector is collecting multiple times a second (around 2-3). This is something that should be avoided. Telling the garbage collector to forcibly collect is not what was intended to be done, but is a fix that is viable but very slow. Telling the Garbage Collector to forcibly collect on all generations for each time the send buffer receives the data would be incredibly slower than letting it leak until the Garbage Collector automagically collects the garbage. The short-term fix is let it leak because the Garbage Collector will get rid of it when it gets bad, but the long-term fix really, really should be to locate the things that are leaking so much and to stop them at the source instead of working around the leak.
@yankejustin commented on GitHub (Mar 27, 2015):
I am going to be stepping through the code and I will find the solution to one portion of this bug today. That is, I will fix the memory leaking issues. However, what we need is someone that is skilled with algorithms! We need someone that can take a glance at the algorithm and find out what is causing the lossy-compression with differing monitor resolutions...
@ghost commented on GitHub (Mar 31, 2015):
I can look into it if you want, made codecs, remote desktops, compression/encryption algorithms etc :)
@MaxXor commented on GitHub (Mar 31, 2015):
@AnguisCaptor that would be great! I appreciate any solution for this.