From 95f4ccf5f236072049b2493c07412919264a036d Mon Sep 17 00:00:00 2001 From: Edwin Jakobs Date: Tue, 1 Feb 2022 09:42:49 +0100 Subject: [PATCH] [orx-fx] Change order of settings and rendering in DemoDistortLenses01.kt --- orx-fx/src/demo/kotlin/DemoDistortLenses01.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/orx-fx/src/demo/kotlin/DemoDistortLenses01.kt b/orx-fx/src/demo/kotlin/DemoDistortLenses01.kt index e4812cdf..95fb6da4 100644 --- a/orx-fx/src/demo/kotlin/DemoDistortLenses01.kt +++ b/orx-fx/src/demo/kotlin/DemoDistortLenses01.kt @@ -15,10 +15,9 @@ fun main() = application { val lenses = Lenses() val edges = image.createEquivalent() extend { - lenses.bicubicFiltering = false - lenses.apply(image, edges) lenses.rotation = 0.0 lenses.scale = 1.4 + lenses.apply(image, edges) drawer.image(edges) } }