binary1248

Results 88 comments of binary1248

- Rebased on master - Removed PIMPL from `AudioDevice` - Fixed `getStatus` returning unexpected values, emulates previous OpenAL behaviour now @Marioalexsan @LumineBot The issues you were having should be fixed...

It is pretty clear from the [OES_blend_subtract](https://registry.khronos.org/OpenGL/extensions/OES/OES_blend_subtract.txt) and [EXT_blend_minmax](https://registry.khronos.org/OpenGL/extensions/EXT/EXT_blend_minmax.txt) extension specifications that the function has to be available. The fact that the system advertises support but doesn't return the corresponding...

In the gpuinfo report your provided, it seems like all < OpenGL ES 3.0 extensions were removed since their functionality was merged into the core specification. Can you check what...

Based on your gpuinfo, the `GL_VERSION` string should be `OpenGL ES 3.2 ANGLE git hash: 50101db6df97`, so I really don't understand how the version query in SFML can fail as...

My only concern in #1645 was that performance might take a hit, but that can be optimized after this gets merged. It would still be interesting to hear from text...

@vittorioromeo Someone already worked on this 9 years ago but as described above, the changes couldn't be merged into upstream because sfml-graphics still used legacy OpenGL and getting the non-legacy...

The scope of the changes required to _properly_ support GLES 2 in SFML 3 is too large, and we want to release at some point. That's why all OpenGL/Vulkan/Emscripten related...

Setting the style of a window and it's current WM state are orthogonal concepts, and shouldn't be coupled to one another. If the user wants the window to be invisible...

> I have no objections in principle to going with an API that takes multiple lines of code to set up a true initially hidden/maximized/etc window, as long as it...

> A new API for this stuff would probably require to deprecate quite a lot of things Can you elaborate what things would need to be deprecated? I can't really...