# HG changeset patch # User sam # Date 1712051303 -25200 # Node ID ea10907b9b6024038fa2cf41e8b2365b114cfd2d # Parent dd3c65f285e211954d5a2e97a11ec2151dc72ff6 fix: typo diff -r dd3c65f285e2 -r ea10907b9b60 semicongine/renderer.nim --- a/semicongine/renderer.nim Tue Apr 02 16:19:31 2024 +0700 +++ b/semicongine/renderer.nim Tue Apr 02 16:48:23 2024 +0700 @@ -73,7 +73,7 @@ result.queue = device.firstGraphicsQueue().get() result.commandBufferPool = device.createCommandBufferPool(result.queue.family, swapchain.get().inFlightFrames) result.swapchain = swapchain.get() - result.emptyTexture = device.uploadTexture(result.queue, EMPTYTEXTURE) + result.emptyTexture = device.uploadTexture(result.queue, EMPTY_TEXTURE) func inputs(renderer: Renderer, scene: Scene): seq[ShaderAttribute] = var found: Table[string, ShaderAttribute]