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

Author Topic: OpenGL Error in x86_64 windows  (Read 723 times)

0 Members and 1 Guest are viewing this topic.

vyal

  • Newbie
  • *
  • Posts: 4
    • View Profile
OpenGL Error in x86_64 windows
« on: May 17, 2014, 04:10:05 pm »
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:
Code: [Select]
#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;
}

vyal

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: OpenGL Error in x86_64 windows
« Reply #1 on: May 17, 2014, 04:31:04 pm »
ignore. It turns out to be problem in my virtual machine  :'(