@Laurent
Good morning sir, Sorry for my late reply. Im going to describe my problem now.
My real problem is I keep getting this transparent window when running this code in vs express and codeblocks 13.12 gnu gcc compiler
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow win(sf::VideoMode(200, 200), "SFML Test");
sf::CircleShape shape(100.f);
shape.setFillColor(sf::Color::Green);
while (win.isOpen())
{
sf::Event event;
while (win.pollEvent(event))
{
if (event.type == sf::Event::Closed)
{
win.close();
}
}
win.clear();
win.draw(shape);
win.display();
}
return 0;
}
It should draw the green circle but nothing.
I tried first your binary release at the official website.
then i tried to build it too
I had no problem when using VS community
Thank you sir.