1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Make it possible to attach Component updates to vblank events

This commit is contained in:
attila 2022-10-07 19:46:13 +02:00
parent 542312296f
commit 1da9ccd36c
12 changed files with 420 additions and 121 deletions

View file

@ -93,6 +93,12 @@ public:
pixels per inch, divide this by the Display::scale value.
*/
double dpi;
/** The vertical refresh rate of the display if applicable.
Currently this is only used on Linux for display rate repainting.
*/
std::optional<double> verticalFrequencyHz;
};
//==============================================================================