Vladimír Vondruš
Vladimír Vondruš
> Do I need to set special environment variables for the log or so? It's printed by default unless suppressed by some log redirection, so assuming a Linux box, it...
It's printed by `GL::Context::tryCreate()`, which is usually done during `Platform::Application` construction, or alternatively [if you use a custom windowing toolkit](https://doc.magnum.graphics/magnum/platform.html#platform-custom), then it's during `Platform::GLContext` construction. Or just show me how...
Yes. Do you get anything printed if you `#include ` and do `Debug{}
Thank you. The `magnum-gl-info` output alone will be enough for me to make a driver-specific workaround, but I'd like to have the problem with no output solved as well :)...
Standard output, `std::cout` basically. `Error{}
Everything looks fine. Can you show me some minimal code that reproduces the problem? I still know only very little about the setup you have.
Not sure about Qt 6 yet, but a setup that worked for Qt 5 is here -- one has to ensure a certain order of includes, and convince Qt to...
Alright, I think I know what's going on -- Qt's GL headers are the big, desktop version, while Magnum built for GLES uses the ES headers. Not really sure if...
Finally found a solution by creating the following include hierarchy: ``` put-this-on-include-path/
Huh, what's this, completely forgot this was even attempted in the old plugin :laughing: Two complete plugin reimplementations later, this is done in `GltfImporter` in cf9c300a3063c832c31ed7a72f5a805c2b93c358.