Jonny
Jonny
Github's not updating the PR for some reason despite having rebased the original branch - will do a new PR unless someone has a novel idea to solve. RE performance...
I think which error handling to use depends on the context so there’s not really a single one that fits them all. Perhaps best to look at individual parts of...
For clarity - the int functions don't do anything to help interoperability between different endian platforms. They assume little endian on both sides, and just convert to big endian while...
SDL backend uses a combination of SDL_GetMouseFocus() + SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH to check whether a window is hovered without focus, but this isn't something SFML supports so I don't think there's anything...
> I don't think it's OK that clicking on an unrelated application will send clicks to an imgui-sfml application that happens to be hidden behind it. How does this happen?...
Yeah I don’t think you can do anything about hovering on partially visible windows unless you write the platform implementations for it yourself. If you just change to use events...
What’s the actual physical resolution of your screen?
First step would be to remove that condition and see how the resulting modes work. Looks like it was added in #1042 (7 years ago) but not immediately apparent why....
So that’s likely an issue with DPI scaling which SFML doesn’t really handle at this point - does it render at the larger resolution, meaning it’s cut-off by the screen...
I'm not convinced SFML should be doing any reordering - in the vast majority of cases it's going to be little endian machines on both sides, using SFML sockets. In...