-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Screen Projection works incorrectly if editor is not on Display1 #243
Comments
Hello, Thank you for the detailed explanation. Please provide the following information so we can attempt to replicate this issue. Device information
You can find some of these details on QPrompt's about page. |
Qprompt version: 1.1.6(v1.1/51788eb) |
Excellent, thank you very much! |
was this fixed for QPrompt 1.2.0 Early Access build 06 ? because i have the same issue . when i enable projection. |
Hi @mowenfarhat, No, this has not been fixed in the early access builds, and, unfortunately, it won't be fixed for the next release of QPrompt either. Screen projections are the hardest problem to solve in teleprompter software, with many edge cases that need to be addressed. Based on your description I can tell that your problem is different from the one initially addressed on this thread. When copying the prompter's contents, an image on the GPU is grabbed from the main screen and read from the same GPU location while processing the other windows. The other windows asume there will always be an image there, but this isn't the case when you minimize in some systems, Windows included, causing QPrompt to crash. Unfortunately, I can't do anything about this the way the code is presently structured. I'm in the process of re-structuring it using a newer version of the Qt framework (the primary framework used for making QPrompt), but even when I find a solution that works, there are dependencies on other frameworks that that are not compatible with this version of Qt, which are preventing us from making a proper release. The current implementation of this feature has the most problems under Windows because of a series of optimizations done on Windows to improve performance. These include crashes and, sometimes, incorrect window placement. There are no crashes in MacOS, but screen detection is buggy on Apple Silicon, so the main window will only be placed on the primary screen and the projection only on the second display. Linux is the system with the least problems, never failing on window placement, and only ever crashing on distributions that use uncommon window managers. All systems are and will forever be incompatible with mixing use of multiple graphics cards, which will, under most certainly, result in a crash. If mixing multiple In the meantime, please read the following forum thread, which will hopefully give you things you could attempt to mitigate the problem: https://forum.cuperino.com/t/qprompt-crashes-when-switching-on-a-secondary-display/98/16 Hope this helps. Sorry for the inconvenience. Javier |
Is it possible to adapt your code from Imaginary for this feature? |
@videosmith It would involve a mayor re-writing of QPrompt, but it should be possible. I will not do it because I know perfecting the current approach is be better in the long term, as it also opens the door to adding NDI support and other forms of streaming. The way I designed this feature in Imaginary Teleprompter is also wrong from an architectural standpoint. As a result Imaginary has a few bugs which are literally impossible to fix.
Issue 53 is also the most common complaint users have had with Imaginary Teleprompter. |
Screen projections removed from v1.2/2.0 codebase and future implementation in the works won't be affected by this issue, therefore there's no use in keeping this issue open. |
Screen Projection seems to be broken when trying to project to a screen when the editor is not on Display1. Have tried this across two desktops with multi displays and 1 laptop with an external display.
If the editor is not on the screen that is labeled as Display1, the projection does not work correctly and either doubles up and covers the editor or will just not project the content to the correct display entirely.
Tested this on another system and just dragged the editor off of what windows calls display1 and the issue replicated itself.
The text was updated successfully, but these errors were encountered: