From f5fd854694206178008fe9554d1f24ada821032c Mon Sep 17 00:00:00 2001 From: Moritz Zwerger Date: Mon, 18 Dec 2023 22:46:19 +0100 Subject: [PATCH] fix render test loader --- .../rendering/system/dummy/texture/DummyStaticTextureArray.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/integration-test/kotlin/de/bixilon/minosoft/gui/rendering/system/dummy/texture/DummyStaticTextureArray.kt b/src/integration-test/kotlin/de/bixilon/minosoft/gui/rendering/system/dummy/texture/DummyStaticTextureArray.kt index a63efaf69..bdca413dd 100644 --- a/src/integration-test/kotlin/de/bixilon/minosoft/gui/rendering/system/dummy/texture/DummyStaticTextureArray.kt +++ b/src/integration-test/kotlin/de/bixilon/minosoft/gui/rendering/system/dummy/texture/DummyStaticTextureArray.kt @@ -34,7 +34,8 @@ class DummyStaticTextureArray(context: RenderContext) : StaticTextureArray(conte } } - override fun load(latch: AbstractLatch?) { + override fun upload(latch: AbstractLatch?) { + super.upload(latch) animator.init() }