ofxGUI no background on Jetson TK1
Does it act the same with all the drawing code removed expect for ofxGUI?
View ArticleofVideoGrabber on RaspberryPi: Broken
same problem here. it freezes at the first frame. When I interrupt the execution it gives me: GStreamer-CRITICAL **: gst_mini_object_unref: assertion 'mini_object->refcount > 0'...
View ArticleCan't compile on qt on windows error: Process failed with exit code 2
No, when I try to compile trough msys2 shell I get: make[2]: *** [/c/of_v0.9.0/libs/openFrameworksCompiled/lib/msys2/obj/Release/libs/openFrameworks/3d/of3dPrimitives.o] Error...
View ArticleCan't compile on qt on windows error: Process failed with exit code 2
I did compile with msys2 on my 64bit machine. do not know what i did. I only changed machine. II try now with qt. EDIT: No go, still code 2 error with Qt . Do you think that is still something wrong...
View ArticleQtCreator: OF template is missing
Hi there, I'm painfully new to OF and I'm trying to get Qt Creator set up. I installed it from Ubuntu Software Center, and then I sudo ran the install_templates.sh as the tutorial said. But when I try...
View ArticleofxGUI no background on Jetson TK1
It act the same, no background colors. I removed all the other drawing code only kept gui.drawing.
View ArticleExemples don't compile
Hi i don't know why but after some test on ofxMidi, it didn't compile any of my project... So i removed my openframeworks directory to rebase it on clean 0.9 but even there it wouldn't compile PG and...
View ArticleExemples don't compile
it seems i fixed it by : 1) downloading master2) launch install_depencies.sh for arch(that recompiled poco and replaced gcc-multilib by gcc)3) reinstall rtaudio
View Article./guiExample Segmentation fault (core dumped)
Hi Arthuro, i have the same trouble when execute andy sample with ubuntu 15.10 and boost 1.58, did you solve this problem? is it my own trouble?
View ArticleHow to set the IOS APP fullscreen on ipad in OF 9.0?
this is my setting in main.mm int main() { // here are the most commonly used iOS window settings. //------------------------------------------------------ ofiOSWindowSettings settings;...
View ArticleIOS APP screenSize not correct
When i make an IOS App,and set settings.enableRetina = true; // enables retina resolution if the device supports it. in main.mm and i use ofGetWidth() and ofGetHeight() void ofApp::draw(){...
View ArticleHow to set the IOS APP fullscreen on ipad in OF 9.0?
Hi,What might be happening there is that you are compiling an iPhone app rather than a Universal (or iPad only) app. Have a look at the build settings. Or is this (1X) icon coming from somewhere else?...
View ArticleofxGUI no background on Jetson TK1
Strange, has something turned on face culling at some point perhaps? Is it the same if you throw in these before drawing the GUI? glDisable(GL_CULL_FACE); ofDisableDepthTest();
View ArticleSerialization of derived classes
Hi, I'm trying to save and load the state of the application, using a simple XML file using ofxXmlSerializer. Everything works fine when using non-derived classes, but when introducing polymorphism I...
View ArticleImplementation of class
Hello, i have this class class Shape //abstract class "class with only virtual function" { public: virtual void draw() = 0; virtual void rotate(int i) = 0; virtual void is_closed() = 0; virtual...
View ArticleSerialization of derived classes
you can use typeof(...) and check all the possible cases, there' s no other solution in c++ since it doesn't have introspection
View ArticleofVideoPlayer.load and .loadMovie problems when streaming
Hi again!No luck so far I posted an issue in github, but I am finding this terrible difficult. Has anybody tried loading a URL with v0.9.0?
View ArticleSerialization of derived classes
like you can use: if (typeof(object) == typeof(SomeDerivedClass)){ ... }else if (typeof(object) == typeof(SomeOtherDerivedClass)){ ... }
View Article