Skip to content

Commit

Permalink
removed trans option from open_pixelbuffer example
Browse files Browse the repository at this point in the history
  • Loading branch information
wouterverweirder committed Dec 10, 2014
1 parent 63060b5 commit d457592
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/open_pixelbuffer.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for(var y = 0; y < h; y++) {
}
}

lwip.open(buffer, { width: w, height: h, trans: true }, function(err, image) {
lwip.open(buffer, { width: w, height: h }, function(err, image) {
if (err) return console.log("err open", err);
image.batch()
.blur(9)
Expand Down

0 comments on commit d457592

Please sign in to comment.