Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 405 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 405 Bytes

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
        }
    }
}