SFML community forums
General => General discussions => Topic started by: jfsimon1981 on May 06, 2022, 10:37:02 pm
-
Hi,
I was working on a beagle board project where some animations are done with SFML and it seems though working it was not performing fast. After discuss we understood that's probably due to the fact SFML uses OpenGL which is not accelerated and uses software emulation on this particular hardware.
Is there a way to build SFML differently so it uses other means to render than OpenGL ?
There is OpenGLES and otherwise Linux graphic libraries available.
Regards
Jean-François
-
You're a bit vague on the device itself, but you can build SFML with OpenGL ES support by setting SFML_OPENGL_ES when building SFML.
-
Hi,
Great news, it's a Beagleboard black with AM335x ti ARM based (v7) and SGX 530 graphic card which supports OpenGL ES 1 and 2.
Would SFML be accelerated ? At the moment it uses GL and the software emulation somehow, which works but it very slow (CPU emulation).
Thanks & regards,
Jean-François
-
Hello,
The question essentially is whether SFML will be hardware accellerated when compiled with SFML ES flag and using the 2D draw fuctons, scale, move, draw, animate sprites ...
Meaning I don't need to work with an OpenGLES context, indeed to work with SFML core functions (and not run through OpenGL emulation since the HW supports only GLES 1/2).
But I'll experiment with this as well though if someone already know clearly about that it'd help.
Thank you,
Jean-François
-
It's the graphics driver's responsibility to decide what to do with OpenGL or OpenGL ES calls.
Thus make sure you have a graphics driver installed and then all you can do is test it.
-
Thanks,
Jean-François