husker-dev / openglfx

OpenGL implementation for JavaFX

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is it possible to support shaders?

qq1053831109 opened this issue · comments

Is it possible to directly use the gl context of Javafx and support shaders. This allows you to create a 3D game engine based on Javafx

At the very beginning of my project, this was part of the GL content rendering mechanism into JavaFX.
But this solution has a large number of disadvantages, because we don't know what parameters are specified when creating an OpenGL context in JavaFX.
Also, we cannot specify the version and be sure of the allocated resources, such as FBO or VBO.

Therefore, a shared context mechanism was created. A new pure context is created that can share its objects with JavaFX.


Also, I don't recommend using JavaFX + openglfx to create games. You lose a lot of graphical settings, and add a lot of problems. It's better to use glfw (lwjgl) and imgui.


About shaders.
You can use shaders in OpenGLCanvas. But for easier use in the UI, I have created this issue #47.