Update current status

This commit is contained in:
khanhduytran0 2020-09-08 12:01:59 +07:00
parent b9a016e4d3
commit 66c2da95d6
2 changed files with 7 additions and 6 deletions

View File

@ -9,12 +9,12 @@ A Minecraft: Java Edition launcher for Android based from Boardwalk. Support up-
- [x] **Removed** ~~BinaryExecutor: execute `java` binary, no `JNIInvocation`.~~
- [x] **Temporary removed** ~~JVDroid OpenJDK 11 (32 and 64-bit ARM and x86). Partial, no error `can't lock mutex`, but now exit with none output.~~
- [x] OpenJDK 9 Mobile port
- [ ] AWT/Swing for mod installer. Will use `Caciocavallo` project.
- [ ] OpenGL in OpenJDK environment. Use Boardwalk 2 method or other.
- [ ] AWT/Swing for mod installer.Will try own graphics environment~~use `Caciocavallo` project~~.
- [x] OpenGL in OpenJDK environment. Used Boardwalk 2 method.
- [ ] OpenAL 64-bit version
- [ ] Input keyboard and mouse events from ART to OpenJDK environment
- [ ] Support Minecraft 1.12 and below
- [ ] Support Minecraft 1.13 and above
- [ ] Support Minecraft 1.12 and below. Used GLFW stub.
- [x] Support Minecraft 1.13 and above. Will make a wrapper LWJGL2 to 3.
- [ ] More...
## Licenses

View File

@ -2,9 +2,10 @@ LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
# Link GLESv2 for test
LOCAL_LDLIBS := -ldl -llog -landroid -lEGL -lGLESv2
LOCAL_LDLIBS := -ldl -llog -landroid -lEGL
# -lGLESv2
LOCAL_MODULE := pojavexec
LOCAL_CFLAGS += -DGLES_TEST
# LOCAL_CFLAGS += -DGLES_TEST
LOCAL_SRC_FILES := \
egl_bridge.c \
jre_launcher.c \