Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - hansefred

Pages: [1]
1
Graphics / Re: Problems with sf::RenderWindow::draw ()
« on: November 15, 2013, 12:54:39 pm »
Thats not my normal code thx for answer

2
Graphics / Re: Problems with sf::RenderWindow::draw ()
« on: November 15, 2013, 12:16:42 pm »
That was not my code it was only an example.  normaly i named my variable not a or b .

3
Graphics / Problems with sf::RenderWindow::draw ()
« on: November 14, 2013, 08:52:17 pm »
I add simple draw function to my project but now every time i start the .exe the window don't answer

 sf::RenderWindow a (sf::VideoMode (1280,720),"TRY");
       
        sf::Text b ("HELLO");
        sf::Text c ("HELLO");

       
       
        a.clear (sf::Color::Blue);
        a.draw (b);
        a.draw (c);
        a.display ();
 

Pages: [1]
anything