# HG changeset patch # User sam # Date 1712051303 -25200 # Node ID 616f97e92270904866e7d792df25ef2286f0ceb4 # Parent 23c8072d7a53b83be63d2b3a26efe83129184eea fix: typo diff -r 23c8072d7a53 -r 616f97e92270 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]