Open GoogleCodeExporter opened 8 years ago
I've got the same problem. Anybody solved the problem?
Original comment by jakubo...@gmail.com
on 2 Jan 2014 at 1:50
When you run the hello world, you notice the hotspot is not in the centre of
the screen. However pressing the centre of the screen hits the hotspot.
Original comment by alanatbu...@gmail.com
on 6 May 2014 at 11:37
I have seen this on motorola Xoom. Running 4.0.4
Original comment by alanatbu...@gmail.com
on 6 May 2014 at 11:39
It's down to the unusual use of viewport.
In PLRenderer I have fixed by this:
public boolean resizeFromLayer(GL11ExtensionPack gl11ep)
mViewport.x=0;
mViewport.y=0;
mViewport.width = mSize.width;
mViewport.height = mSize.height;
public void render(GL10 gl)
float viewportscale = PLConstants.kViewportScale
* mViewport.width / (float) PLConstants.kViewportSize;
gl.glScalef(1.0f, mViewport.width / (float) mViewport.height, viewportscale);
Original comment by alanatbu...@gmail.com
on 6 May 2014 at 1:52
Original issue reported on code.google.com by
shi...@gmail.com
on 29 Nov 2013 at 3:31