Resetting ofGetElapsedTimeMilles
(post withdrawn by author, will be automatically deleted in 24 hours unless flagged)
View ArticleNew Awesomium integration addon - ofxAwesomiumPlus
My application depends on this addon so much that I implemented it as part of it. That made it difficult to create a standalone addon so I finally had some time tonight to implement new features that...
View ArticleglDrawArrays problems with ofxSyphon
After 3 hours i still don't have find the problem. It seems that i have some conflicts when i use my billboard mixed with some fbo. I continue to look for the solution.... but maybe somebody have had...
View ArticlePass 'this' pointer from parent to child object: scheduler/ofTimer system
Aha! I was required to use a forward declaration of Scheduler class in Timer header. See, just a basic thang. Thanks anyways, peeps.
View ArticlePass 'this' pointer from parent to child object: scheduler/ofTimer system
The forward declaration didn't do the trick I had hoped it would! I was running into cyclic dependency issues; the header files from Scheduler and Timer needed to refer to one another. I've ended up...
View ArticleofToDataPath format on Windows, double slash
Yeah I have had a similar problem with the data pathing, i usually have to do a string replace function since something it gives forward slashes too
View ArticleC3861 C4819 errors Local Windows Debugger with Visual Studio 2015
What language are you using? its complaining you are using a character not found in the character set, you might be on ascii or utf 8 when you need to be in utf16. Not really an OpenFrameworks error...
View ArticleCan't use ofxTimeline with 0.9.0
I've used it with pre 0.9.0 releases. Since I wasn't using any of the audio or video portions, I just commented it out and didn't have any issues. Its an awesome add-on that I wish was kept up. Still...
View ArticleVisual Studio 2015 help
Can you compile the examples? my hunch is you didn't install the c++ toolset since you are missing the system files
View ArticleBloom using the geometry shader
How could I do that if my mesh is being drawn as triangle strips? I did a lot of reading on what you mentioned, but that seems to work only when you draw as a point (I've read about point sprites here...
View ArticleLoading XML values with special character (à, é, ù, ....)
Actually when I change the first line of my xml file to <?xml version="1.0" encoding="UTF-8"?> the parsing of the xml file give me an error [ error ] ofXml: parse error: Invalid token in line 3...
View ArticleLoading XML values with special character (à, é, ù, ....)
When I use the character substitution presented at http://www.commentcamarche.net/contents/489-caracteres-speciaux-html it works on Mac with <?xml version="1.0" encoding="ISO-8859-1"?> or...
View ArticlePass 'this' pointer from parent to child object: scheduler/ofTimer system
this really sounds like a recursive inclusion issue and the solution is using forward declaration. you might be doing it incorrectly but pretty sure that's the solution. also your design seems pretty...
View ArticleofToDataPath format on Windows, double slash
where are we using that function? ofToDataPath should be normalizing the path so there's no problems like this
View ArticleBloom using the geometry shader
if you are drawing faces the tipical thing to do is render to an fbo and on a second pass do a gaussian blur on a fragment shader
View ArticleLoading XML values with special character (à, é, ù, ....)
you need to save the file itself as utf8 not only set the header.
View ArticleThreaded optical flow
Hi I am trying to make a threaded optical flow system, the setup is that I will use a quad split hardware device to combine 4 video feeds into one, I then split the image across four ofpixel objects...
View Article