Lynn Jarvis

Results 63 comments of Lynn Jarvis

It occurs to me that the format should in fact be specified for CreateSender and Dirk must have one so. I am not sure why it is working without it...

On the Spout forum there have been several reports of problems with Windows 8 and Bootcamp, as well as Windows 8 with Optimus graphics. With the latest Spout release, if...

Hi all, regarding DirectX 9, I have been looking at this. It seems that Intel graphics can work OK as long as it is DirectX 9, so the current Spout...

Is it similar to this ? http://spout.zeal.co/forums/topic/creating-spout-sender-for-vbs3/#post-1748 I would first suspect a a texture format problem.

Actually this could be related to to a problem I have been having with development of a library. https://github.com/leadedge/SpoutProcessing If I register a "dispose" method as indicated : https://github.com/processing/processing/wiki/Library-Basics it...

This is interesting and might give a clue for the Processing developers. 3.0.1, 3.0 and 2.2.1 do call the dispose method. I have checked by putting an infobox in the...

OK, it gets more interesting. I set up a test sketch and registered a dispose method in the sketch as well as an exit over-ride, plus a dispose method in...

Update - with 3.0.2 if I do this - ``` public void exit() { println("Sketch exit method"); super.dispose(); super.exit(); } ``` The sketch exit function is called and the dispose...

OK, I hope this helps to sort it through. Just now I realized that if I can detect the exit method in the sketch (3.0.2), I can create and call...

Sorry I am slow to come to grips with this. Perhaps the question is whether something can be done before calling "vm.exit(0);". Maybe it is not possible at this point....