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 - Berengal

Pages: [1]
1
Window / Hanging when destroying GlContext on Linux
« on: April 15, 2011, 06:34:58 pm »
The last commit seems to have fixed it, thanks.

2
Window / Hanging when destroying GlContext on Linux
« on: April 15, 2011, 03:10:23 pm »
Using the latest from github, whenever a GlContext is destroyed the entire thread hangs, as demonstrated by this program:
Code: [Select]
#include <SFML/Window.hpp>

int main(void)
{
  {
    sf::Window window(sf::VideoMode(100, 100), "Test");
  }
  return 0;
}


I've tried this on Ubuntu 10.10, both 64bit and 32bit, and both hang. I've also tried on WinXP 32 bit, and there it works like it should.

I've investigated a bit and found that before commit fd0d18f12e0793911ea560f7afc4c79f4421f70c it works like it should.

Pages: [1]
anything