I am having a problem loading the jogl_cg native lib when running my app via Java WebStart. I have the following lines…
System.loadLibrary(“jogl”);
System.loadLibrary(“jogl_cg”);
And when I load the jnlp file, the OS complains because it can’t find the shared library “cg”. I would assume that the _ character is screwing this up.
If I don’t load the jogl_cg then everything works fine (I am not yet using any cg specific code). But I need to get this figured out for future purposes.
Thanks.