ofScopedLock build error, lock unlock works
yes there's now std::mutex and since we include the whole std namespace that can be problematic at times we should rename that mutex to mtx or similar. by the way, i think this: ofScopedLock(mutex)...
View ArticleofMaterial and ofLight
I'm using 0.9 RC1Tried to change the renderer but ofSetCurrentRenderer(ofGLProgrammableRenderer::TYPE);don't seem to work anymore, Is there a new way to do it in 0.9?
View ArticleofMaterial and ofLight
yes: ofGLWindowSettings settings; settings.setGLVersion(3,2); ofCreateWindow(settings); ofRunApp(new ofApp); as i said it's also fixed in master now and will be in tonight's nightlies.
View ArticleofMaterial and ofLight
Ok, thanks a lot! This was especially helpful because I intended to use the programmable renderer and completely forgot about it...
View ArticleofScopedLock build error, lock unlock works
...Good thing to know about anonimous variables. Thanks!
View ArticleOpen frameworks in Windows 10 + Visual Studio 15 RC
vs2015 won't work with 0.8.4, you always need to use the version specified in the download page in the setup guide. for 0.8.4 is vs2012. you can also use the 0.9RC or the latest nightly build which...
View ArticleOpen frameworks in Windows 10 + Visual Studio 15 RC
Thanks. Is 0.9RC the Master branch on github or??https://github.com/openframeworks/openFrameworks/tree/master
View ArticleOpen frameworks in Windows 10 + Visual Studio 15 RC
0.9RC1 was a release candidate we did a couple of weeks ago, github master has some fixes in it that weren't there but the best is to use the nightly builds that you can find in the download page,...
View ArticlePossible to run ofxLibwebsockets as client and connect to localhost?
Thanks for the background and suggestion of the simple websocket server. I was able to set up and get a basic prototype talking with ofxLibWebsockets without any issues. I might stick with python for...
View ArticleOpen frameworks in Windows 10 + Visual Studio 15 RC
thanks but still no luck even after using the latest nightly build, the project generator to create a simple example and then opening the .sln and building in VS 2015 RC Severity Code Description...
View ArticleXCode to CodeBlocks OF 0.8.4 Errors
Hello, I am working on an application that may need to be run in a windows or OSX context. My workstation is a OSX 10.10 machine, and I have a personal computer with Windows 10. I am using git for...
View ArticleOpen frameworks in Windows 10 + Visual Studio 15 RC
ok, getting closer. With VS Express 2012 + RELEASE version of OFX examples almost compile. Getting the following compile error Error 1 error C1083: Cannot open include file: 'stdint.h': No such file...
View ArticleofxDatGui: A New User Interface for OF
Hello, I'm made a ton of updates since my last post and feel that I'm rapidly approaching a v1 release. If you have a minute I would really appreciate help testing this on different platforms and any...
View ArticleofxDatGui: A New User Interface for OF
cloning and starting to test, you give you feedback when I can.Seems very nice!
View ArticleParticle System Optimisation Help Needed
a trick that I do to have efficient particle systems with circles is to use an ofMesh with mode set to OF_PRIMITIVE_POINTS and call glEnable(GL_POINT_SMOOTH); glPointSize(sizeOfPoint); this way I draw...
View ArticleRaspberry pi 2 + kinect
hello,i want to run a kinect example in of but the kinect sensor dont init. armv7lchecking pkg-config libraries: cairo zlib gstreamer-app-1.0 gstreamer-1.0 gstreamer-video-1.0 gstreamer-base-1.0...
View ArticleAndroid Studio always recompiling openFrameworks
I currently have the issue that Android Studio is always recompiling everything from openFrameworks, not just the project I'm working on. Which is pretty annoying because the compilation takes about...
View ArticleRaspberry pi 2 + kinect
What version of the kinect are you using? Does it work if you run the example on OSX or Linux Desktop?
View ArticleUnhandled exception on application exit with ofxhttputils
i'm using ofxhttputils to do a periodic http GET. it works fine. but when the application exit, unhandled exception comes out. seems that it is about mutex. does anybody has a solution?p.s. i also...
View Article