Christopher Baker
Christopher Baker
Also confirming that on the current master branch does not match the documentation on macOS 10.12. The first byte returned is not the report id, even when the report id...
Any request -- including `POST`, `GET`, etc are easily "sniffable" on unswitched networks (including public wifi) using tools like [Wireshark](http://www.wireshark.org/). The only way to "secure" the contents of a transmission...
In my opinion, you should simply make note of the limitations of your "security" key, its ability to be compromised and remind users of some best practices (i.e. read only...
If it's helpful, I recently implemented `OF_PIXELS_NATIVE` support for ofxPS3Grabber https://github.com/bakercp/ofxPS3EyeGrabber. By default it uses RGB, which requires a colorspace conversion, but if you set it to `OF_PIXELS_NATIVE` it eliminates...
Here's how it handles unsupported pixel types ... https://github.com/bakercp/ofxPS3EyeGrabber/blob/master/src/ofxPS3EyeGrabber.cpp#L372-L391
To add another data point: - oF Master (RC4) - macOS 10.13.4 - MacBook Pro (15-inch, 2017) (retina) - Xcode Version 9.2 (9C40b) ```cpp ofApp::draw() { ofBackground(0); for (int i...
To add another data point: oF Master (RC4) macOS 10.13.4 MacBook Pro (15-inch, 2017) (retina) QTCreator 4.5.1 I also tried to open the same app in low res mode with...
Also, it doesn't seem to matter what GL version is used `main.cpp`: ```cpp #include "ofApp.h" int main() { ofGLWindowSettings settings; settings.setSize(1024, 768); // settings.setGLVersion(2, 1); // settings.setGLVersion(3, 2); // settings.setGLVersion(4,...
@arturoc `ofDisableSmoothing()` has no effect. Playing with `numSamples` also doesn't seem to have an effect. ```cpp int main() { ofGLFWWindowSettings settings; settings.setSize(1024, 768); // settings.setGLVersion(4, 1); settings.numSamples = 4; settings.windowMode...
Could this be a GL driver bug on macOS?