Dimitre
Dimitre
Hello @Anton-V-K can you please check if this issue is still relevant on nightly builds? thank you
Ok, finally msys2 tests are fixed, now it passes tests. any opinion on this one @ofTheo @artificiel ?
Thanks, good idea. updated with the constructor. Yes agree about tests, but I think we can merge without having all the tests as it is an alternative way of initializing...
I've now tested in macOS and Linux, working great on both. I've used just for testing the videoPlayerExample ```c++ ofVideoPlayer fingerMovie { "movies/fingers.mp4" }; ``` it won't work in a...
Nice. I think it is possible to update ofDirectory not to open file immediatly. this would speed up everything.
Yeah I agree. For me it is the same. I don't mind having GLM_FORCE_CTOR_INIT all over too. If someday we decide to zero initialize everything we can incrementally cleaning GLM_FORCE_CTOR_INIT...
@danoli3 exactly. somebody suggested using project generator to add this to all projects. I can help with that once we know what to add and where (I suppose it is...
This is a script I'm using to quickly compile using make in some freshly installed OF without having to compile PG. make build is really similar in all linux flavors,...
it should work. which OS are you using?
I was able to run OK on macOS ```c++ ofTrueTypeFont font; void ofApp::setup(){ font.load(OF_TTF_MONO, 15); } void ofApp::draw(){ ofBackground(0); ofSetColor(255); font.drawString("Mono Testando 123\n129384098743021", 40, 40); } ```