# HG changeset patch # User Sam # Date 1682878573 -25200 # Node ID 061054515d2864d07e78a6069e8250679923e74d # Parent 4d4f7a2eb6cac894a386c4671e5d303589ed6631 fix: API change diff -r 4d4f7a2eb6ca -r 061054515d28 tests/test_vulkan_wrapper.nim --- a/tests/test_vulkan_wrapper.nim Mon May 01 01:15:39 2023 +0700 +++ b/tests/test_vulkan_wrapper.nim Mon May 01 01:16:13 2023 +0700 @@ -111,8 +111,8 @@ # INIT RENDERER: const vertexInput = @[ - attr[Vec3f]("position", memoryLocation=VRAM), - attr[Vec3f]("color", memoryLocation=RAM), + attr[Vec3f]("position", memoryPerformanceHint=PreferFastRead), + attr[Vec3f]("color", memoryPerformanceHint=PreferFastWrite), attr[Vec3f]("translate", perInstance=true) ] vertexOutput = @[attr[Vec3f]("outcolor")]