Skip to content

Commit

Permalink
update gdx to 1.9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
JFixby committed Aug 27, 2019
1 parent 6918cd0 commit 86f2f8a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
5 changes: 1 addition & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ buildscript {

ext {
scarabeiVersion = "5.2.3"
gdxVersion = "1.9.6"
//gdxJitPackVersion = "1.9.6"


gdxVersion = "1.9.10"
}

allprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
import com.badlogic.gdx.graphics.glutils.ShaderProgram;
import com.badlogic.gdx.utils.GdxRuntimeException;
import com.badlogic.gdx.utils.SnapshotArray;
import com.jfixby.scarabei.api.err.Err;

import android.opengl.GLSurfaceView;
import android.opengl.GLSurfaceView.EGLConfigChooser;
Expand Down Expand Up @@ -766,4 +767,14 @@ public AndroidMonitor (final int virtualX, final int virtualY, final String name
super(virtualX, virtualY, name);
}
}

@Override
public void setGL20 (final GL20 gl20) {
Err.throwNotImplementedYet();
}

@Override
public void setGL30 (final GL30 gl30) {
Err.throwNotImplementedYet();
}
}

0 comments on commit 86f2f8a

Please sign in to comment.