public interface IPostProcessor
Modifier and Type | Method and Description |
---|---|
void |
dispose()
Will be called when a post processor gets removed from a framebuffer and
should be called, when the processor gets garbage collected.
|
void |
init(FrameBuffer buffer)
Initialize the processor.
|
boolean |
isInitialized()
Has to return true if the init()-method has run correctly and should
return false after the processor has been disposed (but doesn't have to,
if an implementation requires something else...no problem).
|
void |
process()
Does the actual processing.
|
void init(FrameBuffer buffer)
buffer
- the FrameBuffervoid process()
void dispose()
boolean isInitialized()