Despite that, the mobile ports of SFML are still based on OpenGL ES 1.1, which only supports the fixed render pipeline, which means unfortunately there isn't any shader support.Which makes the issue even more odd on that end.
You should not use global SFML resources since it can cause many different issues.Rogger. Wanted to refactor that code anyhow, but it was quick&dirty working quite fine. (But could also explain why OSX is causing issues)
How so?Despite that, the mobile ports of SFML are still based on OpenGL ES 1.1, which only supports the fixed render pipeline, which means unfortunately there isn't any shader support.Which makes the issue even more odd on that end.
What's odd?Because on windows and linux, when shaders are not supported, creating an sf::Shader object is just fine, but using it results in warning/error notices that shader support is not working.
And I think you mean that no SFML objects should be created before main() is run? Cause a private static member isn't strictly global, but constructed at the same point in time and thus will cause the same issues.Yes, we mean global scope, not global access. What's important is when the variable is constructed and destroyed, not how it is available to the rest of the code.
Not supported, and crash and burn in hell when you try to use it are two very different things.You're absolutely right. A crash is almost always a bug, unless you're doing something that is clearly documented as undefined behaviour.