aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLookupHelper.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-11-26 10:00:34 +0100
committerSven Gothel <[email protected]>2023-11-26 10:00:34 +0100
commit736b717b5d6d2b2e7ac4066f54495e8e111d0e01 (patch)
tree42279678e14260bdddef04850137baad56d34280 /src/jogl/classes/jogamp/opengl/DesktopGLDynamicLookupHelper.java
parent3ee35be6e15298bb8366abd850cea01202418e25 (diff)
Bug 1479 - NativeLibrary: Add getNativeLibraryPath() returning actual native library path, support throughout DynamicLibraryBundle[Info]
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/DesktopGLDynamicLookupHelper.java')
-rw-r--r--src/jogl/classes/jogamp/opengl/DesktopGLDynamicLookupHelper.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLookupHelper.java b/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLookupHelper.java
index 5eb429774..a6e7f0ff5 100644
--- a/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLookupHelper.java
+++ b/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLookupHelper.java
@@ -48,10 +48,8 @@ public class DesktopGLDynamicLookupHelper extends GLDynamicLookupHelper {
gluLibNames.add("libGLU.so"); // unix
gluLibNames.add("GLU32"); // windows
gluLibNames.add("GLU"); // generic
- gluLib = loadFirstAvailable(gluLibNames, true, true, null, true);
- if(null != gluLib) {
- nativeLibraries.add(gluLib);
- }
+ gluLib = loadFirstAvailable(gluLibNames, true, true, null, true, "gluScaleImage");
+ toolLibraries.add(gluLib);
}
return null != gluLib ;
}