alexandre burton

Results 233 comments of alexandre burton

`condition.notify_all()` = good question; i would assume the condition is to trigger a receive? in this case we're not flushing but abandoning the queue. but maybe, I'm not 100% sure......

@dimitre is `#define GLM_FORCE_CTOR_INIT` also present in the file where you use the glm::mat4? because if it's for instance in an autonomous class (that does not import ofMain.h or something)...

Well compute shader is openGL4.3, and macOS is stuck at 4.1... for that reason it's removed from the releases: https://github.com/openframeworks/openFrameworks/blob/c11edeffb5dbd6a19d88eb4687e8ddd03e7820ca/scripts/dev/create_package.sh#L312-L316 Do you mean a better error should be issued if...

@lvdpower are you on windows? it may be related to recent changes with file paths. can you provide the file path you are dragging (does it contain unicode?), as well...

well it's a perfect example. the loadModel function is given an fs::path, which on windows implicitly turns into a wstring. now the question is: does the underlying assimp lib support...

I confirm the behaviour: `ADDON_DATA = "addon_data/*` does not behave as the documentation suggests it should, and it takes a while to figure it out. `+=` operator works with `ADDON_DATA`,...

+1, also better for projects that don't have the usual 3 (main.cpp + ofApp.h + ofApp.cpp) — at least in Xcode they all get added and show up as red...

Ah well that would be a good start to solve fresh generation (I often use single-file projects…), but your original idea would be better. I wonder if the problem is...

here's what I did on macOS14: - download vscodium as a normal user (placed in an arbitrary directory) - download OF12.0 - launch vscodium, install the clangd extension - open...

@ofTheo FYI single `_` is C++26 standardized for exactly this kind of use, so you will have to get used to it! https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2023/p2169r4.pdf @2bbb whoa you went all-in! my proposal...