Drawing ofVboMesh with OF_PRIMITIVE_LINES is much slower than...
Hi arturo! Unfortunately, this does not improve the performance in this case.Since the botteneck is the drawing instead of the uploading of data as you mentioned, I might try to think in another way...
View ArticleofArduino servo number on Arduino Mega
I think that was a legacy holdover from when Firmata was only capable of handling a few servos. you can change that in ofArduino code and change the max servos number higher and it should be fine
View ArticleFix for Xcode 7 and OF 0.8.4 (opensslconf.h not found)
This worked for me: adding to CoreOF.xcconfig HEADER_OPENSSL = "$(OF_PATH)/libs/openssl/include" and adding it to the OF_CORE_HEADERS as below: OF_CORE_HEADERS = $(HEADER_OF) $(HEADER_POCO)...
View ArticleofxAudioUnit - Error compiling - Poco::FastMutex
I have downloaded ofxAudioUnit and move it to the addson directory. When I try to run the examples I have this error: file: ofxAudioUnitDSPNode.cppline 284: if(ctx->bufferMutex.try_lock()) {error:...
View ArticleofxAudioUnit - Error compiling - Poco::FastMutex
I just fixed this a few weeks ago, can you try updating ofxAudioUnit? When did you download the version you're using?
View ArticleofxAudioUnit - Error compiling - Poco::FastMutex
I have downloaded a fresh version just now. I don't see this changing, still does not compile. I see the committed change:- if(ctx->bufferMutex.tryLock()) {+ if(ctx->bufferMutex.try_lock()) {...
View ArticleofxAudioUnit - Error compiling - Poco::FastMutex
I am using openFrameworks 0.8.4 with Xcode 6.2. Could there be the problem?
View ArticleofxAudioUnit - Error compiling - Poco::FastMutex
Ah I see, I was fixing it for OF 0.9.0 but the issue you're seeing is the other way around I'm surprised changing it back to tryLock doesn't work, though, since that's the way it was when 0.8.4 and...
View ArticleofxAudioUnit - Error compiling - Poco::FastMutex
Yes, it is related to that. I could compile it using with the 0.9.0RC1 version. Change it back to tryLock with 0.8.4, doing clean + build doesn't work either: I have 36 compiling errors now. Maybe I...
View ArticleDrawing ofVboMesh with OF_PRIMITIVE_LINES is much slower than...
i would try using a later version of openGL, i've noticed lately that some applications run faster when using the programmable renderer
View ArticleI keep getting "Undefined Reference" when trying to compile...
I have still been unable to get it to compile on windows. Any advice?
View ArticleStd::atomic no such type (raspbian-7)
hi. i came across this on a rpi-2 with raspbian-7 installed and oF-0.9.0 nightly from 18.sept: when using: #if __cplusplus>=201103 std::atomic<bool> isRunning; #endif the compiler complains:...
View ArticleBodyStream in ofxKinect2
Hi, community. Is it possible to get body data from ofxKinect2::BodyStream? I saw the code of bodies vector commented in ofxKinect2.cpp in BodyStream::readFrame(IMultiSourceFrame* p_multi_frame)...
View ArticleofxKinectForWindows2 compilation error
Hi, community. I tried to compile project using this addod https://github.com/elliotwoods/ofxKinectForWindows2. I followed steps as described here...
View ArticleofArduino servo number on Arduino Mega
I did a project controlling 72 servos on an arduino mega. We used pololu servo controllers. They exist in different sizes, this one could do the job: https://www.pololu.com/product/1354. We also tried...
View Article[FIXED] Problems connecting shapes correctly [openGL]
[FIXED] : I wasn't familiar with the concept of depth-testing, all is fine now!Ey All! I have a question; the answer might be obvious since I'm new at OpenGL. I made a simple 3-d game in which a flyer...
View ArticleSeeding a random number
I am trying to create a random number generator with a random seed. The problem I am having is that I am trying to define my randomized variable as a global variable so I have put the rand statement...
View ArticleSeeding a random number
Maybe it's easier if you use ofSeedRandom. As an example: ofApp.h int xCord = 0; setup() ofSeedRandom(); // or ofSeedRandom(int val); xCord = ofRandom(500) + 30;
View ArticleSeeding a random number
you should avoid globals. They are never really necessary (espacially in oF!) But here's what's going on:each .cpp file is compiled independently, so one is not aware of the contents of the other. To...
View Article