nicklockwood / FXBlurView

[DEPRECATED]
Other
4.94k stars 713 forks source link

updateInterval can't be more than 1/60 #97

Open Igor-Palaguta opened 9 years ago

Igor-Palaguta commented 9 years ago

If I want to update blur rarely, it is impossible as we select min between 1/60 and updateInterval Instead of timeUntilNextUpdate = MIN(timeUntilNextUpdate, nextUpdate); Should be timeUntilNextUpdate = MAX(timeUntilNextUpdate, nextUpdate);