orx-filter-extension
Provides extension methods for Program that can be used to provide Filters to the extend() mechanism
API
fun <F : Filter> Program.extend(filter: F, configuration: F.() -> Unit = {}): Extension
Usage
fun main() = application {
program {
extend(FXAA()) {
// this function is executed every frame
}
}
}