Skip to content

Commit

Permalink
Use GLES3 for Android with Kong for now
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Oct 5, 2023
1 parent c6da7c1 commit cc3ece8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion kfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,12 @@ else if (platform === Platform.Android) {
project.addLib('log');
project.addLib('android');
project.addLib('EGL');
project.addLib('GLESv2');
if (Options.kong) {
project.addLib('GLESv3');
}
else {
project.addLib('GLESv2');
}
project.addLib('OpenSLES');
project.addLib('OpenMAXAL');
}
Expand Down

0 comments on commit cc3ece8

Please sign in to comment.