Browse Source

examples/Canvas: Clamp sampling to stop the bleeding;

bjorn 7 years ago
parent
commit
2412c53aa0
1 changed files with 3 additions and 0 deletions
  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