Hi Brent
I grew up on B&W photography, it was easy to develop yourself and was loads cheaper than colour.
When you say single-pass filter do you mean this method??
display.setDrawMode( "forceRender" ) local x = display.contentCenterX local y = display.contentCenterY local image = display.newRect( x, y, display.contentWidth, display.contentHeight ) image.fill = { type = "camera" } image.fill.effect = "filter.grayscale"
if so, then it works no problem at all.
Multi-pass also works no problem at all on a static image, it just won’t work on a live feed.
Unfortunately I can’t take a snapshot of the camera feed and multi-pass that as I need the user to be able to live edit the feed and view in real-time the changes that they are making. The only way I can see to do it with the snapshot method is to have it set up in an enterFrame event (taking 30/60 snapshots of the feed every second) , but surely there would be performance issues with that??