# HG changeset patch
# User Sam <sam@basx.dev>
# Date 1682878573 -25200
# Node ID b965f22fc9c3b2ee68e5fcf5b6730a573aa2c71e
# Parent  c2f04f016104767e39572f579bbcff9c878157be
fix: API change

diff -r c2f04f016104 -r b965f22fc9c3 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")]