I've read that using std:thread is better than SFML Thread if they are availabe.
To me they aren't (MinGW doesn't support them).
Since I'm programming for myself, I guess I shouldn't get a headache to switch compiler, but I'd like to know how better std::thread are.
Are they more efficient ? (I guess not, since it looks like it's just system calls)
More flexible ?
More portable ? (Well, I guess not since that's fort portability that I don't use them
)
Or is it juste because relying on STL is considered better ?