You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a sane way to render to a framebuffer/FBO in piston? Most of my 2D graphics never change and I would like to render them only once and then reuse the FBO until they change. Is that possible? I found this old SO response which explains how to do it using raw unsafe OpenGL commands. I tried the gfx_core example but it no longer works for me. Is this supported at all? Or is this intentionally unsupported?
The text was updated successfully, but these errors were encountered:
Should I use the gl calls directly or is there something I should try from gfx/gfx_core. Are PRs for this wanted in piston or should I create a separate crate for this? To me this seems to be something which exists in most game framework.
As a background: We are coming from a python framework which supports this. Currently, I'm not able to match the performance of kivy on embedded systems with my piston PoC which should be much faster in general. Piston actually is faster as long as there are few elements on screen but with a lot of elements interpreted python with FBOs wins because it simply does less work.
Is there a sane way to render to a framebuffer/FBO in piston? Most of my 2D graphics never change and I would like to render them only once and then reuse the FBO until they change. Is that possible? I found this old SO response which explains how to do it using raw unsafe OpenGL commands. I tried the gfx_core example but it no longer works for me. Is this supported at all? Or is this intentionally unsupported?
The text was updated successfully, but these errors were encountered: