Daan de Lange

Results 88 comments of Daan de Lange

Whoops, sorry, I meant to say PugiXML is the best choice : a little faster and more future proof than ofxXmlSettings/TinyXML.

It will be super easy, it works the same way with better attribute support and more traversing options. The only 'weird' API change is that you call `xmlNode.getText().value()` and `xmlNode.getText().set("new")`.

Yes, or make the ofxAddon use the embedded library, depending on how much ofXml restricts pugiXML's capabilities. Weird that we didn't run into any duplicate symbols linker errors. Weird that...

The purpose of this proposal is to provide objects with some kind of awareness of the virtual (and physical if mapped-to) space that they end up being rendered on. Here's...

Hey, thanks for your interest, I've pushed a first version to packagist. ;) Note: The php side remains almost identical, but lots of interface and implementation changes on the vuejs...

Thanks for your directions, indeed it passes the setup() in Release mode. Looks related to this : `https://github.com/danomatika/ofxLua/issues/58` (having the same stack trace in debug)

Maybe this could be replacement ? (I haven't seen the hackpad before it was gone) https://bloggerbrothers.com/2016/12/20/raspberry-pi-run-on-boot-and-run-forever-systemdsystemctl/ _[According to DropBox](https://www.dropboxforum.com/t5/Product-Updates/A-message-to-our-Hackpad-users/td-p/217103), the pad is still around, but only the creator can retrieve...

@d3cod3 a small question : I need a pixels videoGrabber object (not outputting to a texture which needs a useless textureToPixels node) for a webcam. Also, I need to control...

Well, the videoGrabber takes pixels from a configured source, then uploads them as a texture; so the __texture__ output should be optional; not the __pixels__ output (always used internally). But...

For performance, I really need it as pixels without wasteful texture uploads; your suggestion sounds good : the update cycle will not send the pixels, but there's probably still gonna...