Eclipse trouble with P3D rendering
in
Android Processing
•
8 months ago
I exported the following android sketch from processing 2.0b7 and imported to Eclipse. It runs on my android device just fine if I don't use the P3D renderer. When I try to use the P3D renderer, the device will show a grey screen, become unresponsive and eventually it will reboot. While the screen is grey, I'll get the following message repeatedly in LogCat:
Just wondering if anyone else has had this issue and if you were able to resolve it. I've spent all day with no luck.
W/SharedBufferStack(1303): waitForCondition(LockCondition) timed out (identity=23, status=0). CPU may be pegged. trying again.
Just wondering if anyone else has had this issue and if you were able to resolve it. I've spent all day with no luck.
- public class TestP3D extends PApplet {
- public void setup() {
- orientation(LANDSCAPE);
- noStroke();
- fill(255);
- }
- public void draw() {
- background(0);
- rect(100, 100, 400, 400);
- }
- public int sketchWidth() {
- return 800;
- }
- public int sketchHeight() {
- return 480;
- }
- public String sketchRenderer() {
- return P3D;
- }
- }
1