diff --git a/orx-syphon/src/test/kotlin/ClientExample.kt b/orx-syphon/src/test/kotlin/ClientExample.kt index d11f98b6..6744fc6b 100644 --- a/orx-syphon/src/test/kotlin/ClientExample.kt +++ b/orx-syphon/src/test/kotlin/ClientExample.kt @@ -1,5 +1,6 @@ import org.openrndr.application import org.openrndr.color.ColorRGBa +import org.openrndr.extra.syphon.SyphonClient fun main() = application { diff --git a/orx-syphon/src/test/kotlin/ServerExample.kt b/orx-syphon/src/test/kotlin/ServerExample.kt index 2aa83e10..bea9ece4 100644 --- a/orx-syphon/src/test/kotlin/ServerExample.kt +++ b/orx-syphon/src/test/kotlin/ServerExample.kt @@ -1,5 +1,6 @@ import org.openrndr.application import org.openrndr.color.ColorRGBa +import org.openrndr.extra.syphon.SyphonServer import kotlin.math.sin diff --git a/orx-syphon/src/test/kotlin/ServerExampleAlternateRenderTarget.kt b/orx-syphon/src/test/kotlin/ServerExampleAlternateRenderTarget.kt index 54ff4875..27299fcf 100644 --- a/orx-syphon/src/test/kotlin/ServerExampleAlternateRenderTarget.kt +++ b/orx-syphon/src/test/kotlin/ServerExampleAlternateRenderTarget.kt @@ -2,6 +2,7 @@ import org.openrndr.application import org.openrndr.color.ColorRGBa import org.openrndr.draw.isolatedWithTarget import org.openrndr.draw.renderTarget +import org.openrndr.extra.syphon.SyphonServer import kotlin.math.*