diff --git a/orx-fx/src/main/kotlin/color/Bloom.kt b/orx-fx/src/main/kotlin/blur/Bloom.kt similarity index 93% rename from orx-fx/src/main/kotlin/color/Bloom.kt rename to orx-fx/src/main/kotlin/blur/Bloom.kt index fc5e89ed..dc0c6052 100644 --- a/orx-fx/src/main/kotlin/color/Bloom.kt +++ b/orx-fx/src/main/kotlin/blur/Bloom.kt @@ -1,12 +1,11 @@ -package org.openrndr.extra.fx.color +package org.openrndr.extra.fx.blur import org.openrndr.draw.* import org.openrndr.extra.fx.blend.Add -import org.openrndr.extra.fx.blur.ApproximateGaussianBlur import org.openrndr.extra.fx.filterFragmentCode -class Bloom(blur: Filter = ApproximateGaussianBlur()) : Filter(Shader.createFromCode(filterVertexCode, filterFragmentCode("color/bloom.frag"))) { +class Bloom(blur: Filter = ApproximateGaussianBlur()) : Filter(Shader.createFromCode(filterVertexCode, filterFragmentCode("blur/bloom.frag"))) { /** * the blur filter to use for the bloom, default is Approximate Gaussian Blur */ diff --git a/orx-fx/src/main/resources/org/openrndr/extra/fx/gl3/color/bloom.frag b/orx-fx/src/main/resources/org/openrndr/extra/fx/gl3/blur/bloom.frag similarity index 100% rename from orx-fx/src/main/resources/org/openrndr/extra/fx/gl3/color/bloom.frag rename to orx-fx/src/main/resources/org/openrndr/extra/fx/gl3/blur/bloom.frag