Browse Source

examples/Canvas: Clamp sampling to stop the bleeding;

bjorn 7 năm trước cách đây
mục cha
commit
2412c53aa0
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      examples/Canvas/main.lua

+ 3 - 0
examples/Canvas/main.lua

@@ -82,6 +82,9 @@ function lovr.load()
       lovr.graphics.newCanvas(width, height),
       lovr.graphics.newCanvas(width, height)
     }
+
+    tempCanvas[1]:setWrap('clamp')
+    tempCanvas[2]:setWrap('clamp')
   end
 end