1
Graphics / Re: RenderWindow only displaying one object
« on: March 16, 2015, 06:58:19 pm »
Fixed it by glEnable(GL_DEPTH_TEST);
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.
sf::Movie movie;
movie.openFromFile("insert file");
movie.play();
while(true)
{
movie.update();
sf::Texture tex = movie.getCurrentImage();
sf::Image image = tex.copyToImage();
image.saveToFile("use a directory on your desktop");
}