I downloaded and installed GCC 4.7 TDM (SJLJ) - 64 bits within my 64 bit GCC-TDM in Windows XP SP3 64 bit. It is running under virtualbox. 3d acceleration is working very well- guest additions are installed.
I got this error message:
OpenGL Warning: DrvShareLists: unsupported
OpenGL Warning: DrvShareLists: unsupported
What is going wrong? And by the way I thought SFML use DirectX in windows instead of OpenGL. By the way here is the sample program I tried to run:
#include <SFML/Window.hpp>
int main()
{
sf::Window window(sf::VideoMode(800, 600), "My window");
// run the program as long as the window is open
while (window.isOpen())
{
// check all the window's events that were triggered since the last iteration of the loop
sf::Event event;
while (window.pollEvent(event))
{
// "close requested" event: we close the window
if (event.type == sf::Event::Closed)
window.close();
}
window.display();
}
return 0;
}