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

Author Topic: [Solved] SFML and Multi Threading  (Read 3850 times)

0 Members and 1 Guest are viewing this topic.

reduz

  • Newbie
  • *
  • Posts: 12
    • View Profile
[Solved] SFML and Multi Threading
« on: July 03, 2008, 08:39:10 pm »
Hi! I intend to give a try to SFML at the small game studio were i´m working at.
We tried to use SDL for portability, but it really has a lof of design limitations, so I´m wondering the same things about SFML.

First of all, how multi-threaded is SFML? In modern games that utilize OpenGL, it is very common that one thread handles keyboard, logic, and many OS ops, and another thread exclusively does scene culling and rendering, as this scales into multicores and modern game consoles. So, is it possible in SFML to move the graphics to a separate thread (And get the OpenGL context with it) while the rest of SFML runs in the main thread?
Because as said before, SDL is not designed and not able to do this, and this is a very important feature needed for modern 3D engines.

Thanks in Advace!

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
[Solved] SFML and Multi Threading
« Reply #1 on: July 04, 2008, 03:25:33 am »
A lot of efforts have been made to make SFML multi-thread compliant.

First, you have explicit control over binding the OpenGL context, so you can move it to any thread. Then, events handling have been separated from rendering code, so again you can put it in a separate thread.

However, not all the classes have been designed and tested with a multi-thread architecture in mind, so there might be some code which requires explicit synchronization or special care regarding concurrent access. And I'll be glad to improve SFML if you can find such issues :)
Laurent Gomila - SFML developer

reduz

  • Newbie
  • *
  • Posts: 12
    • View Profile
[Solved] SFML and Multi Threading
« Reply #2 on: July 04, 2008, 08:12:09 am »
Quote from: "Laurent"

However, not all the classes have been designed and tested with a multi-thread architecture in mind, so there might be some code which requires explicit synchronization or special care regarding concurrent access. And I'll be glad to improve SFML if you can find such issues :)


This is great to know, and I will undoubtly make sure to let the developers know of any problems I may find.

Also, I wanted to ask... SDL has this really bad problem that resizing a window destroys the opengl context and there is nothing that can be done about it (textures/arrays and anything other on video memory are lost). do you know if SFML works around this issue properly?

Thanks!

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
[Solved] SFML and Multi Threading
« Reply #3 on: July 04, 2008, 11:50:21 am »
You mean, resizing from the code (ie. recreating the window) ?

Anyway, SFML always keeps a dummy OpenGL context alive until the end of the application, which is shared with all other contexts. So your resources are never lost.

And later, I'll probably add a function to let you resize the window without completely recreating it.
Laurent Gomila - SFML developer

 

anything