Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SolDev69 committed Apr 26, 2024
1 parent 7e36ffd commit d33b112
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -461,9 +461,8 @@ public static String loadGraphicsLibrary(){
}


if (LOCAL_RENDERER)
if (LOCAL_RENDERER.contains("mesa"))
renderLibrary = "libOSMesa_.so";
if (LOCAL_RENDERER.contains("mesa"))
renderLibrary = "libOSMesa_.so";

if (!dlopen(renderLibrary) && !dlopen(findInLdLibPath(renderLibrary))) {
Log.e("RENDER_LIBRARY","Failed to load renderer " + renderLibrary + ". Falling back to GL4ES 1.1.4");
Expand Down

0 comments on commit d33b112

Please sign in to comment.