We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello
I'm looking for a smart way to create a Blank Processing Window without P3D
I want to be abel to acess the JOGL functions described here https://github.com/processing/processing/wiki/Advanced-OpenGL
Best it would be if i can access also other Java OpenGL Libraries like LWJGL
Thank you
Answers
Wait a second, i think i missunderstood something.
I have to create a ProcessingWindow as a Wrapper of JOGL.
https://github.com/processing/processing/blob/master/core/src/processing/opengl/PGraphicsOpenGL.java#L13630
But anyway, let me rephrase, how would you write an extend PApplet class that can hold Java OpenGL methods ...
What i trying to do is to avoid predefined P3D functions. I'm already in the RAW mode to have a second layer is kind of overkill.
Are you also trying to avoid P2D? P2D and P3D are both OpenGL based.
@jeremydouglass
Yes, for my own education. avoid P2D and P3D
I read old processing cores to start new from scratch
I think what i have to do is a basic JOGL window and then declare all processing functions like draw or setup. Maybe a user done this already in some kind.