1
Graphics / Re: Combination of several sf::View
« on: July 27, 2017, 07:40:04 pm »
Unfortunately, this does not work, because redraw() will be called as often as the widgets from the container will visually change (when hovered, pressed, ...(and if there are many of them, then the chance for updating the renderer is higher))
Also, unstable rendering is complicated by the fact that widgets from the container don't have callbacks (not provided and not used in practice, except for this case), which could tell that the container needs redraw. In this case, I need to create a texture every time. That's why I can't avoid FPS losing
Also, unstable rendering is complicated by the fact that widgets from the container don't have callbacks (not provided and not used in practice, except for this case), which could tell that the container needs redraw. In this case, I need to create a texture every time. That's why I can't avoid FPS losing