Vladimír Vondruš

Results 549 comments of Vladimír Vondruš

Unfortunately I have no experience with FLTK whatsoever, but if you would have a minimal code that sets up a window with raw OpenGL, I could continue from there.

Hi, thanks for the report! Interesting, looks like things changed significantly since I last checked on Arch. I got stuck already at CMake not being able to find `wxgtk3`, I...

> I think there should be a wx-config executable on the system By looking at the `FindwxWidgets` module, there's about 15 of them already, so I suppose this was only...

Oh, so you're saying it's backend-dependent? Interesting. Are there any "good practice" docs explaining this in more detail? Like if it's a GTK quirk or something one should expect in...

@asmwarrior delayed context creation is a rather common workflow, the solution is using the `NoCreate` constructors for GL objects as well: ```cpp GL::Mesh _mesh{NoCreate}; Shaders::VertexColor2D _shader{NoCreate}; ``` and then, once...

Argh, this kinda slipped through -- too many things happening all the time, sorry. > Not sure what should be the right approach here. I think what would work is...

Hi! I'm just checking `FindSDL2.cmake` and it's somehow not taking into account the actual SDL cmake config file. Most other Find modules in Magnum do that, this one not for...

It seems the following could be enough for Magnum's `FindSDL2.cmake` to make it prefer the installed config (and thus use it to get all static dependencies on macOS). Can you...

Hmm, this could cause depth precision issues on certain browsers / platforms which use a 16-bit depth buffer by default. I'm not sure what's the situation right now but not...

Hah, no, I clearly messed up in that suggestion, sorry. Will fix this during merge. Thank you!