projectM-visualizer / frontend-qt

:bangbang: CURRENTLY BROKEN :bangbang: - Will be fixed some time after the libprojectM 4.0 release! Help is highly appreciated. Qt-based standalone frontend to projectM. Currently supports Linux with PulseAudio or JACK audio backends.
GNU Lesser General Public License v2.1
12 stars 5 forks source link

fps limit in UI #7

Open VulkanLogic opened 4 years ago

VulkanLogic commented 4 years ago

UI has maximum input of 99 for fps but can be changed (and works) by changing the config in ~/.projectM/config.inp

milkdropper commented 4 years ago

I assume this is QT (the only app that has GUI settings configuration).

I looked at the code and this seems to be the design. Ideally the max should be the highest refresh rate of any monitor connected.

As a easy fix someone could edit projectm\src\projectM-qt\qprojectmconfigdialog.cpp and change: _ui.maxFPSSpinBox->setValue(settings.fps); to _ui.maxFPSSpinBox->setValue(240);

240 Hz is the highest refresh rate I have heard of.

On a side note can QT be compiled in windows?

revmischa commented 4 years ago

Theoretically... sure you can compile Qt for windows I wouldn't assume OP means "Qt" by "UI"

kblaschke commented 3 years ago

Would be a good idea to ditch both the PulseAudio and JACK specializations and add Portaudio support instead, then the Qt UI would also work fine on Windows and macOS.