Hi everyone !
I have used SFML for many years. This is my first time posting here though, I think I have really tried everything and I cannot find similar problems on the web...
I recently successfully compiled SFML on RPI 3 (with Raspbian) following the instructions here :
https://github.com/mickelson/sfml-piI then tested the basic code at the end of this tutorial (my include files are located in /usr/include/SFML)
http://www.sfml-dev.org/tutorials/2.4/start-vc.phpI successfully compile on my RPI without any warning with this line :
g++ main.cpp -o prgrm -lsfml-graphics -lsfml-window -lsfml-system
(my .so files are located in /usr/lib)
When executing prgrm, the result is visually as expected, but the 200*200 squared image has no title bar. When I click on it, I am actually clicking on whatever application is "under" the image. So I cannot move the "window" nor interact with it nor close it (I have not found any other solution than killing the app in Task Manager).
Also I tested 2 solutions to this : adding the option sf::Style::Titlebar or sf::Style::Default do not help.
I have tested some looping animations on the image, those work.
I hope this kind of symptom is known by somebody here, please let me know !