Test in netbeans

Hi i downloaded source from svn to netbeans. I added all jars form lib and one from native lib and i still get error in one file: com.g3d.renderer.lwjgl.LwjglRenderer on line 1048.


 

if (GLContext.getCapabilities().GL_ARB_framebuffer_object){ // here is error incompatible types
                    // apparently required by OpenGL3.0?!
                    glGenerateMipmapEXT(target);
                }else{
                    glTexParameteri(target, GL_GENERATE_MIPMAP, GL_TRUE);
                }



second thin is when i try to run any test I get

Uncaught exception thrown in Thread[main,5,main]
java.lang.UnsatisfiedLinkError: no jogl in java.library.path

I added all the libs and option to vm -Djava.library.path="E:/NetBeansProjects/Testowe/JME3/lib/"

BTW. It nice that jME is going to be rewritten, the best java 3d engine will become even better :).
Micz said:

Hi i downloaded source from svn to netbeans. I added all jars form lib and one from native lib and i still get error in one file: com.g3d.renderer.lwjgl.LwjglRenderer on line 1048.

This issue has been fixed, update from SVN  :)

Micz said:

Uncaught exception thrown in Thread[main,5,main]
java.lang.UnsatisfiedLinkError: no jogl in java.library.path

I added all the libs and option to vm -Djava.library.path="E:/NetBeansProjects/Testowe/JME3/lib/"

BTW. It nice that jME is going to be rewritten, the best java 3d engine will become even better :).


If you're using the JOGL renderer, you need to include the JOGL dll files, not the jars.
Check this wiki page for instructions: http://code.google.com/p/jmonkeyengine/wiki/jME3Depends

Micz said:

BTW. It nice that jME is going to be rewritten, the best java 3d engine will become even better Smiley.

Yeah, it's nice to refresh the code once in a while  :)