Hello. I encountered the same issue testing masks and containers on my Samsung Tab 3 (7-inch). Similar to @joe528, this issue never showed up when I was testing on the Simulator nor on my iPhone 5.
I made a little test program.
Testing Containers:
-- TEST 1: CONTAINER local mySheet = display.newImageRect("dashboard-main.png", 480,320); local myContainer = display.newContainer(480,320); myContainer:insert(mySheet); myContainer.x = display.contentWidth \* 0.5; myContainer.y = display.contentHeight \* 0.5;
Testing Masks:
-- TEST 2: MASK local mySheet = display.newImageRect("dashboard-main.png", 480,320); local myMask = graphics.newMask( "simple\_mask.jpg" ) mySheet:setMask(myMask); mySheet.x = display.contentWidth \* 0.5; mySheet.y = display.contentHeight \* 0.5;
Surely enough, the same issues came up. On the Simulator and my iPhone 5, I received results that you would expect. On the Tab 3, I received odd results, similar to the ones @joe528 encountered (you’re not alone!).
Is this issue still being looked into? Thank you!