Package arc.fx.filters
Class MultipassVfxFilter
java.lang.Object
arc.fx.filters.MultipassVfxFilter
- All Implemented Interfaces:
Disposable
- Direct Known Subclasses:
Convolve2dFilter
,GaussianBlurFilter
The base class for any multi-pass filter.
Usually a multi-pass filter will make use of one or more single-pass filters,
promoting composition over inheritance.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract void
render
(PingPongBuffer pingPongBuffer) void
resize
(int width, int height) abstract void
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface arc.util.Disposable
dispose, isDisposed
-
Constructor Details
-
MultipassVfxFilter
public MultipassVfxFilter()
-
-
Method Details
-
resize
public void resize(int width, int height) - See Also:
-
setParams
public abstract void setParams()- See Also:
-
render
-