From ba9bf70a8706f62586e3e9affdec6a47dbaa80ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulrik=20G=C3=BCnther?= Date: Fri, 14 Dec 2018 16:08:39 +0100 Subject: [PATCH] SceneryContext: Limit logging --- src/main/kotlin/graphics/scenery/volumes/bdv/SceneryContext.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/kotlin/graphics/scenery/volumes/bdv/SceneryContext.kt b/src/main/kotlin/graphics/scenery/volumes/bdv/SceneryContext.kt index 88fe22726..3aaebaf0a 100644 --- a/src/main/kotlin/graphics/scenery/volumes/bdv/SceneryContext.kt +++ b/src/main/kotlin/graphics/scenery/volumes/bdv/SceneryContext.kt @@ -55,7 +55,6 @@ open class SceneryContext(val node: Volume) : GpuContext { * Sets the uniform with [name] to the Integer [v0]. */ override fun setUniform1i(name: String, v0: Int) { - logger.info("Adding binding for $name to $v0") if(name.startsWith("volumeCache") || name.startsWith("lutSampler")) { val binding = bindings.entries.find { it.value.binding == v0 } if(binding != null) {