Re: GL_ARB_vertex_buffer_object not available on Mac?
Posted by Wade Walker on Dec 31, 2018; 11:54pm
URL: https://forum.jogamp.org/GL-ARB-vertex-buffer-object-not-available-on-Mac-tp4039309p4039357.html
Yes, the current code does call java.lang.ClassLoader.findLibrary(), but it seems like the actual loading is done by System.load( pathname ) or System.loadLibrary( libname ), which are still freely accessible in Java 11. So I'm not sure what the point is of calling findLibrary() -- why not just load it? If we're using JOGL's automatic native extraction from JAR, then we know the pathname already (since we extracted it), so we can call System.load(); if the user has set -Djava.library.path, then System.loadLibrary() will find the libraries there by libname.