Re: Exception: No shader code found
Posted by
fmorat on
Aug 17, 2023; 2:13am
URL: https://forum.jogamp.org/Exception-No-shader-code-found-tp4042834p4042875.html
I think I finally figured out what's going on. I didn't mention this before but I turned the jogam-fat.jar into a module by injecting a module-info.class. This is the source code of module-info.class:
module-info.javaThe reason I had to do this is because jlink requires jogamp-fat.jar to be a module.
You may notice that it is not exporting any of the packages that contain any resource files. In this specific case it is not exporting jogamp.opengl.shader.
Unfortunately I tried adding an export to that package and got a compile error saying that that package was empty. It did not like it that it doesn't have any class files.
So the reason it cannot see the shaders is becasue that specific package is not being exported, but it cannot be exported because it has not classes.
I believe it may work if instead I use the opens keyword. Need to try it out.
By the way, could not get the debug property set from the MacOS App bundle.