Skip to content

Commit 9092e5c

Browse files
committed
feat: fxaa was missing
1 parent 046fb7f commit 9092e5c

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/effects/FXAA.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { FXAAEffect } from 'postprocessing'
2+
import { wrapEffect } from '../util'
3+
4+
export const FXAA = wrapEffect(FXAAEffect)

src/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export * from './effects/SelectiveBloom'
2323
export * from './effects/Sepia'
2424
export * from './effects/SSAO'
2525
export * from './effects/SMAA'
26+
export * from './effects/FXAA'
2627
export * from './effects/Texture'
2728
export * from './effects/ToneMapping'
2829
export * from './effects/Vignette'

0 commit comments

Comments
 (0)