diff options
-rw-r--r-- | maven/jp4da/jp4da-android/.classpath | 7 | ||||
-rw-r--r-- | src/demos/es2/RawGL2ES2demo.java | 4 |
2 files changed, 3 insertions, 8 deletions
diff --git a/maven/jp4da/jp4da-android/.classpath b/maven/jp4da/jp4da-android/.classpath index 9d5b680..ea1eb77 100644 --- a/maven/jp4da/jp4da-android/.classpath +++ b/maven/jp4da/jp4da-android/.classpath @@ -3,18 +3,11 @@ <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> <classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> <classpathentry kind="src" path="gen"/> - <classpathentry including="**/*.java" kind="src" path="src/main/resources"/> - <classpathentry including="**/*.java" kind="src" path="src/test/resources"/> <classpathentry kind="src" output="bin/classes" path="src/main/java"> <attributes> <attribute name="maven.pomderived" value="true"/> </attributes> </classpathentry> - <classpathentry kind="src" output="bin/classes" path="src/test/java"> - <attributes> - <attribute name="maven.pomderived" value="true"/> - </attributes> - </classpathentry> <classpathentry exported="true" kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> <attributes> <attribute name="maven.pomderived" value="true"/> diff --git a/src/demos/es2/RawGL2ES2demo.java b/src/demos/es2/RawGL2ES2demo.java index 4423c33..c16423a 100644 --- a/src/demos/es2/RawGL2ES2demo.java +++ b/src/demos/es2/RawGL2ES2demo.java @@ -26,6 +26,8 @@ * or implied, of JogAmp Community. */ +package demos.es2; + import javax.media.opengl.GL; import javax.media.opengl.GL2ES2; import javax.media.opengl.GLAutoDrawable; @@ -282,7 +284,7 @@ static final String fragmentShader = // GLWindow will call the GLEventListener init, reshape, display and dispose // functions when needed. glWindow.addGLEventListener(new RawGL2ES2demo() /* GLEventListener */); - Animator animator = new Animator(glWindow); + Animator animator = new Animator(); animator.add(glWindow); animator.start(); } |