# HG changeset patch # User Sam # Date 1682157175 -25200 # Node ID 177bfb85adb1f4c3d936ca530b4c59b790c27499 # Parent 5eadc1e1d6d8b53b71cba1e7afe90516b47b3eb7 add: small buffer adjustment diff -r 5eadc1e1d6d8 -r 177bfb85adb1 examples/E02_squares.nim --- a/examples/E02_squares.nim Sat Apr 22 16:48:07 2023 +0700 +++ b/examples/E02_squares.nim Sat Apr 22 16:52:55 2023 +0700 @@ -47,7 +47,7 @@ const vertexInput = @[ attr[Vec3f]("position", memoryLocation=VRAM), - attr[Vec3f]("color", memoryLocation=VRAM), + attr[Vec3f]("color", memoryLocation=VRAMVisible), attr[uint32]("index", memoryLocation=VRAM), ] vertexOutput = @[attr[Vec3f]("outcolor")]