Re : Problem with OpenGL in Linux Mint 15
I'm surprised you get any sort of performance with open-source drivers on linux with processing-2.0.1. Have you tried running the examples/demos/tests/SpecsTest, and if so what do you get as output?
View ArticleRe : Problem with OpenGL in Linux Mint 15
This is the terminal outputX.OrgGallium 0.4 on AMD JUNIPER3.1 (Core Profile) Mesa 9.1.3OpenGL error 1280 at bot beginDraw(): invalid enumerant1.40GL_ARB_ES2_compatibility GL_ARB_base_instance...
View ArticleRe : Problem with OpenGL in Linux Mint 15
I did a symlink to the Oracle Java 7 I have installed in this PC... The hardlink/junction/symlink is necessary for Windows + Processing 2+ only.In Linux and any other combos, it's enough to...
View ArticleRe : Problem with OpenGL in Linux Mint 15
Gallium 0.4 on AMD JUNIPER AFAIK, Gallium is the open source driver for ATI/AMD graphics card.I wasn't able to use OPENGL in Linux while using Nouveau, which is the nVidia's open source counterpart...
View ArticleRe : Howto speed up a Client Application?
I don't have much experience with the Net library, but I believe the response time should be well below 1 s (unless you communicate with the other side of the Earth, here you can expect some lag...).So...
View ArticleRe : Drawing 120000 spheres each frame? (Introduction into OpenGL?)
I've seen that one before, but I have absolutely no idea what's happening there. The setup is still kind of readable, and I think in order to use that example with the database it should be something...
View ArticleRe : Howto speed up a Client Application?
Thanks for your answer, PhiLho!The webserver and my client are connected in a same WIRELESS LAN, so there is no suitable reason for this delay. Indeed, I can appreciate this delay.My code is something...
View ArticleRe : Problem with OpenGL in Linux Mint 15
I installed the privative drivers and everything works now! well, almost. libEGL still complains.But now processing's interface is buggy, it freezes and nothing within it works... but that is a...
View ArticleRe : Drawing 120000 spheres each frame? (Introduction into OpenGL?)
I've added the link for reference. But perhaps I should add that pure OpenGL calls are best turned to only as a last resort. For Processing 2.0 an enormous effort has been made to combine the power of...
View ArticleRe : NoClassDefFoundError: processing/core/PGraphics3D
Thanks for the lead – Processing 1.5.1 works with P3D, but Processing 2.0.1 still does not work with P3D. My MacBook Pro is from 2012 and has the latest OS and firmware. Other machines I've tried work...
View ArticleRe : Problem with OpenGL in Linux Mint 15
I think you can ignore the libEGL message, I think its part of a disconnect between linux and closed source drivers. Interesting that Gallium reports 3.1 opengl capability, which should be sufficient...
View ArticleRe : Avoid clicking the mouse on the frame to start video capture
I use Windows 7 64bit.I tried to insert frame.requestFocus(); but nothing changed. I still have to click on the frame.
View ArticleRe : Minim and Real Memory / Memory
Yes, I expect amnon.owed is correct. I've just reviewed the code in Minim and when you create an AudioPlayer, even if you haven't told it to play, it starts an audio output that it gets from JavaSound....
View ArticleFill minim buffer with own data
Hi there!I'm quite new to processing, but I'm using the Arduinoe IDE since a few years.Now I need to play back data stored in a txt through my sound card.This data contains about 2500 timestamps and...
View ArticleRe : Minim and Real Memory / Memory
Hi,thanks for the input.It seems to work like this, yet it increases the Real Memory constantly.What I'm doing is:void setup(){...voiceSampleSingleA = new FilePlayer[noOfSamples]; mainOut =...
View ArticleRe : Minim and Real Memory / Memory
As alternative I am testing right now, to not use an array but only one sample which is always closed again after using. This seems to take up significantly less memory and works fine.Minim...
View ArticleDeclaring an array of recordings using minim
Hi-ho! This might be a simple one, but I'm a little confused on the createRecording syntax using the minim library. I am trying to declare an array of recordings that will be blank but will later...
View ArticleRe : Declaring an array of recordings using minim
Recordable is an interface.From JavaDoc:All Known Implementing Classes: AudioInput, AudioOutput, AudioPlayer, AudioSample, AudioSource, SignalSplitterSo you can put an instance of any of these classes...
View ArticleRe : Howto speed up a Client Application?
I have finally found it: - Somewhere else my code was using the Client class method active() to find out if there was any pending string to read; - The connection is really closed after 6 seconds and...
View Articlelight harp problem.
Hi i am working on an instrument, i want it to active a sound, but not repeatedly as it happens now, if any of you has an idea of how to fix it i´d appreciate it.Each sound is activated by a bright...
View Article