Hello,
I’m trying to create a full-screen snapshot like this:
local snapshot = display.newSnapshot(display.contentWidth, display.contentHeight) snapshot.anchorX = 0 snapshot.anchorY = 0 snapshot.x = 0 snapshot.y = 0
But the content of the snapshot is only visible in the top-left quadrant of the screen. I have to do this to make it actually full-screen:
local snapshot = display.newSnapshot(display.contentWidth \* 2, display.contentHeight \* 2)
Why is that?
Note: I’m also running Graphics 1.0 compatibility mode.
Thanks,
George
EDIT: I’m on build 2014.2162.