-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Glitch with long TCO's #3378
Comments
Have you noticed this only in ogg files? |
It's in wav files too. Found the commit.
|
Huh, looks like something is not getting initialised. You can get these glitches on all patterns if you remove the style.css. I'll look into this. |
I'm sorry, I can't reproduce this. I loaded a 30 minute ogg and it seems to render fine 😕 |
Sometimes you need to also zoom in to trigger this. |
@zonkmachine could you zip up a file that does this? |
Also are you on Qt4 or Qt5? |
Qt4, Linux Mint 17.3 with cheap AMD cpu and no dedicated graphic card. |
Aight! |
If I scroll the tempo the glitch is affected. |
Ok I can reproduce now, thanks. |
Seems like a QPixmap can't be more than 32767 x 32767px in size... |
This could have bearings to #746 |
Can we use multiple |
Or borrow space from the vertical part of the pixmap. Just continue writing the pixmap but roll back to 0, let it grow in size vertically and continue writing/reading. |
Wouldn't that vertical solution cause problems with resizing tracks
vertically? Unless I'm missing something, we must draw a taller pixmap
(height tied to track height) to retain sharp graphics when that happens.
…On Wed, Sep 18, 2019, 22:09 Oskar Wallgren ***@***.***> wrote:
Or borrow space from the vertical part of the pixmap. Just continue
writing the pixmap but roll back to 0, let it grow in size vertically and
continue writing/reading.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#3378?email_source=notifications&email_token=ACEBLGTAVT25GVOL7CNIAADQKKDIZA5CNFSM4DBBEMW2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD7BJL5Q#issuecomment-532846070>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACEBLGVICS2UWZR562QXRA3QKKDIZANCNFSM4DBBEMWQ>
.
|
The current implementation seems to be quite inefficient with regards to memory performance. I have added some debug code to the implementation of If I open the project contained in the file sampleend.zip (see original attachment above), extend the height of the sample track to a nice height for my screen and zoom in to 1600% then the size of the widget (and the associated A potential fix might be to make the tracks aware of the zoom level and the area that needs a redraw and to only redraw that area on the fly without any caching. |
The end of the SampleTCOView of long Sample Tracks sometimes gets distorted.
I've only seen this occasionally with really long samples, 30+ minutes, so far.The text was updated successfully, but these errors were encountered: