Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit 7a480f9

Browse files
authored
Merge pull request #4 from wcoder/feature/sync-v140
Sync with original library - v.1.4.0
2 parents 1ae8577 + f614b18 commit 7a480f9

File tree

14 files changed

+111
-521
lines changed

14 files changed

+111
-521
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,14 @@ Drawable windowBackground = decorView.Background;
4040
blurView.SetupWith(rootView)
4141
.WindowBackground(windowBackground)
4242
.BlurAlgorithm(new RenderScriptBlur(this))
43-
.BlurRadius(radius);
43+
.BlurRadius(radius)
44+
.SetHasFixedTransformationMatrix(true);
4445
```
4546

4647
Always try to choose the closest possible root layout to BlurView. This will greatly reduce the amount of work needed for creating View hierarchy snapshot.
4748

49+
You can use `SetHasFixedTransformationMatrix` in case if you are not animating your BlurView, this might slightly improve the performance as BlurView won't have to recalculate its transformation matrix on each frame.
50+
4851
## Supporting API < 17
4952

5053
```

appveyor.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

build.cake

Lines changed: 0 additions & 39 deletions
This file was deleted.

build.ps1

Lines changed: 0 additions & 235 deletions
This file was deleted.

0 commit comments

Comments
 (0)