Dimitre
Dimitre
today I was analyzing code in XCode with address sanitizer on, undefined behavior sanitizer and it indicates an UB on ofColor ``` ofColor.cpp:172:7: runtime error: 2.14748e+09 is outside the range...
I've just made an old RPI runs to test OF and it is the first error ``` /home/pi/of/libs/openFrameworks/utils/ofJson.h:3:10: fatal error: nlohmann/json.hpp: No such file or directory 3 | #include //...
I'm using like this: HIGH_RESOLUTION_CAPABLE = YES and glfwWindowHint(GLFW_COCOA_RETINA_FRAMEBUFFER, false); which results in the same resolution everything the same But the window decoration and title aren't low res anymore
About OF objects, is there a real necessity ofMainLoop is a shared pointer and able to be set via ofSetMainLoop? I see it holds all windows used by the program....
what is the correct template to use today in macos? osx or macos? are they going to mirror each other? like macos template uses macos libraries? and which folder is...
Maybe it is best not merge yet. I don't know which XCode version is needed for this. This PR follows the latest Apple icons guidelines where you provide the images...
For the future because it only works on most recent XCode versions, maybe 16+ this brings a dynamic "src" folder that add to compile phase, but at the same time...
This PR removes some includes from ofConstants.h and include by demand where needed. includes are: ```c++ #include #include #include #include #include #include #include #include #include ``` We can add them...
From time to time I've notice people resort to ofFastFboReader to do fast pixel operations. I wonder if it is time to port it to be in OF Core. https://github.com/satoruhiga/ofxFastFboReader...