Files
react-native-svg/apple/ViewManagers/RNSVGFeGaussianBlurManager.h
Jakub Grzywacz 44254df9fb feat: add FeGaussianBlur filter (#2352)
# Summary

Continuation of #2316 
Introducing new filter `FeGaussianBlur`.

### Implementation notes

On Android there is no easy way to fully implement Gaussian blur, as
there is no native api for this. While a basic implementation is
possible with `RenderScript`, it does not allow for blur in one axis and
greater than `25`

## Test Plan

Example app -> Filters -> FeGaussianBlur

## Compatibility

| OS      | Implemented |
| ------- | :---------: |
| iOS     |         |
| Android |         |
2024-07-25 11:46:45 +02:00

6 lines
115 B
Objective-C

#import "RNSVGFilterPrimitiveManager.h"
@interface RNSVGFeGaussianBlurManager : RNSVGFilterPrimitiveManager
@end