CameraKit / blurkit-android

The missing Android blurring library. Fast blur-behind layout that parallels iOS.
MIT License
3.72k stars 309 forks source link

Why does it continuosly add to the blur every fps update? #83

Open behelit opened 2 years ago

behelit commented 2 years ago

I'm using the defaults form the examples but the blur appends to itself every update. If I set the fps to 0, every redraw of the fragment will add additional blur on top of the existing blur.

marticztn commented 2 years ago

That is one of the "problem" of this library. If you want to pause the update, just call blurLayout.pauseBlur();, that seems to be the only way to stop the blur from updating.