-
Given iPhone 15 Pro, AUI apps would use up to 90hz instead of 120.
Using this would fix the issue: https://developer.apple.com/documentation/quartzcore/cadisplaylink/3875343-preferredframeraterange
-
Hey,
First of all Awesome concept!
Couple of questions:
1. Does your Library use CADisplayLink or?
2. 60fps?
3. Support for interactions while animation is happening?
4. Could you talk a little abo…
-
The new flyTo implementation uses `Date()` directly. Which is not the most sophisticated way of handling timing in animations. We should use [`CADisplayLink.targetTimestamp`](https://developer.apple.c…
-
In your C++ sample, called `[myGLView startAnimation];`, which I think is no need.
Render will be called in camera caputre loop. And CADisplayLink only will call selector when the display needs to r…
-
Would be great to have macOS support.
It doesn't look like there's a lot of UIKit-specific code: https://github.com/Pyroh/SlidingRuler/search?q=uikit
https://stackoverflow.com/questions/14158743…
-
**What you want IINA to do:**
I stumbled upon [this article](https://stevenpcurtis.medium.com/stop-using-swift-timers-use-cadisplaylink-1a603569b59c) which explains why this is a good idea. TLDR: `…
svobs updated
2 years ago
-
https://kangzhenpeng.github.io/2018/05/18/iOS-RunLoop-Apply-CADisplayLink/
-
https://kangzhenpeng.github.io/2018/05/18/iOS-RunLoop-Apply-CADisplayLink/
-
https://kangzhenpeng.github.io/2018/05/18/iOS-RunLoop-Apply-CADisplayLink/
-
Apple recently supported `CADisplayLink` on macOS, starting from macOS 14.0 onwards. According to @smoogipoo, there have been mentions that `CADisplayLink` helps better on frame timing than `CVDisplay…