Bump the event loop handling rate up to 60 Hz

This will also cause plugins to update their editors at 60 FPS. This was
kept at a lower value for performance reasons, but since the message
loop now no longer blocks event handling we can safely increase this.
This will double the amount of resources spent on drawing, but since
audio processing in a real world scenario almost never utilizes all
cores anyways this should not be an issue.
This commit is contained in:
Robbert van der Helm
2020-11-07 00:29:56 +01:00
parent 36f6e93216
commit 23cd2dd193
2 changed files with 9 additions and 3 deletions
+5
View File
@@ -41,6 +41,11 @@ Versioning](https://semver.org/spec/v2.0.0.html).
- As part of the communication rework the way the Wine process handles threading
has also been completely reworked.
- GUI updates for plugins that don't use hardware acceleration are now run at 60
Hz instead of 30 Hz. This was kept at 30 updates per second because that
seemed to be a typical rate for Windows VST hosts and because function calls
could not be processed while the GUI was being updated, but since that
limitation now no longer exists we can safely bump this up.
### Removed