Re: A strange problem – a strange solution
Posted by
Alexei A. Morozov on
Oct 09, 2013; 3:48pm
URL: https://forum.jogamp.org/A-strange-problem-a-strange-solution-tp4030149p4030218.html
Hi, Sven
> Pls try to issue a GLProfile.initSingleton() upfront to ensure all
> GlueGen/JOGL related classes (and native JAR files) are loaded.
> This should not be necessary .. but thats the only test I could make here ..
I have implemented your test. Well, the result is negative. The program creates a bit different log, but has the same terrible end. :)
Case 1:
// Color3f color3d= new Color3f(0,0,0);
log1.txtCase 2:
GLProfile.initSingleton();
log2.txtCase 3:
Color3f color3d= new Color3f(0,0,0);
log3.txtSincerely yours,
Alexei