You can subscribe to this list here.
2009 |
Jan
(41) |
Feb
(15) |
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Martin . <bli...@gm...> - 2010-01-25 21:58:55
|
Hi again, now, with the replacing code, the compilation got further, but stopped here: --- Building plugin: gl_renderer.cc => gl_renderer.so g++ -I../glew/ -I../oscpack/ -DGLEW_MX -shared -fpic -L/usr/share/qt4/lib -lQtGui -lQtCore -lQtOpenGL -lQtUiTools -export-dynamic -rdynamic -ldl -o gl_renderer.so gl_renderer.cc gl_renderer_moc.cc -I/usr/share/qt4/include -DQT_THREAD_SUPPORT -L/usr/share/qt4/lib -lQtGui -lQtCore -lQtOpenGL -lQtUiTools -pthread gl_renderer.cc: In member function ‘virtual void GLRenderWidget::initializeGL()’: gl_renderer.cc:73: error: ‘stderr’ was not declared in this scope gl_renderer.cc:73: error: ‘fprintf’ was not declared in this scope make[2]: *** [gl_renderer.so] Error 1 make[2]: Leaving directory `/media/sda7/home/martin/sc/DOWNL/scgraph/trunk/server/plugins' make[1]: *** [plugins] Error 2 make[1]: Leaving directory `/media/sda7/home/martin/sc/DOWNL/scgraph/trunk/server' make: *** [server] Error 2 zsh: exit 2 make i searched it and found this http://bbs.archlinux.org/viewtopic.php?id=59885 which suggests that we should add #include <cstdio> in a file, but im unsure which one many thanks, martin On Mon, Jan 25, 2010 at 11:24 AM, Florian Schmidt < fsc...@te...> wrote: > Sorry, for double sending, forgot to keep scgraph-users on the CC.. > > On Thu, 2010-01-21 at 19:04 +0100, Martin . wrote: > > Hi there, > > > > Hi, > > i must admit that scgraph as of now is abandon-ware. I don't really have > much time to look into it. It's interesting, that _XOPEN_SOURCE is > redefined at that point. Can you try this change: > > Replace > > #define _XOPEN_SOURCE 600 > > by: > > #ifndef _XOPEN_SOURCE > #define _XOPEN_SOURCE 600 > #endif > > in the offending file [plugin_pool.cc line 7] and see if it compiles then? > > Regards, > Flo > > > I would like to try out scgraph but I get this error when compiling: > > > > --- Building dependency: plugin_pool.cc => deps/plugin_pool.dep > > g++ -M -o deps/plugin_pool.dep plugin_pool.cc -pedantic -Wall > > -Wno-long-long -ansi -Werror -DPREFIX=\"/usr/local\" > > -DSC3_INCLUDE_PATH=\"/usr//include/SuperCollider/\" > > -I/usr/share/qt4/include -DQT_THREAD_SUPPORT > > -I/usr//include/SuperCollider//plugin_interface > > -I/usr//include/SuperCollider//server > > -I/usr//include/SuperCollider//common `pkg-config sndfile > > GraphicsMagick++ --cflags` -DSC3_PLUGIN_PATH= > > \"/usr//lib/SuperCollider/plugins\" -I./glew/ -DGLEW_MX -I./oscpack/ > > -pthread > > plugin_pool.cc:7:1: error: "_XOPEN_SOURCE" redefined > > In file included from /usr/include/c > > ++/4.4/i486-linux-gnu/bits/os_defines.h:39, > > from /usr/include/c++/4.4/i486-linux-gnu/bits/c > > ++config.h:243, > > from /usr/include/c++/4.4/bits/stl_algobase.h:60, > > from /usr/include/c++/4.4/vector:61, > > from plugin_pool.h:4, > > from plugin_pool.cc:1: > > /usr/include/features.h:160:1: error: this is the location of the > > previous definition > > make[1]: *** No rule to make target `deps/plugin_pool.dep', needed by > > `plugin_pool.o'. Stop. > > make[1]: Leaving directory > > `/media/sda7/home/martin/sc/DOWNL/scgraph/trunk/server' > > make: *** [server] Error 2 > > zsh: exit 2 make > > > > and dont really know how to attack the problem. any ideas? > > > > cheers, > > martin > > > ------------------------------------------------------------------------------ > > Throughout its 18-year history, RSA Conference consistently attracts the > > world's best and brightest in the field, creating opportunities for > Conference > > attendees to learn about information security's most important issues > through > > interactions with peers, luminaries and emerging and established > companies. > > http://p.sf.net/sfu/rsaconf-dev2dev > > _______________________________________________ Scgraph-users mailing > list Scg...@li... > https://lists.sourceforge.net/lists/listinfo/scgraph-users > -- > Dipl.-Inform. Florian Paul Schmidt > University of Bielefeld, Neuroinformatics Group, CITEC > Contact: > http://ekvv.uni-bielefeld.de/pers_publ/publ/personDetailAct?id=5504453 > > > |
From: nescivi <ne...@gm...> - 2010-01-25 17:05:41
|
On Monday 25 January 2010 05:24:42 Florian Schmidt wrote: > Sorry, for double sending, forgot to keep scgraph-users on the CC.. > > On Thu, 2010-01-21 at 19:04 +0100, Martin . wrote: > > Hi there, > > Hi, > > i must admit that scgraph as of now is abandon-ware. should we adopt it? I really like the concept, but have to admit that with the recent changes in SC, I've opted to not use it for my visualisation stuff, considering the time it would take to fix it.. ... but I think it is still an interesting little program and it would be sad to see it abandoned... sincerely, Marije > I don't really have > much time to look into it. It's interesting, that _XOPEN_SOURCE is > redefined at that point. Can you try this change: > > Replace > > #define _XOPEN_SOURCE 600 > > by: > > #ifndef _XOPEN_SOURCE > #define _XOPEN_SOURCE 600 > #endif > > in the offending file [plugin_pool.cc line 7] and see if it compiles then? > > Regards, > Flo > > > I would like to try out scgraph but I get this error when compiling: > > > > --- Building dependency: plugin_pool.cc => deps/plugin_pool.dep > > g++ -M -o deps/plugin_pool.dep plugin_pool.cc -pedantic -Wall > > -Wno-long-long -ansi -Werror -DPREFIX=\"/usr/local\" > > -DSC3_INCLUDE_PATH=\"/usr//include/SuperCollider/\" > > -I/usr/share/qt4/include -DQT_THREAD_SUPPORT > > -I/usr//include/SuperCollider//plugin_interface > > -I/usr//include/SuperCollider//server > > -I/usr//include/SuperCollider//common `pkg-config sndfile > > GraphicsMagick++ --cflags` -DSC3_PLUGIN_PATH= > > \"/usr//lib/SuperCollider/plugins\" -I./glew/ -DGLEW_MX -I./oscpack/ > > -pthread > > plugin_pool.cc:7:1: error: "_XOPEN_SOURCE" redefined > > In file included from /usr/include/c > > ++/4.4/i486-linux-gnu/bits/os_defines.h:39, > > from /usr/include/c++/4.4/i486-linux-gnu/bits/c > > ++config.h:243, > > from /usr/include/c++/4.4/bits/stl_algobase.h:60, > > from /usr/include/c++/4.4/vector:61, > > from plugin_pool.h:4, > > from plugin_pool.cc:1: > > /usr/include/features.h:160:1: error: this is the location of the > > previous definition > > make[1]: *** No rule to make target `deps/plugin_pool.dep', needed by > > `plugin_pool.o'. Stop. > > make[1]: Leaving directory > > `/media/sda7/home/martin/sc/DOWNL/scgraph/trunk/server' > > make: *** [server] Error 2 > > zsh: exit 2 make > > > > and dont really know how to attack the problem. any ideas? > > > > cheers, > > martin > > ------------------------------------------------------------------------- > >----- Throughout its 18-year history, RSA Conference consistently attracts > > the world's best and brightest in the field, creating opportunities for > > Conference attendees to learn about information security's most important > > issues through interactions with peers, luminaries and emerging and > > established companies. http://p.sf.net/sfu/rsaconf-dev2dev > > _______________________________________________ Scgraph-users mailing > > list Scg...@li... > > https://lists.sourceforge.net/lists/listinfo/scgraph-users > |
From: Florian S. <fsc...@te...> - 2010-01-25 10:24:51
|
Sorry, for double sending, forgot to keep scgraph-users on the CC.. On Thu, 2010-01-21 at 19:04 +0100, Martin . wrote: > Hi there, > Hi, i must admit that scgraph as of now is abandon-ware. I don't really have much time to look into it. It's interesting, that _XOPEN_SOURCE is redefined at that point. Can you try this change: Replace #define _XOPEN_SOURCE 600 by: #ifndef _XOPEN_SOURCE #define _XOPEN_SOURCE 600 #endif in the offending file [plugin_pool.cc line 7] and see if it compiles then? Regards, Flo > I would like to try out scgraph but I get this error when compiling: > > --- Building dependency: plugin_pool.cc => deps/plugin_pool.dep > g++ -M -o deps/plugin_pool.dep plugin_pool.cc -pedantic -Wall > -Wno-long-long -ansi -Werror -DPREFIX=\"/usr/local\" > -DSC3_INCLUDE_PATH=\"/usr//include/SuperCollider/\" > -I/usr/share/qt4/include -DQT_THREAD_SUPPORT > -I/usr//include/SuperCollider//plugin_interface > -I/usr//include/SuperCollider//server > -I/usr//include/SuperCollider//common `pkg-config sndfile > GraphicsMagick++ --cflags` -DSC3_PLUGIN_PATH= > \"/usr//lib/SuperCollider/plugins\" -I./glew/ -DGLEW_MX -I./oscpack/ > -pthread > plugin_pool.cc:7:1: error: "_XOPEN_SOURCE" redefined > In file included from /usr/include/c > ++/4.4/i486-linux-gnu/bits/os_defines.h:39, > from /usr/include/c++/4.4/i486-linux-gnu/bits/c > ++config.h:243, > from /usr/include/c++/4.4/bits/stl_algobase.h:60, > from /usr/include/c++/4.4/vector:61, > from plugin_pool.h:4, > from plugin_pool.cc:1: > /usr/include/features.h:160:1: error: this is the location of the > previous definition > make[1]: *** No rule to make target `deps/plugin_pool.dep', needed by > `plugin_pool.o'. Stop. > make[1]: Leaving directory > `/media/sda7/home/martin/sc/DOWNL/scgraph/trunk/server' > make: *** [server] Error 2 > zsh: exit 2 make > > and dont really know how to attack the problem. any ideas? > > cheers, > martin > ------------------------------------------------------------------------------ > Throughout its 18-year history, RSA Conference consistently attracts the > world's best and brightest in the field, creating opportunities for Conference > attendees to learn about information security's most important issues through > interactions with peers, luminaries and emerging and established companies. > http://p.sf.net/sfu/rsaconf-dev2dev > _______________________________________________ Scgraph-users mailing list Scg...@li... https://lists.sourceforge.net/lists/listinfo/scgraph-users -- Dipl.-Inform. Florian Paul Schmidt University of Bielefeld, Neuroinformatics Group, CITEC Contact: http://ekvv.uni-bielefeld.de/pers_publ/publ/personDetailAct?id=5504453 |
From: Martin . <bli...@gm...> - 2010-01-21 18:04:24
|
Hi there, I would like to try out scgraph but I get this error when compiling: --- Building dependency: plugin_pool.cc => deps/plugin_pool.dep g++ -M -o deps/plugin_pool.dep plugin_pool.cc -pedantic -Wall -Wno-long-long -ansi -Werror -DPREFIX=\"/usr/local\" -DSC3_INCLUDE_PATH=\"/usr//include/SuperCollider/\" -I/usr/share/qt4/include -DQT_THREAD_SUPPORT -I/usr//include/SuperCollider//plugin_interface -I/usr//include/SuperCollider//server -I/usr//include/SuperCollider//common `pkg-config sndfile GraphicsMagick++ --cflags` -DSC3_PLUGIN_PATH=\"/usr//lib/SuperCollider/plugins\" -I./glew/ -DGLEW_MX -I./oscpack/ -pthread plugin_pool.cc:7:1: error: "_XOPEN_SOURCE" redefined In file included from /usr/include/c++/4.4/i486-linux-gnu/bits/os_defines.h:39, from /usr/include/c++/4.4/i486-linux-gnu/bits/c++config.h:243, from /usr/include/c++/4.4/bits/stl_algobase.h:60, from /usr/include/c++/4.4/vector:61, from plugin_pool.h:4, from plugin_pool.cc:1: /usr/include/features.h:160:1: error: this is the location of the previous definition make[1]: *** No rule to make target `deps/plugin_pool.dep', needed by `plugin_pool.o'. Stop. make[1]: Leaving directory `/media/sda7/home/martin/sc/DOWNL/scgraph/trunk/server' make: *** [server] Error 2 zsh: exit 2 make and dont really know how to attack the problem. any ideas? cheers, martin |
From: nescivi <ne...@gm...> - 2009-06-21 18:33:54
|
A bug someone mentioned on sc-users: ---------- Forwarded Message ---------- Subject: Re: [sc-users] Want to try Scgraph on os x, any advice? Date: Sunday 21 June 2009 From: Lucas Samaruga <sam...@gm...> To: sc-...@li... <snip> An an error that can happend: If you have hidden files, e.g. .cvsignore or .DS_Store in the scgraph plugins directory it faults in read the clases. Lucas ------------------------------------------------------- |
From: nescivi <ne...@gm...> - 2009-06-12 19:10:59
|
Hiho, I'm currently looking at getting scgraph to work properly again with SC3.3... So, I'm using scgraph latest svn, and the quarks extensions, latest svn. I just added some of my own classes (in the dir utils), which provide some workarounds for some incompatibilities and a convenience method for starting scgraph from the lang. ------------ SynthDef::load Code: h = GServer.new("scgraph", DebugNetAddr("localhost", 37291) ).cmdArgs_("- vvv").start; ( SynthDef (\TestBlend, { var cube1, cube2, cube3, eye, stretch1, stretch2, stretch3; stretch1 = 1 + Lag.kr(2*Decay.kr(Dust.kr(1)), 0.5); stretch2 = 3 + Lag.kr(2*Decay.kr(Dust.kr(2)), 0.5); stretch3 = 5 + Lag.kr(2*Decay.kr(Dust.kr(3)), 0.5); cube1 = GStretch.gr ( GMaterial.gr ( GCube.gr, shinyness: 0.5, diffuse: [0.8, 0.3, 0.1, 0.031], ambient: [0.1, 0.8, 0.2, 0.005] ), [stretch1, stretch1, stretch1] ); cube2 = GStretch.gr ( GMaterial.gr ( GCube.gr, shinyness: 0.5, diffuse: [0.1, 0.8, 0.5, 0.06], ambient: [0.3, 0.4, 0.1, 0.018] ), [stretch2, stretch2, stretch2] ); cube3 = GStretch.gr ( GMaterial.gr ( GCube.gr, shinyness: 0.5, diffuse: [0.2, 0.3, 0.9, 0.12], ambient: [0.7, 0.2, 0.6, 0.11] ), [stretch3, stretch3, stretch3] ); eye = 10 * [MouseX.kr(-10,10)+SinOsc.kr(freq: 0.111), MouseY.kr(-10,10)+SinOsc.kr(freq: 0.132), SinOsc.kr(freq: 0.134)]; GGLRenderer.gr ( GTranslate.gr ( GLight.gr ( index: 0, on: 1, diffuse_color: [0.3, 0.5, 0.4, 0.5], specular_color: [1,1,1,0.5], ambient_color: [1, 1, 1, 0.1], position:[30, 15, 10, 1] ) + GLight.gr ( index: 1, on: 1, diffuse_color: [0.3, 0.1, 0.7, 0.5], specular_color: [1,1,1,0.5], position:[-30, -15, -10, 1] ) + GBlending.gr(on: 1) + cube1 + cube2 + cube3 + GBlending.gr(on:0), [ Lag.kr(WhiteNoise.kr,1), Lag.kr(WhiteNoise.kr,1), Lag.kr(WhiteNoise.kr,1) ] ), eye: eye, lighting: 1, clear_mode: 1, transparency: 1, clear_color: [0, 0, 0, 0.04] ); }).load(h) ) Results in: [ [ /d_load, /home/nescivi/share/SuperCollider/synthdefs/TestBlend.scsyndef, nil ] ] string: latency nil [ "/d_load", "data[ 62 ]", nil ] a SynthDef Qt has caught an exception thrown from an event handler. Throwing exceptions from an event handler is not supported in Qt. You must reimplement QApplication::notify() and catch all exceptions there. terminate called after throwing an instance of 'osc::ExcessArgumentException' what(): too many arguments RESULT = 0 ------------- SynthDef::send Same synthdef as before, now using .send(h), results in: [ [ /d_recv, Int8Array[ 83, 67, 103, 102, 0, 0, 0, 1, 0, 1, 9, 84, 101, 115, 116, 66, 108, 101, 110, 100, 0, 34, 63, -128, 0, 0, 64, 0, 0, 0, 63, 0, 0, 0, 64, 64, 0, 0, 64, -96, 0, 0, 61, -52, -52, -51, 63, 76, -52, -51, 62, 76, -52, -51, 59, -93, -41, 10, 62, -103, -103, -102, 60, -3, -13, -74, 0, 0, 0, 0, 62, -52, -52, -51, 60, -109, 116, -68, 61, 117, -62, -113, 63, 51, 51, 51, 63, 25, -103, -102, 61, -31, 71, -82, 63, 102, 102, 102, 61, -11, -62, -113, -63, 32, 0, 0, 65, 32, 0, 0, 61, -29, 83, -8, 62, 7...etc... string: latency nil [ "/d_recv", "data[ 1992 ]", nil ] a SynthDef [OscHandler]: Error: Malformed message: packet too short for bundle element [OscHandler]: Running! ------- however, the synthdef does get written with SynthDef::load, so by copying it to the right directory (.scgraph/synthdefs), I am able to start a Synth... x = Synth.new(\TestBlend, target: h); However, this does result in: [ [ 9, TestBlend, 1000, 0, 1, nil ] ] string: latency nil [ 9, 'TestBlend', 1000, 0, 1, nil ] Synth("TestBlend" : 1000) [OscHandler]: /s_new TestBlend 1000 0 1 [PluginPool]: Creating unit (name: "Dust") [PluginPool]: Creating unit (name: "Decay") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "Lag") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "Dust") [PluginPool]: Creating unit (name: "Decay") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "Lag") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "Dust") [PluginPool]: Creating unit (name: "Decay") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "Lag") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "GCube") [PluginPool]: Creating unit (name: "GMaterial") [PluginPool]: Creating unit (name: "GStretch") [PluginPool]: Creating unit (name: "GCube") [PluginPool]: Creating unit (name: "GMaterial") [PluginPool]: Creating unit (name: "GStretch") [PluginPool]: Creating unit (name: "GCube") [PluginPool]: Creating unit (name: "GMaterial") [PluginPool]: Creating unit (name: "GStretch") [PluginPool]: Creating unit (name: "MouseX") [PluginPool]: Creating unit (name: "SinOsc") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "MouseY") [PluginPool]: Creating unit (name: "SinOsc") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "SinOsc") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "GLight") [PluginPool]: Creating unit (name: "GLight") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "GBlending") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "GBlending") [PluginPool]: Creating unit (name: "BinaryOpUGen") [PluginPool]: Creating unit (name: "WhiteNoise") [PluginPool]: Creating unit (name: "Lag") [PluginPool]: Creating unit (name: "WhiteNoise") [PluginPool]: Creating unit (name: "Lag") [PluginPool]: Creating unit (name: "WhiteNoise") [PluginPool]: Creating unit (name: "Lag") [PluginPool]: Creating unit (name: "GTranslate") [PluginPool]: Creating unit (name: "GGLRenderer") Failed to initialize GEM. Falling back to classic. [ G0 [ G1 S1000 ] ] [OscHandler]: Error while parsing message: /s_new: wrong argument type. TypeTags: siiii So there does seem to be something wrong with the argument types... Even though the thing does play. Same happens if I use the old-style Synth::new message (as provided in GSynth). ------------ Function::play h.serverRunning = true; {GGLRenderer.gr(GPolygon.gr([[0,0,0], [1,0,0], [1,1,0], [0,1,0]]))}.play(h); results in: [ [ /d_recv, Int8Array[ 83, 67, 103, 102, 0, 0, 0, 1, 0, 1, 7, 116, 101, 109, 112, 95, 95, 48, 0, 11, 64, -128, 0, 0, 0, 0, 0, 0, 63, -128, 0, 0, 66, -76, 0, 0, 61, -52, -52, -51, 68, 122, 0, 0, 65, 32, 0, 0, 65, -16, 0, 0, 66, -56, 0, 0, 64, 0, 0, 0, -62, -58, 0, 0, 0, 3, 0, 0, 0, 0, 60, -93, -41, 10, 63, -128, 0, 0, 0, 3, 5, 105, 95, 111, 117, 116, 0, 0, 8, 102, 97, 100, 101, 84, 105, 109, 101, 0, 1, 4, 103, 97, 116, 101, 0, 2, 0, 9, 7, 67, 111, 110, 116, 114, 111, 108, 0, 0, 0, 0, 1, 0, 0, 0, 8, 71, 80, ...etc... string: latency nil [ "/d_recv", "data[ 551 ]", [ 9, "temp__0", 1000, 0, 1, 'i_out', 0.0, 'out', 0.0 ] ] [GSynthDefFile]: Constructing from blob size: 140733193388583 id: "SCgf" version: 1 num_synthdefs: 1 [GSynthDef]: [Hexdump]: Synth("temp__0" : 1000) 07 74 65 6d 70 5f 5f 30 00 0b 40 80 00 00 00 00 00 00 3f 80 00 00 42 b4 00 00 3d cc cc cd 44 7a 00 00 41 20 00 00 41 f0 00 00 42 c8 00 00 40 00 00 00 c2 c6 00 00 00 03 00 00 00 00 3c a3 d7 0a 3f 80 00 00 00 03 05 69 5f 6f 75 74 00 00 08 66 61 64 65 54 69 6d 65 00 01 04 67 61 74 65 00 02 00 09 07 43 6f 6e 74 72 6f 6c 00 00 00 00 01 00 00 00 08 47 50 6f 6c 79 67 6f 6e 02 00 10 00 01 00 00 ff ff 00 00 ff ff 00 01 ff ff 00 01 ff ff 00 01 ff ff 00 02 ff ff 00 01 ff ff 00 01 ff ff 00 02 ff ff 00 02 ff ff 00 01 ff ff 00 01 ff ff 00 02 ff ff 00 01 ff ff 00 01 ff ff 00 01 ff ff 00 02 02 0b 47 47 4c 52 65 6e 64 65 72 65 72 02 00 21 00 01 00 00 00 01 00 00 ff ff 00 01 ff ff 00 01 ff ff 00 01 ff ff 00 01 ff ff 00 02 ff ff 00 01 ff ff 00 02 ff ff 00 01 ff ff 00 02 ff ff 00 03 ff ff 00 04 ff ff 00 05 ff ff 00 01 ff ff 00 01 ff ff 00 06 ff ff 00 01 ff ff 00 01 ff ff 00 01 ff ff 00 01 ff ff 00 02 ff ff 00 01 ff ff 00 01 ff ff 00 01 ff ff 00 01 ff ff 00 07 ff ff 00 08 ff ff 00 01 ff ff 00 01 ff ff 00 01 ff ff 00 01 ff ff 00 02 ff ff 00 01 02 07 43 6f 6e 74 72 6f 6c 01 00 00 00 01 00 01 01 0c 42 69 6e 61 72 79 4f 70 55 47 65 6e 01 00 02 00 01 00 0a 00 03 00 00 ff ff 00 01 01 07 43 6f 6e 74 72 6f 6c 01 00 00 00 01 00 02 01 06 45 6e 76 47 65 6e 01 00 11 00 01 00 00 00 05 00 00 ff ff 00 02 ff ff 00 01 00 03 00 00 ff ff 00 09 00 04 00 00 ff ff 00 09 ff ff 00 02 ff ff 00 0a ff ff 00 02 ff ff 00 02 ff ff 00 02 ff ff 00 01 ff ff 00 01 ff ff 00 02 ff ff 00 02 ff ff 00 01 01 0c 42 69 6e 61 72 79 4f 70 55 47 65 6e 02 00 02 00 01 00 02 00 06 00 00 00 02 00 00 02 03 4f 75 74 02 00 02 00 00 00 00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 38 00 00 00 09 2c 73 69 69 69 73 66 73 66 00 00 00 74 65 6d 70 5f 5f 30 00 00 00 03 e8 00 00 00 00 00 00 00 01 69 5f 6f 75 74 00 00 00 00 00 00 00 6f 75 74 00 00 00 00 00 00 00 00 00 21 00 00 00 00 00 00 00 48 4b b6 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 21 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 e1 0a 00 00 00 00 00 00 00 d0 62 1b 2d 7f 00 00 00 d0 62 1b 2d 7f 00 00 40 bc b7 01 00 00 00 00 40 bc b7 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 The last lines (with only zeroes) go on for quite a while, after which scgraph quits. -------- So far for now, maybe one of you can shed some light on where things are going wrong? sincerely, Marije PS, DebugNetAddr is from the swiki by Julian Rohruber, with only slight mods to make it work with ScelDocument (and renaming the dump method, since it is useful to have the default dump method available). |
From: Florian P. S. <fsc...@te...> - 2009-02-27 09:53:27
|
Florian Paul Schmidt wrote: > ??? Sorry i couldn't parse this sentence. svn co works totally super. I > was not aware that subversion had any problems with ScGraph (even on OS X).. > > And the problem with the build is not that the Makefile sucks (of course > it can always be improved) but that > Max OS X sucks ;) Got carried away here.. I hope noone is seriously offended by this humble opinion of mine. If so: Sorry, that wasn't my intention.. > The hard part is > hunting down the dependencies, not the "make; make install" part of the > build.. Flo |
From: Florian P. S. <fsc...@te...> - 2009-02-27 09:50:27
|
Hi Till, LFSaw wrote: >> Things that might be worth investigating from the top of my head: >> >> - Adding video streaming to texture support >> - Adding interaction support to the renderer (i.e.: have mouseclicks >> sent back to the language via OSC, maybe with additional info like the >> synth IDs of synths in the "line of sight" of the mouse click >> - Add buffer support for storing geometric meshes and other stuff >> - Add geometry shader support [now this might be real fun :)] > > - make it cross-platform svn-co-able-and-make-able (coool!) > *g* ??? Sorry i couldn't parse this sentence. svn co works totally super. I was not aware that subversion had any problems with ScGraph (even on OS X).. And the problem with the build is not that the Makefile sucks (of course it can always be improved) but that Max OS X sucks ;) The hard part is hunting down the dependencies, not the "make; make install" part of the build.. If i misunderstood you here or am missing a crucial point, please elaborate :) > - rethink sclang-part of Graphic UGen (operators) I'm fine with this point though ;) Regards, Flo |
From: LFSaw <lf...@lf...> - 2009-02-26 22:34:39
|
On 26.02.2009, at 15:11, Florian Schmidt wrote: > Hi Frederik, > > On Wed, 2009-02-25 at 22:06 +0100, Fredrik Olofsson wrote: >> hello, >> could this be something to boost scgraph development? >> http://code.google.com/soc/ >> > > Hmmm, maybe :) What kind of project are you thinking about? I sadly do > not have time to commit to a SOC project.. But i would definetly > support > such an endeavour. > >> (deadline march 9.) >> >> >> there's a discussion over at the pd list and here's their application >> from last year. >> http://puredata.info/dev/summer-of-code/ >> >> (as inspiration.) > > Cool.. > > Things that might be worth investigating from the top of my head: > > - Adding video streaming to texture support > - Adding interaction support to the renderer (i.e.: have mouseclicks > sent back to the language via OSC, maybe with additional info like the > synth IDs of synths in the "line of sight" of the mouse click > - Add buffer support for storing geometric meshes and other stuff > - Add geometry shader support [now this might be real fun :)] - make it cross-platform svn-co-able-and-make-able (coool!) *g* - rethink sclang-part of Graphic UGen (operators) lg + (2+epsilon)c Till > > > Regards, > Flo > > -- > Dipl.-Inform. Florian Paul Schmidt > University of Bielefeld, Neuroinformatics Group, CITEC > Contact: > http://ekvv.uni-bielefeld.de/pers_publ/publ/personDetailAct?id=5504453 > > > > ------------------------------------------------------------------------------ > Open Source Business Conference (OSBC), March 24-25, 2009, San > Francisco, CA > -OSBC tackles the biggest issue in open source: Open Sourcing the > Enterprise > -Strategies to boost innovation and cut costs with open source > participation > -Receive a $600 discount off the registration fee with the source > code: SFAD > http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Scgraph-users mailing list > Scg...@li... > https://lists.sourceforge.net/lists/listinfo/scgraph-users |
From: Florian S. <fsc...@te...> - 2009-02-26 14:11:44
|
Hi Frederik, On Wed, 2009-02-25 at 22:06 +0100, Fredrik Olofsson wrote: > hello, > could this be something to boost scgraph development? > http://code.google.com/soc/ > Hmmm, maybe :) What kind of project are you thinking about? I sadly do not have time to commit to a SOC project.. But i would definetly support such an endeavour. > (deadline march 9.) > > > there's a discussion over at the pd list and here's their application > from last year. > http://puredata.info/dev/summer-of-code/ > > (as inspiration.) Cool.. Things that might be worth investigating from the top of my head: - Adding video streaming to texture support - Adding interaction support to the renderer (i.e.: have mouseclicks sent back to the language via OSC, maybe with additional info like the synth IDs of synths in the "line of sight" of the mouse click - Add buffer support for storing geometric meshes and other stuff - Add geometry shader support [now this might be real fun :)] Regards, Flo -- Dipl.-Inform. Florian Paul Schmidt University of Bielefeld, Neuroinformatics Group, CITEC Contact: http://ekvv.uni-bielefeld.de/pers_publ/publ/personDetailAct?id=5504453 |
From: Florian S. <fsc...@te...> - 2009-02-26 13:19:29
|
On Wed, 2009-02-25 at 22:22 +0100, Fredrik Olofsson wrote: > helloFlo, > why is this crashing with a 'Bus error'? > > h= Server("scgraph", NetAddr("localhost", 37291)); > h.boot; > ( > SynthDef(\render, {|in= 0| > GGLRenderer.gr(GTriangle.gr, 1, [1, 0, 0, 0.1], 0, 1, 0, 1); > }).play(h); > ) > > > i'm on x.5.6, intel, latest sc svn and scgraph classes from the quark > and the binary scgraph_osx_10.4_01.23.2009b.tgz Oh i forgot that there's a significantly non-zero probability that your operating system is developmentally impaired [forgive me this pun, it's just that primarily-binary-only operating systems make so many things so much more difficult, e.g. one has to provide builds for the users ;)]. So i created a binary tarball incorporating the [proposed] fix and you can find it here: http://tapas.affenbande.org/scgraph-test-triangle-fix.tgz - Please report back to me whether it fixes your crash.. - Please note that it expands into a directory scgraph/, so you might [accidentally] overwrite your existing scgraph directory.. Regards, Flo -- Dipl.-Inform. Florian Paul Schmidt University of Bielefeld, Neuroinformatics Group, CITEC Contact: http://ekvv.uni-bielefeld.de/pers_publ/publ/personDetailAct?id=5504453 |
From: Florian S. <fsc...@te...> - 2009-02-26 13:09:10
|
On Wed, 2009-02-25 at 22:22 +0100, Fredrik Olofsson wrote: > helloFlo, > why is this crashing with a 'Bus error'? > > h= Server("scgraph", NetAddr("localhost", 37291)); > h.boot; > ( > SynthDef(\render, {|in= 0| > GGLRenderer.gr(GTriangle.gr, 1, [1, 0, 0, 0.1], 0, 1, 0, 1); > }).play(h); > ) Hi again, does this diff fix the issue for you [also attached]? Index: server/plugins/triangle.cc =================================================================== --- server/plugins/triangle.cc (revision 35) +++ server/plugins/triangle.cc (working copy) @@ -60,10 +60,6 @@ _g.touch()->_faces[0].touch()->_vertices[0]._c[i] = *_control_in s[i]; _g.touch()->_faces[0].touch()->_vertices[1]._c[i] = *_control_in s[i+3]; _g.touch()->_faces[0].touch()->_vertices[2]._c[i] = *_control_in s[i+6]; - - _g.touch()->_faces[0].touch()->_vertices[0]._c[i] = *_control_in s[i+9]; - _g.touch()->_faces[0].touch()->_vertices[1]._c[i] = *_control_in s[i+9]; - _g.touch()->_faces[0].touch()->_vertices[2]._c[i] = *_control_in s[i+9]; } _graphics_outs[0]._graphics.push_back (_g); -- Dipl.-Inform. Florian Paul Schmidt University of Bielefeld, Neuroinformatics Group, CITEC Contact: http://ekvv.uni-bielefeld.de/pers_publ/publ/personDetailAct?id=5504453 |
From: Fredrik O. <f...@fr...> - 2009-02-25 23:53:23
|
hello, could this be something to boost scgraph development? http://code.google.com/soc/ (deadline march 9.) there's a discussion over at the pd list and here's their application from last year. http://puredata.info/dev/summer-of-code/ (as inspiration.) _f #| fredrikolofsson.com klippav.org musicalfieldsforever.com |# |
From: Florian S. <mis...@gm...> - 2009-02-25 23:37:01
|
On Wednesday 25 February 2009, Fredrik Olofsson wrote: > helloFlo, Hi Frederik, > why is this crashing with a 'Bus error'? Oh no :) Crashes everywhere.. > > h= Server("scgraph", NetAddr("localhost", 37291)); > h.boot; > ( > SynthDef(\render, {|in= 0| > GGLRenderer.gr(GTriangle.gr, 1, [1, 0, 0, 0.1], 0, 1, 0, 1); > }).play(h); > ) Does other stuff, like a simple cube also crash? > > i'm on x.5.6, intel, latest sc svn and scgraph classes from the quark > and the binary scgraph_osx_10.4_01.23.2009b.tgz > > > > > Process: scgraph [1519] > Path: /Users/ifields/scgraph/bin/scgraph > Identifier: scgraph > Version: ??? (???) > Code Type: X86 (Native) > Parent Process: bash [1447] > > Date/Time: 2009-02-25 22:21:41.712 +0100 > OS Version: Mac OS X 10.5.6 (9G66) > Report Version: 6 > > Exception Type: EXC_BAD_ACCESS (SIGBUS) > Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000 > Crashed Thread: 0 > > Thread 0 Crashed: > 0 triangle.bundle 0x0b2fd93a > Triangle::process_g(double) + 1146 > 1 scgraph 0x0000c9b1 > GSynth::process_g(double) + 177 > 2 scgraph 0x0001504b > ScGraph::run_one_graphics_cycle(double) + 603 > 3 scgraph 0x00020355 > GraphicLoop::timer_callback() + 165 > 4 scgraph 0x00040fdb > GraphicLoop::qt_metacall(QMetaObject::Call, int, void**) + 91 > 5 QtCore 0x003d6afb > QMetaObject::activate(QObject*, int, int, void**) + 519 > 6 QtCore 0x0041138f QTimer::timeout() + 49 > 7 QtCore 0x003d4803 QObject::event(QEvent*) > + 551 > 8 QtGui 0x00af3fdc > QApplicationPrivate::notify_helper(QObject*, QEvent*) + 166 > 9 QtGui 0x00af784f > QApplication::notify(QObject*, QEvent*) + 235 > 10 QtCore 0x003c6592 > QCoreApplication::notifyInternal(QObject*, QEvent*) + 144 > 11 QtGui 0x00b49af1 > QApplicationPrivate::globalEventProcessor(OpaqueEventHandlerCallRef*, > OpaqueEventRef*, void*) + 6859 > 12 com.apple.HIToolbox 0x93f9b143 > DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, > HandlerCallRec*) + 1181 > 13 com.apple.HIToolbox 0x93f9a57d > SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, > HandlerCallRec*) + 405 > 14 com.apple.HIToolbox 0x93f9a3e2 > SendEventToEventTargetWithOptions + 58 > 15 com.apple.HIToolbox 0x93fc8d54 > ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, > OpaqueEventRef*, void*) + 356 > 16 com.apple.HIToolbox 0x93f9b4fc > DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, > HandlerCallRec*) + 2134 > 17 com.apple.HIToolbox 0x93f9a57d > SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, > HandlerCallRec*) + 405 > 18 com.apple.HIToolbox 0x93fb6ed2 SendEventToEventTarget + > 52 > 19 QtGui 0x00b446b4 > qt_mac_send_event(QFlags<QEventLoop::ProcessEventsFlag>, > OpaqueEventRef*, OpaqueWindowPtr*) + 86 > 20 QtGui 0x00b5260b > QEventDispatcherMac > > ::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 623 > > 21 QtCore 0x003c5e0b > QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 63 > 22 QtCore 0x003c5f91 > QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 149 > 23 QtCore 0x003c77ad QCoreApplication::exec() > + 147 > 24 scgraph 0x00002ced main + 253 > 25 scgraph 0x0000246b _start + 209 > 26 scgraph 0x00002399 start + 41 > > Thread 1: > 0 libSystem.B.dylib 0x92adf20e > semaphore_wait_signal_trap + 10 > 1 libSystem.B.dylib 0x92b11206 _pthread_cond_wait + 1267 > 2 libSystem.B.dylib 0x92b56539 pthread_cond_wait + 48 > 3 DiskIOUGens.scx 0x0a9c60ba > SC_SyncCondition::WaitEach() + 36 (SC_SyncCondition.cpp:45) > 4 DiskIOUGens.scx 0x0a9c8405 > disk_io_thread_func(void*) + 35 > 5 libSystem.B.dylib 0x92b10095 _pthread_start + 321 > 6 libSystem.B.dylib 0x92b0ff52 thread_start + 34 > > Thread 2: > 0 libSystem.B.dylib 0x92adf2e6 mach_wait_until + 10 > 1 libSystem.B.dylib 0x92b563ad nanosleep + 314 > 2 libSystem.B.dylib 0x92b5626d usleep + 61 > 3 KeyboardUGens.scx 0x017f7bee > gstate_update_func(void*) + 40 > 4 libSystem.B.dylib 0x92b10095 _pthread_start + 321 > 5 libSystem.B.dylib 0x92b0ff52 thread_start + 34 > > Thread 3: > 0 libSystem.B.dylib 0x92adf2e6 mach_wait_until + 10 > 1 libSystem.B.dylib 0x92b563ad nanosleep + 314 > 2 libSystem.B.dylib 0x92b5626d usleep + 61 > 3 MacUGens.scx 0x0b1b9ef5 > gstate_update_func(void*) + 193 (MacUGens.cpp:87) > 4 libSystem.B.dylib 0x92b10095 _pthread_start + 321 > 5 libSystem.B.dylib 0x92b0ff52 thread_start + 34 > > Thread 4: > 0 libSystem.B.dylib 0x92adf2e6 mach_wait_until + 10 > 1 libSystem.B.dylib 0x92b563ad nanosleep + 314 > 2 libSystem.B.dylib 0x92b5626d usleep + 61 > 3 MouseUGens.scx 0x0b1c6009 > gstate_update_func(void*) + 179 > 4 libSystem.B.dylib 0x92b10095 _pthread_start + 321 > 5 libSystem.B.dylib 0x92b0ff52 thread_start + 34 > > Thread 5: > 0 libSystem.B.dylib 0x92adf2e6 mach_wait_until + 10 > 1 libSystem.B.dylib 0x92b563ad nanosleep + 314 > 2 libSystem.B.dylib 0x92b5626d usleep + 61 > 3 scgraph 0x0001fe33 > ControlLoop::thread_func() + 435 > 4 libSystem.B.dylib 0x92b10095 _pthread_start + 321 > 5 libSystem.B.dylib 0x92b0ff52 thread_start + 34 > > Thread 6: > 0 libSystem.B.dylib 0x92b1630a select$DARWIN_EXTSN > $NOCANCEL + 10 > 1 scgraph 0x00063bab > SocketReceiveMultiplexer::Implementation::Run() + 811 > 2 scgraph 0x0002e313 OscHandler::run() + 115 > 3 QtCore 0x002ebc08 > QThreadPrivate::start(void*) + 202 > 4 libSystem.B.dylib 0x92b10095 _pthread_start + 321 > 5 libSystem.B.dylib 0x92b0ff52 thread_start + 34 > > Thread 7: > 0 libSystem.B.dylib 0x92ae63ae __semwait_signal + 10 > 1 libSystem.B.dylib 0x92b10d0d pthread_cond_wait > $UNIX2003 + 73 > 2 libGLProgrammability.dylib 0x948d2b32 glvmDoWork + 162 > 3 libSystem.B.dylib 0x92b10095 _pthread_start + 321 > 4 libSystem.B.dylib 0x92b0ff52 thread_start + 34 > > Thread 0 crashed with X86 Thread State (32-bit): > eax: 0x00000000 ebx: 0x0b2fd4d7 ecx: 0x00000000 edx: 0x016af320 > edi: 0x00000001 esi: 0x00000008 ebp: 0xbfffe588 esp: 0xbfffe4d0 > ss: 0x0000001f efl: 0x00010202 eip: 0x0b2fd93a cs: 0x00000017 > ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037 > cr2: 0x00000000 > > Binary Images: > 0x1000 - 0x212fff +scgraph ??? (???) > <166914ef8a352b9aa6e03acdd0e35787> /Users/ifields/scgraph/bin/scgraph > 0x2db000 - 0x49a5fb +QtCore ??? (???) /usr/local/Trolltech/ > Qt-4.4.3/lib/QtCore.framework/Versions/4/QtCore > 0x571000 - 0x5cea61 +QtOpenGL ??? (???) /usr/local/Trolltech/ > Qt-4.4.3/lib/QtOpenGL.framework/Versions/4/QtOpenGL > 0x65b000 - 0x692ff3 +BinaryOpUGens.scx ??? (???) > <132c74e5d345e6c60b6fdf0bea05bf11> /Applications/SuperCollider3/build/ > plugins/BinaryOpUGens.scx > 0x69c000 - 0x6a6ff3 +ChaosUGens.scx ??? (???) > <91ea0364910737dcf356eeb500c213e8> /Applications/SuperCollider3/build/ > plugins/ChaosUGens.scx > 0x6ab000 - 0x6d3ff3 +DelayUGens.scx ??? (???) > <fa8ad2ca7f26d75a38621bd8547a6141> /Applications/SuperCollider3/build/ > plugins/DelayUGens.scx > 0x6da000 - 0x6e2ff7 +DemandUGens.scx ??? (???) > <d293c1f1f01591d928ee8096fea1fc84> /Applications/SuperCollider3/build/ > plugins/DemandUGens.scx > 0x6e7000 - 0x6ebffb +DynNoiseUGens.scx ??? (???) > <2404faed11c7877f3f6574d14ae1b2d6> /Applications/SuperCollider3/build/ > plugins/DynNoiseUGens.scx > 0x6ef000 - 0x700ff6 +FFT2_UGens.scx ??? (???) > <7e2cb7edb8291e59df66fe489c8a1911> /Applications/SuperCollider3/build/ > plugins/FFT2_UGens.scx > 0xae6000 - 0x12143f7 +QtGui ??? (???) /usr/local/Trolltech/ > Qt-4.4.3/lib/QtGui.framework/Versions/4/QtGui > 0x1730000 - 0x173dff7 +FFT_UGens.scx ??? (???) > <cdc84a553f1a264b880cdde56727978a> /Applications/SuperCollider3/build/ > plugins/FFT_UGens.scx > 0x17ce000 - 0x17e9ffb +FilterUGens.scx ??? (???) > <2b159df95caf448735184a4a300893f3> /Applications/SuperCollider3/build/ > plugins/FilterUGens.scx > 0x17f0000 - 0x17f2ff7 +GendynUGens.scx ??? (???) > <73d4050d95ee5f655612b29fcc49ed81> /Applications/SuperCollider3/build/ > plugins/GendynUGens.scx > 0x17f6000 - 0x17f7ff7 +KeyboardUGens.scx ??? (???) > <677fe5b755bcb03dd1f6b44d3b312e5d> /Applications/SuperCollider3/build/ > plugins/KeyboardUGens.scx > 0x17fb000 - 0x17fcffb +PhysicalModellingUGens.scx ??? (???) > <021a97cc600b378345c2131f8c4d618f> /Applications/SuperCollider3/build/ > plugins/PhysicalModellingUGens.scx > 0xa9c5000 - 0xaa1bffe +DiskIOUGens.scx ??? (???) > <19847f9ea321555b9ce6578871479808> /Applications/SuperCollider3/build/ > plugins/DiskIOUGens.scx > 0xaaf6000 - 0xab01ffb +GrainUGens.scx ??? (???) > <923b9fe6b97f77690c59a45a4abf39ce> /Applications/SuperCollider3/build/ > plugins/GrainUGens.scx > 0xb176000 - 0xb17dfff +IOUGens.scx ??? (???) > <a05e76a7be963db90c3ee9ed024911a1> /Applications/SuperCollider3/build/ > plugins/IOUGens.scx > 0xb182000 - 0xb195ffb +LFUGens.scx ??? (???) > <8ec2bcde67636f9f3d2eefc3df75d148> /Applications/SuperCollider3/build/ > plugins/LFUGens.scx > 0xb19b000 - 0xb1a6fff +MachineListening.scx ??? (???) > <5d5df060b7097470136d9a8ec2e5d8df> /Applications/SuperCollider3/build/ > plugins/MachineListening.scx > 0xb1b9000 - 0xb1bb04b +MacUGens.scx ??? (???) /Applications/ > SuperCollider3/build/plugins/MacUGens.scx > 0xb1c5000 - 0xb1c6fff +MouseUGens.scx ??? (???) > <5aa3888a61f3b2f9f753593a64904f73> /Applications/SuperCollider3/build/ > plugins/MouseUGens.scx > 0xb1cb000 - 0xb1cffff +MulAddUGens.scx ??? (???) > <336ce17d2e041b44efe3dac880fdeba2> /Applications/SuperCollider3/build/ > plugins/MulAddUGens.scx > 0xb1d3000 - 0xb1d9fff +NoiseUGens.scx ??? (???) > <e0025ca16c0247d841a3455414788e7c> /Applications/SuperCollider3/build/ > plugins/NoiseUGens.scx > 0xb1de000 - 0xb1f0ff7 +OSCUGens.scx ??? (???) > <2285fa832fd4357594d58f13b67258bb> /Applications/SuperCollider3/build/ > plugins/OSCUGens.scx > 0xb1f7000 - 0xb1ffffb +PanUGens.scx ??? (???) > <c94cb543106fb33ddd239430fc5ca7ab> /Applications/SuperCollider3/build/ > plugins/PanUGens.scx > 0xb204000 - 0xb20affb +ReverbUGens.scx ??? (???) > <3d5eba1d0be642883770d9aca375fec1> /Applications/SuperCollider3/build/ > plugins/ReverbUGens.scx > 0xb20e000 - 0xb20ffff +TestUGens.scx ??? (???) > <db42457878b6a7dd52f22a7092aca0d8> /Applications/SuperCollider3/build/ > plugins/TestUGens.scx > 0xb213000 - 0xb220ffb +TriggerUGens.scx ??? (???) > <62d0ac3ff86a0d3eb3cd766278de8fa4> /Applications/SuperCollider3/build/ > plugins/TriggerUGens.scx > 0xb226000 - 0xb231ff7 +UnaryOpUGens.scx ??? (???) > <c1b1f826875fd9ef69ef5e044661ad1c> /Applications/SuperCollider3/build/ > plugins/UnaryOpUGens.scx > 0xb237000 - 0xb239ff3 +UnpackFFTUGens.scx ??? (???) > <075b36c868eef6db8b876728c13cc6eb> /Applications/SuperCollider3/build/ > plugins/UnpackFFTUGens.scx > 0xb242000 - 0xb244ff3 +binary_op.bundle ??? (???) > <38765a1fd1c916b64e440e46cbff5d49> /Users/ifields/scgraph/lib/scgraph/ > plugins/binary_op.bundle > 0xb248000 - 0xb24aff7 +blending.bundle ??? (???) > <8d797f4f3bf62097c023f284cf493efe> /Users/ifields/scgraph/lib/scgraph/ > plugins/blending.bundle > 0xb24e000 - 0xb253ffb +bordered_rectangle.bundle ??? (???) > <85efa0d9c3208c251907ef4017039e33> /Users/ifields/scgraph/lib/scgraph/ > plugins/bordered_rectangle.bundle > 0xb258000 - 0xb25bff3 +color.bundle ??? (???) > <ddd860eee5ce033d4a0bdd35bfc9ec72> /Users/ifields/scgraph/lib/scgraph/ > plugins/color.bundle > 0xb260000 - 0xb265ff3 +cube.bundle ??? (???) > <1359920f77d12a3d53ce130fa8e20cfc> /Users/ifields/scgraph/lib/scgraph/ > plugins/cube.bundle > 0xb26a000 - 0xb26dff3 +culling.bundle ??? (???) > <902d63e32419c7a58123a2c2a0e9d881> /Users/ifields/scgraph/lib/scgraph/ > plugins/culling.bundle > 0xb272000 - 0xb27cfeb +gl_renderer.bundle ??? (???) > <0cc2d614f964aff96dd520b794cc96a2> /Users/ifields/scgraph/lib/scgraph/ > plugins/gl_renderer.bundle > 0xb286000 - 0xb289ffb +light.bundle ??? (???) > <9ebf1798fa30a2758dfc74bccb354df8> /Users/ifields/scgraph/lib/scgraph/ > plugins/light.bundle > 0xb28d000 - 0xb28fff7 +lighting.bundle ??? (???) > <3746685710c4392b36821628dc0431ca> /Users/ifields/scgraph/lib/scgraph/ > plugins/lighting.bundle > 0xb293000 - 0xb298ff7 +line.bundle ??? (???) > <ed503152d60f7a945f811f3bbc5a547c> /Users/ifields/scgraph/lib/scgraph/ > plugins/line.bundle > 0xb29d000 - 0xb2a0fff +material.bundle ??? (???) > <60e99582ebde05a3913627199c23e6d1> /Users/ifields/scgraph/lib/scgraph/ > plugins/material.bundle > 0xb2a5000 - 0xb2a6ff3 +mul_add.bundle ??? (???) > <ac53f7d4fddd26d1b0e9d7fd711c576e> /Users/ifields/scgraph/lib/scgraph/ > plugins/mul_add.bundle > 0xb2aa000 - 0xb2afff7 +points.bundle ??? (???) > <4a1364dbb474a6350d6b7734b5a92262> /Users/ifields/scgraph/lib/scgraph/ > plugins/points.bundle > 0xb2b4000 - 0xb2b9ff7 +polygon.bundle ??? (???) > <21a75d1afda54b2d43f422822db03430> /Users/ifields/scgraph/lib/scgraph/ > plugins/polygon.bundle > 0xb2be000 - 0xb2c4ffb +quad.bundle ??? (???) > <ad86006bb34145583cdd2d66210e7c23> /Users/ifields/scgraph/lib/scgraph/ > plugins/quad.bundle > 0xb2c9000 - 0xb2cdfff +rectangle.bundle ??? (???) > <cf74d7c51c11ed1c82fb3ad087a6eb59> /Users/ifields/scgraph/lib/scgraph/ > plugins/rectangle.bundle > 0xb2d2000 - 0xb2d5ff7 +rotate.bundle ??? (???) > <2fee5f67d17666d67d8d3225674d5239> /Users/ifields/scgraph/lib/scgraph/ > plugins/rotate.bundle > 0xb2da000 - 0xb2deff3 +shader_program.bundle ??? (???) > <6b3631e41641942ddca1c30973f699a5> /Users/ifields/scgraph/lib/scgraph/ > plugins/shader_program.bundle > 0xb2e3000 - 0xb2e6ff7 +stretch.bundle ??? (???) > <d2f865fc04e9f9bfc3c6f544f8ac81ed> /Users/ifields/scgraph/lib/scgraph/ > plugins/stretch.bundle > 0xb2eb000 - 0xb2eeff7 +transformation.bundle ??? (???) > <a7269e93ad85ec2f92e2d5d0402f873a> /Users/ifields/scgraph/lib/scgraph/ > plugins/transformation.bundle > 0xb2f3000 - 0xb2f6ff7 +translate.bundle ??? (???) > <40fd9df528c93493522fd21d1df238a4> /Users/ifields/scgraph/lib/scgraph/ > plugins/translate.bundle > 0xb2fb000 - 0xb300ff7 +triangle.bundle ??? (???) > <21c258c5eba2a4ab6a18661814edb6de> /Users/ifields/scgraph/lib/scgraph/ > plugins/triangle.bundle > 0xb30c000 - 0xb48ffe3 GLEngine ??? (???) > <bfbd7ce69ea896a6b38d6232b01cdeda> /System/Library/Frameworks/ > OpenGL.framework/Resources/GLEngine.bundle/GLEngine > 0xb4bd000 - 0xb767fe9 com.apple.ATIRadeonX1000GLDriver 1.5.36 > (5.3.6) <3f9984c88184d39af0ed1e486ab4616a> /System/Library/Extensions/ > ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRadeonX1000GLDriver > 0xb7c7000 - 0xb7e3ff7 GLRendererFloat ??? (???) > <dcdc2e0de7fb9a52d99e529c3688f26d> /System/Library/Frameworks/ > OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/ > GLRendererFloat > 0xdf07000 - 0xe0fdfff com.apple.RawCamera.bundle 2.0.12 (421) > <02fe3f4ea6251f7b2d23d855ce5c5fd2> /System/Library/CoreServices/ > RawCamera.bundle/Contents/MacOS/RawCamera > 0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) > <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld > 0x90040000 - 0x9007eff7 libGLImage.dylib ??? (???) > <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/ > OpenGL.framework/Versions/A/Libraries/libGLImage.dylib > 0x9007f000 - 0x90173ff4 libiconv.2.dylib ??? (???) > <c508c60fafca17824c0017b2e4369802> /usr/lib/libiconv.2.dylib > 0x90174000 - 0x9017efeb com.apple.audio.SoundManager 3.9.2 (3.9.2) > <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/ > A/CarbonSound > 0x9017f000 - 0x9018bffe libGL.dylib ??? (???) /System/Library/ > Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib > 0x9018c000 - 0x9019affd libz.1.dylib ??? (???) > <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib > 0x9019b000 - 0x90255fe3 com.apple.CoreServices.OSServices 226.5 > (226.5) <25243fd02dc5d4f4cc5780f6b2f6fe26> /System/Library/Frameworks/ > CoreServices.framework/Versions/A/Frameworks/OSServices.framework/ > Versions/A/OSServices > 0x90256000 - 0x90290fe7 com.apple.coreui 1.2 (62) /System/Library/ > PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI > 0x90380000 - 0x90383fff com.apple.help 1.1 (36) > <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help > 0x903c1000 - 0x903f0fe3 com.apple.AE 402.3 (402.3) > <4cb9ef65cf116d6dd424f0ce98c2d015> /System/Library/Frameworks/ > CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE > 0x903f1000 - 0x904d2ff7 libxml2.2.dylib ??? (???) > <c65c902ca6afc1b4cf68b90cff921cc5> /usr/lib/libxml2.2.dylib > 0x9052f000 - 0x9054effa libJPEG.dylib ??? (???) > <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ > Versions/A/Resources/libJPEG.dylib > 0x9054f000 - 0x905ceff5 com.apple.SearchKit 1.2.1 (1.2.1) > <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/ > CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/ > Versions/A/SearchKit > 0x90790000 - 0x907edffb libstdc++.6.dylib ??? (???) > <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib > 0x908bd000 - 0x90ccdfef libBLAS.dylib ??? (???) /System/Library/ > Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/ > Versions/A/libBLAS.dylib > 0x90cce000 - 0x90daefff libobjc.A.dylib ??? (???) > <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib > 0x90dec000 - 0x90f32ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) > <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ > Versions/A/ImageIO > 0x90f33000 - 0x90fb0feb com.apple.audio.CoreAudio 3.1.1 (3.1.1) > <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/ > CoreAudio.framework/Versions/A/CoreAudio > 0x91f8d000 - 0x9215bff3 com.apple.security 5.0.4 (34102) > <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/ > Security.framework/Versions/A/Security > 0x927ae000 - 0x927aeffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/ > Library/Frameworks/vecLib.framework/Versions/A/vecLib > 0x927af000 - 0x927f1fef com.apple.NavigationServices 3.5.2 (163) > <d3a7c9720479eed8ea35703125303871> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/ > Versions/A/NavigationServices > 0x927fe000 - 0x92806fff com.apple.DiskArbitration 2.2.1 (2.2.1) > <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/ > DiskArbitration.framework/Versions/A/DiskArbitration > 0x9283a000 - 0x92865fe7 libauto.dylib ??? (???) > <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib > 0x92abd000 - 0x92ac4fe9 libgcc_s.1.dylib ??? (???) > <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib > 0x92ac5000 - 0x92addff7 com.apple.CoreVideo 1.6.0 (20.0) > <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/ > CoreVideo.framework/Versions/A/CoreVideo > 0x92ade000 - 0x92c45ff3 libSystem.B.dylib ??? (???) > <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib > 0x92c46000 - 0x92c6efff libcups.2.dylib ??? (???) > <16bec7c6a004f744804e2281a1b1c094> /usr/lib/libcups.2.dylib > 0x92c6f000 - 0x92c73fff libmathCommon.A.dylib ??? (???) /usr/lib/ > system/libmathCommon.A.dylib > 0x92c74000 - 0x93032fea libLAPACK.dylib ??? (???) /System/Library/ > Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/ > Versions/A/libLAPACK.dylib > 0x9304b000 - 0x9304bff8 com.apple.ApplicationServices 34 (34) > <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/ApplicationServices > 0x9304c000 - 0x93053ffe libbsm.dylib ??? (???) > <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib > 0x93054000 - 0x9307cff7 com.apple.shortcut 1 (1.0) > <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/ > Shortcut.framework/Versions/A/Shortcut > 0x9307d000 - 0x93089ff9 com.apple.helpdata 1.0.1 (14.2) /System/ > Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData > 0x9308a000 - 0x9308cff5 libRadiance.dylib ??? (???) > <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ > Versions/A/Resources/libRadiance.dylib > 0x93090000 - 0x930e9ff7 libGLU.dylib ??? (???) /System/Library/ > Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib > 0x93334000 - 0x9360eff3 com.apple.CoreServices.CarbonCore 786.11 > (786.11) <f06fe5d92d56ac5aa52d1ba182745924> /System/Library/Frameworks/ > CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/ > Versions/A/CarbonCore > 0x9360f000 - 0x9388afe7 com.apple.Foundation 6.5.7 (677.22) > <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/ > Foundation.framework/Versions/C/Foundation > 0x938f2000 - 0x93f92fff com.apple.CoreGraphics 1.407.2 (???) > <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ > CoreGraphics.framework/Versions/A/CoreGraphics > 0x93f93000 - 0x9429bfff com.apple.HIToolbox 1.5.4 (???) > <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/ > HIToolbox > 0x944dc000 - 0x94513fff com.apple.SystemConfiguration 1.9.2 (1.9.2) > <01426a38ba44efa5d448daef8b3e9941> /System/Library/Frameworks/ > SystemConfiguration.framework/Versions/A/SystemConfiguration > 0x94514000 - 0x9451dfff com.apple.speech.recognition.framework 3.7.24 > (3.7.24) <17537dd39882e07142db9e5c2db170b8> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/ > Versions/A/SpeechRecognition > 0x945f2000 - 0x94616fff libxslt.1.dylib ??? (???) > <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib > 0x94617000 - 0x9461efff com.apple.agl 3.0.9 (AGL-3.0.9) > <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/ > AGL.framework/Versions/A/AGL > 0x9461f000 - 0x9462afe7 libCSync.A.dylib ??? (???) > <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ > CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib > 0x9462b000 - 0x946a5ff8 com.apple.print.framework.PrintCore 5.5.3 > (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ > PrintCore.framework/Versions/A/PrintCore > 0x94719000 - 0x947a0ff7 libsqlite3.0.dylib ??? (???) > <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib > 0x947a1000 - 0x94886ff3 com.apple.CoreData 100.1 (186) > <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/ > CoreData.framework/Versions/A/CoreData > 0x94887000 - 0x9488bfff libGIF.dylib ??? (???) > <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ > Versions/A/Resources/libGIF.dylib > 0x9488c000 - 0x948aafff libresolv.9.dylib ??? (???) > <b5b1527c2d99495ad5d507ab0a4ea872> /usr/lib/libresolv.9.dylib > 0x948ab000 - 0x94d7cf3e libGLProgrammability.dylib ??? (???) > <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/ > OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib > 0x94d7d000 - 0x94d7dffb com.apple.installserver.framework 1.0 (8) / > System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/ > InstallServer > 0x94d7e000 - 0x94ddaff7 com.apple.htmlrendering 68 (1.1.3) > <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/ > Versions/A/HTMLRendering > 0x94e4f000 - 0x94e54fff com.apple.CommonPanels 1.2.4 (85) > <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/ > A/CommonPanels > 0x94e87000 - 0x95224fef com.apple.QuartzCore 1.5.7 (1.5.7) > <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/ > QuartzCore.framework/Versions/A/QuartzCore > 0x95225000 - 0x95240ffb libPng.dylib ??? (???) > <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ > Versions/A/Resources/libPng.dylib > 0x952c1000 - 0x952c2ffc libffi.dylib ??? (???) > <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib > 0x952c3000 - 0x95356fff com.apple.ink.framework 101.3 (86) > <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink > 0x95416000 - 0x9554eff7 libicucore.A.dylib ??? (???) > <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib > 0x9554f000 - 0x9558efef libTIFF.dylib ??? (???) > <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ > Versions/A/Resources/libTIFF.dylib > 0x958c9000 - 0x9591aff7 com.apple.HIServices 1.7.0 (???) > <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ > HIServices.framework/Versions/A/HIServices > 0x9594e000 - 0x959a8ff7 com.apple.CoreText 2.0.4 (???) > <f9a90116ae34a2b0d84e87734766fb3a> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/ > Versions/A/CoreText > 0x959ad000 - 0x959dafeb libvDSP.dylib ??? (???) > <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/ > Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/ > libvDSP.dylib > 0x959db000 - 0x95aa2ff2 com.apple.vImage 3.0 (3.0) /System/Library/ > Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/ > Versions/A/vImage > 0x95ad8000 - 0x95b55fef libvMisc.dylib ??? (???) /System/Library/ > Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/ > Versions/A/libvMisc.dylib > 0x95b85000 - 0x95c0ffef com.apple.DesktopServices 1.4.7 (1.4.7) > <7898a0f2a46fc7d8887b041bc23e3811> /System/Library/PrivateFrameworks/ > DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv > 0x95c10000 - 0x95cdbfff com.apple.ColorSync 4.5.1 (4.5.1) /System/ > Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ > ColorSync.framework/Versions/A/ColorSync > 0x95cdc000 - 0x95cdcffd com.apple.Accelerate.vecLib 3.4.2 (vecLib > 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/ > Frameworks/vecLib.framework/Versions/A/vecLib > 0x95cdd000 - 0x964dbfef com.apple.AppKit 6.5.6 (949.43) > <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/ > AppKit.framework/Versions/C/AppKit > 0x964f9000 - 0x96506fe7 com.apple.opengl 1.5.9 (1.5.9) > <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/ > OpenGL.framework/Versions/A/OpenGL > 0x96507000 - 0x96507ffc com.apple.audio.units.AudioUnit 1.5 (1.5) / > System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit > 0x96512000 - 0x96518fff com.apple.print.framework.Print 218.0.2 > (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print > 0x96519000 - 0x965b6fe4 com.apple.CFNetwork 422.15.2 (422.15.2) > <80851410a5592b7c3b149b2ff849bcc1> /System/Library/Frameworks/ > CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/ > Versions/A/CFNetwork > 0x965b7000 - 0x965b7ffd com.apple.Accelerate 1.4.2 (Accelerate > 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/ > Accelerate > 0x9662c000 - 0x96644fff com.apple.openscripting 1.2.8 (???) > <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/ > Versions/A/OpenScripting > 0x96645000 - 0x9665affb com.apple.ImageCapture 5.0.1 (5.0.1) /System/ > Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ > ImageCapture.framework/Versions/A/ImageCapture > 0x9666b000 - 0x9671dffb libcrypto.0.9.7.dylib ??? (???) > <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib > 0x96763000 - 0x967acfef com.apple.Metadata 10.5.2 (398.25) > <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/ > CoreServices.framework/Versions/A/Frameworks/Metadata.framework/ > Versions/A/Metadata > 0x967ad000 - 0x9685dfff edu.mit.Kerberos 6.0.12 (6.0.12) > <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/ > Kerberos.framework/Versions/A/Kerberos > 0x96a1b000 - 0x96a1dfff com.apple.securityhi 3.0 (30817) > <8c9db9ce1626eff2aff002549fb58d7d> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/ > SecurityHI > 0x96a1e000 - 0x96b70ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 > (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/ > AudioToolbox > 0x96b81000 - 0x96b91fff com.apple.speech.synthesis.framework 3.7.1 > (3.7.1) <5171726062da2bd3c6b8b58486c7777a> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ > SpeechSynthesis.framework/Versions/A/SpeechSynthesis > 0x96bdd000 - 0x96c84feb com.apple.QD 3.11.54 (???) > <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/QD.framework/ > Versions/A/QD > 0x96c85000 - 0x96c85fff com.apple.Carbon 136 (136) > <a668670c206841fdcb893bfacddfd4b9> /System/Library/Frameworks/ > Carbon.framework/Versions/A/Carbon > 0x96c86000 - 0x96c8dff7 libCGATS.A.dylib ??? (???) > <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ > CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib > 0x96c8e000 - 0x96d19fff com.apple.framework.IOKit 1.5.1 (???) > <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/ > IOKit.framework/Versions/A/IOKit > 0x96d1a000 - 0x96e4dfff com.apple.CoreFoundation 6.5.5 (476.17) > <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/ > CoreFoundation.framework/Versions/A/CoreFoundation > 0x97109000 - 0x97119ffc com.apple.LangAnalysis 1.6.4 (1.6.4) > <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ > LangAnalysis.framework/Versions/A/LangAnalysis > 0x9711a000 - 0x97130fff com.apple.DictionaryServices 1.0.0 (1.0.0) > <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/ > CoreServices.framework/Versions/A/Frameworks/ > DictionaryServices.framework/Versions/A/DictionaryServices > 0x97131000 - 0x971bdff7 com.apple.LaunchServices 290.3 (290.3) > <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/ > CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/ > Versions/A/LaunchServices > 0x971be000 - 0x971beffa com.apple.CoreServices 32 (32) > <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/ > CoreServices.framework/Versions/A/CoreServices > 0x971bf000 - 0x97200fe7 libRIP.A.dylib ??? (???) > <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ > CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib > 0x97201000 - 0x97294ff3 com.apple.ApplicationServices.ATS 3.4 (???) > <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ > ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/ > Versions/A/ATS > 0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/ > libobjc.A.dylib > 0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/ > libSystem.B.dylib > > > > > > #| > fredrikolofsson.com klippav.org musicalfieldsforever.com > > |# > > --------------------------------------------------------------------------- >--- Open Source Business Conference (OSBC), March 24-25, 2009, San > Francisco, CA -OSBC tackles the biggest issue in open source: Open Sourcing > the Enterprise -Strategies to boost innovation and cut costs with open > source participation -Receive a $600 discount off the registration fee with > the source code: SFAD http://p.sf.net/sfu/XcvMzF8H > _______________________________________________ > Scgraph-users mailing list > Scg...@li... > https://lists.sourceforge.net/lists/listinfo/scgraph-users -- Palimm Palimm! http://tapas.affenbande.org |
From: Fredrik O. <f...@fr...> - 2009-02-25 21:23:13
|
helloFlo, why is this crashing with a 'Bus error'? h= Server("scgraph", NetAddr("localhost", 37291)); h.boot; ( SynthDef(\render, {|in= 0| GGLRenderer.gr(GTriangle.gr, 1, [1, 0, 0, 0.1], 0, 1, 0, 1); }).play(h); ) i'm on x.5.6, intel, latest sc svn and scgraph classes from the quark and the binary scgraph_osx_10.4_01.23.2009b.tgz Process: scgraph [1519] Path: /Users/ifields/scgraph/bin/scgraph Identifier: scgraph Version: ??? (???) Code Type: X86 (Native) Parent Process: bash [1447] Date/Time: 2009-02-25 22:21:41.712 +0100 OS Version: Mac OS X 10.5.6 (9G66) Report Version: 6 Exception Type: EXC_BAD_ACCESS (SIGBUS) Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000 Crashed Thread: 0 Thread 0 Crashed: 0 triangle.bundle 0x0b2fd93a Triangle::process_g(double) + 1146 1 scgraph 0x0000c9b1 GSynth::process_g(double) + 177 2 scgraph 0x0001504b ScGraph::run_one_graphics_cycle(double) + 603 3 scgraph 0x00020355 GraphicLoop::timer_callback() + 165 4 scgraph 0x00040fdb GraphicLoop::qt_metacall(QMetaObject::Call, int, void**) + 91 5 QtCore 0x003d6afb QMetaObject::activate(QObject*, int, int, void**) + 519 6 QtCore 0x0041138f QTimer::timeout() + 49 7 QtCore 0x003d4803 QObject::event(QEvent*) + 551 8 QtGui 0x00af3fdc QApplicationPrivate::notify_helper(QObject*, QEvent*) + 166 9 QtGui 0x00af784f QApplication::notify(QObject*, QEvent*) + 235 10 QtCore 0x003c6592 QCoreApplication::notifyInternal(QObject*, QEvent*) + 144 11 QtGui 0x00b49af1 QApplicationPrivate::globalEventProcessor(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 6859 12 com.apple.HIToolbox 0x93f9b143 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1181 13 com.apple.HIToolbox 0x93f9a57d SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 405 14 com.apple.HIToolbox 0x93f9a3e2 SendEventToEventTargetWithOptions + 58 15 com.apple.HIToolbox 0x93fc8d54 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 356 16 com.apple.HIToolbox 0x93f9b4fc DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2134 17 com.apple.HIToolbox 0x93f9a57d SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 405 18 com.apple.HIToolbox 0x93fb6ed2 SendEventToEventTarget + 52 19 QtGui 0x00b446b4 qt_mac_send_event(QFlags<QEventLoop::ProcessEventsFlag>, OpaqueEventRef*, OpaqueWindowPtr*) + 86 20 QtGui 0x00b5260b QEventDispatcherMac ::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 623 21 QtCore 0x003c5e0b QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) + 63 22 QtCore 0x003c5f91 QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) + 149 23 QtCore 0x003c77ad QCoreApplication::exec() + 147 24 scgraph 0x00002ced main + 253 25 scgraph 0x0000246b _start + 209 26 scgraph 0x00002399 start + 41 Thread 1: 0 libSystem.B.dylib 0x92adf20e semaphore_wait_signal_trap + 10 1 libSystem.B.dylib 0x92b11206 _pthread_cond_wait + 1267 2 libSystem.B.dylib 0x92b56539 pthread_cond_wait + 48 3 DiskIOUGens.scx 0x0a9c60ba SC_SyncCondition::WaitEach() + 36 (SC_SyncCondition.cpp:45) 4 DiskIOUGens.scx 0x0a9c8405 disk_io_thread_func(void*) + 35 5 libSystem.B.dylib 0x92b10095 _pthread_start + 321 6 libSystem.B.dylib 0x92b0ff52 thread_start + 34 Thread 2: 0 libSystem.B.dylib 0x92adf2e6 mach_wait_until + 10 1 libSystem.B.dylib 0x92b563ad nanosleep + 314 2 libSystem.B.dylib 0x92b5626d usleep + 61 3 KeyboardUGens.scx 0x017f7bee gstate_update_func(void*) + 40 4 libSystem.B.dylib 0x92b10095 _pthread_start + 321 5 libSystem.B.dylib 0x92b0ff52 thread_start + 34 Thread 3: 0 libSystem.B.dylib 0x92adf2e6 mach_wait_until + 10 1 libSystem.B.dylib 0x92b563ad nanosleep + 314 2 libSystem.B.dylib 0x92b5626d usleep + 61 3 MacUGens.scx 0x0b1b9ef5 gstate_update_func(void*) + 193 (MacUGens.cpp:87) 4 libSystem.B.dylib 0x92b10095 _pthread_start + 321 5 libSystem.B.dylib 0x92b0ff52 thread_start + 34 Thread 4: 0 libSystem.B.dylib 0x92adf2e6 mach_wait_until + 10 1 libSystem.B.dylib 0x92b563ad nanosleep + 314 2 libSystem.B.dylib 0x92b5626d usleep + 61 3 MouseUGens.scx 0x0b1c6009 gstate_update_func(void*) + 179 4 libSystem.B.dylib 0x92b10095 _pthread_start + 321 5 libSystem.B.dylib 0x92b0ff52 thread_start + 34 Thread 5: 0 libSystem.B.dylib 0x92adf2e6 mach_wait_until + 10 1 libSystem.B.dylib 0x92b563ad nanosleep + 314 2 libSystem.B.dylib 0x92b5626d usleep + 61 3 scgraph 0x0001fe33 ControlLoop::thread_func() + 435 4 libSystem.B.dylib 0x92b10095 _pthread_start + 321 5 libSystem.B.dylib 0x92b0ff52 thread_start + 34 Thread 6: 0 libSystem.B.dylib 0x92b1630a select$DARWIN_EXTSN $NOCANCEL + 10 1 scgraph 0x00063bab SocketReceiveMultiplexer::Implementation::Run() + 811 2 scgraph 0x0002e313 OscHandler::run() + 115 3 QtCore 0x002ebc08 QThreadPrivate::start(void*) + 202 4 libSystem.B.dylib 0x92b10095 _pthread_start + 321 5 libSystem.B.dylib 0x92b0ff52 thread_start + 34 Thread 7: 0 libSystem.B.dylib 0x92ae63ae __semwait_signal + 10 1 libSystem.B.dylib 0x92b10d0d pthread_cond_wait $UNIX2003 + 73 2 libGLProgrammability.dylib 0x948d2b32 glvmDoWork + 162 3 libSystem.B.dylib 0x92b10095 _pthread_start + 321 4 libSystem.B.dylib 0x92b0ff52 thread_start + 34 Thread 0 crashed with X86 Thread State (32-bit): eax: 0x00000000 ebx: 0x0b2fd4d7 ecx: 0x00000000 edx: 0x016af320 edi: 0x00000001 esi: 0x00000008 ebp: 0xbfffe588 esp: 0xbfffe4d0 ss: 0x0000001f efl: 0x00010202 eip: 0x0b2fd93a cs: 0x00000017 ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037 cr2: 0x00000000 Binary Images: 0x1000 - 0x212fff +scgraph ??? (???) <166914ef8a352b9aa6e03acdd0e35787> /Users/ifields/scgraph/bin/scgraph 0x2db000 - 0x49a5fb +QtCore ??? (???) /usr/local/Trolltech/ Qt-4.4.3/lib/QtCore.framework/Versions/4/QtCore 0x571000 - 0x5cea61 +QtOpenGL ??? (???) /usr/local/Trolltech/ Qt-4.4.3/lib/QtOpenGL.framework/Versions/4/QtOpenGL 0x65b000 - 0x692ff3 +BinaryOpUGens.scx ??? (???) <132c74e5d345e6c60b6fdf0bea05bf11> /Applications/SuperCollider3/build/ plugins/BinaryOpUGens.scx 0x69c000 - 0x6a6ff3 +ChaosUGens.scx ??? (???) <91ea0364910737dcf356eeb500c213e8> /Applications/SuperCollider3/build/ plugins/ChaosUGens.scx 0x6ab000 - 0x6d3ff3 +DelayUGens.scx ??? (???) <fa8ad2ca7f26d75a38621bd8547a6141> /Applications/SuperCollider3/build/ plugins/DelayUGens.scx 0x6da000 - 0x6e2ff7 +DemandUGens.scx ??? (???) <d293c1f1f01591d928ee8096fea1fc84> /Applications/SuperCollider3/build/ plugins/DemandUGens.scx 0x6e7000 - 0x6ebffb +DynNoiseUGens.scx ??? (???) <2404faed11c7877f3f6574d14ae1b2d6> /Applications/SuperCollider3/build/ plugins/DynNoiseUGens.scx 0x6ef000 - 0x700ff6 +FFT2_UGens.scx ??? (???) <7e2cb7edb8291e59df66fe489c8a1911> /Applications/SuperCollider3/build/ plugins/FFT2_UGens.scx 0xae6000 - 0x12143f7 +QtGui ??? (???) /usr/local/Trolltech/ Qt-4.4.3/lib/QtGui.framework/Versions/4/QtGui 0x1730000 - 0x173dff7 +FFT_UGens.scx ??? (???) <cdc84a553f1a264b880cdde56727978a> /Applications/SuperCollider3/build/ plugins/FFT_UGens.scx 0x17ce000 - 0x17e9ffb +FilterUGens.scx ??? (???) <2b159df95caf448735184a4a300893f3> /Applications/SuperCollider3/build/ plugins/FilterUGens.scx 0x17f0000 - 0x17f2ff7 +GendynUGens.scx ??? (???) <73d4050d95ee5f655612b29fcc49ed81> /Applications/SuperCollider3/build/ plugins/GendynUGens.scx 0x17f6000 - 0x17f7ff7 +KeyboardUGens.scx ??? (???) <677fe5b755bcb03dd1f6b44d3b312e5d> /Applications/SuperCollider3/build/ plugins/KeyboardUGens.scx 0x17fb000 - 0x17fcffb +PhysicalModellingUGens.scx ??? (???) <021a97cc600b378345c2131f8c4d618f> /Applications/SuperCollider3/build/ plugins/PhysicalModellingUGens.scx 0xa9c5000 - 0xaa1bffe +DiskIOUGens.scx ??? (???) <19847f9ea321555b9ce6578871479808> /Applications/SuperCollider3/build/ plugins/DiskIOUGens.scx 0xaaf6000 - 0xab01ffb +GrainUGens.scx ??? (???) <923b9fe6b97f77690c59a45a4abf39ce> /Applications/SuperCollider3/build/ plugins/GrainUGens.scx 0xb176000 - 0xb17dfff +IOUGens.scx ??? (???) <a05e76a7be963db90c3ee9ed024911a1> /Applications/SuperCollider3/build/ plugins/IOUGens.scx 0xb182000 - 0xb195ffb +LFUGens.scx ??? (???) <8ec2bcde67636f9f3d2eefc3df75d148> /Applications/SuperCollider3/build/ plugins/LFUGens.scx 0xb19b000 - 0xb1a6fff +MachineListening.scx ??? (???) <5d5df060b7097470136d9a8ec2e5d8df> /Applications/SuperCollider3/build/ plugins/MachineListening.scx 0xb1b9000 - 0xb1bb04b +MacUGens.scx ??? (???) /Applications/ SuperCollider3/build/plugins/MacUGens.scx 0xb1c5000 - 0xb1c6fff +MouseUGens.scx ??? (???) <5aa3888a61f3b2f9f753593a64904f73> /Applications/SuperCollider3/build/ plugins/MouseUGens.scx 0xb1cb000 - 0xb1cffff +MulAddUGens.scx ??? (???) <336ce17d2e041b44efe3dac880fdeba2> /Applications/SuperCollider3/build/ plugins/MulAddUGens.scx 0xb1d3000 - 0xb1d9fff +NoiseUGens.scx ??? (???) <e0025ca16c0247d841a3455414788e7c> /Applications/SuperCollider3/build/ plugins/NoiseUGens.scx 0xb1de000 - 0xb1f0ff7 +OSCUGens.scx ??? (???) <2285fa832fd4357594d58f13b67258bb> /Applications/SuperCollider3/build/ plugins/OSCUGens.scx 0xb1f7000 - 0xb1ffffb +PanUGens.scx ??? (???) <c94cb543106fb33ddd239430fc5ca7ab> /Applications/SuperCollider3/build/ plugins/PanUGens.scx 0xb204000 - 0xb20affb +ReverbUGens.scx ??? (???) <3d5eba1d0be642883770d9aca375fec1> /Applications/SuperCollider3/build/ plugins/ReverbUGens.scx 0xb20e000 - 0xb20ffff +TestUGens.scx ??? (???) <db42457878b6a7dd52f22a7092aca0d8> /Applications/SuperCollider3/build/ plugins/TestUGens.scx 0xb213000 - 0xb220ffb +TriggerUGens.scx ??? (???) <62d0ac3ff86a0d3eb3cd766278de8fa4> /Applications/SuperCollider3/build/ plugins/TriggerUGens.scx 0xb226000 - 0xb231ff7 +UnaryOpUGens.scx ??? (???) <c1b1f826875fd9ef69ef5e044661ad1c> /Applications/SuperCollider3/build/ plugins/UnaryOpUGens.scx 0xb237000 - 0xb239ff3 +UnpackFFTUGens.scx ??? (???) <075b36c868eef6db8b876728c13cc6eb> /Applications/SuperCollider3/build/ plugins/UnpackFFTUGens.scx 0xb242000 - 0xb244ff3 +binary_op.bundle ??? (???) <38765a1fd1c916b64e440e46cbff5d49> /Users/ifields/scgraph/lib/scgraph/ plugins/binary_op.bundle 0xb248000 - 0xb24aff7 +blending.bundle ??? (???) <8d797f4f3bf62097c023f284cf493efe> /Users/ifields/scgraph/lib/scgraph/ plugins/blending.bundle 0xb24e000 - 0xb253ffb +bordered_rectangle.bundle ??? (???) <85efa0d9c3208c251907ef4017039e33> /Users/ifields/scgraph/lib/scgraph/ plugins/bordered_rectangle.bundle 0xb258000 - 0xb25bff3 +color.bundle ??? (???) <ddd860eee5ce033d4a0bdd35bfc9ec72> /Users/ifields/scgraph/lib/scgraph/ plugins/color.bundle 0xb260000 - 0xb265ff3 +cube.bundle ??? (???) <1359920f77d12a3d53ce130fa8e20cfc> /Users/ifields/scgraph/lib/scgraph/ plugins/cube.bundle 0xb26a000 - 0xb26dff3 +culling.bundle ??? (???) <902d63e32419c7a58123a2c2a0e9d881> /Users/ifields/scgraph/lib/scgraph/ plugins/culling.bundle 0xb272000 - 0xb27cfeb +gl_renderer.bundle ??? (???) <0cc2d614f964aff96dd520b794cc96a2> /Users/ifields/scgraph/lib/scgraph/ plugins/gl_renderer.bundle 0xb286000 - 0xb289ffb +light.bundle ??? (???) <9ebf1798fa30a2758dfc74bccb354df8> /Users/ifields/scgraph/lib/scgraph/ plugins/light.bundle 0xb28d000 - 0xb28fff7 +lighting.bundle ??? (???) <3746685710c4392b36821628dc0431ca> /Users/ifields/scgraph/lib/scgraph/ plugins/lighting.bundle 0xb293000 - 0xb298ff7 +line.bundle ??? (???) <ed503152d60f7a945f811f3bbc5a547c> /Users/ifields/scgraph/lib/scgraph/ plugins/line.bundle 0xb29d000 - 0xb2a0fff +material.bundle ??? (???) <60e99582ebde05a3913627199c23e6d1> /Users/ifields/scgraph/lib/scgraph/ plugins/material.bundle 0xb2a5000 - 0xb2a6ff3 +mul_add.bundle ??? (???) <ac53f7d4fddd26d1b0e9d7fd711c576e> /Users/ifields/scgraph/lib/scgraph/ plugins/mul_add.bundle 0xb2aa000 - 0xb2afff7 +points.bundle ??? (???) <4a1364dbb474a6350d6b7734b5a92262> /Users/ifields/scgraph/lib/scgraph/ plugins/points.bundle 0xb2b4000 - 0xb2b9ff7 +polygon.bundle ??? (???) <21a75d1afda54b2d43f422822db03430> /Users/ifields/scgraph/lib/scgraph/ plugins/polygon.bundle 0xb2be000 - 0xb2c4ffb +quad.bundle ??? (???) <ad86006bb34145583cdd2d66210e7c23> /Users/ifields/scgraph/lib/scgraph/ plugins/quad.bundle 0xb2c9000 - 0xb2cdfff +rectangle.bundle ??? (???) <cf74d7c51c11ed1c82fb3ad087a6eb59> /Users/ifields/scgraph/lib/scgraph/ plugins/rectangle.bundle 0xb2d2000 - 0xb2d5ff7 +rotate.bundle ??? (???) <2fee5f67d17666d67d8d3225674d5239> /Users/ifields/scgraph/lib/scgraph/ plugins/rotate.bundle 0xb2da000 - 0xb2deff3 +shader_program.bundle ??? (???) <6b3631e41641942ddca1c30973f699a5> /Users/ifields/scgraph/lib/scgraph/ plugins/shader_program.bundle 0xb2e3000 - 0xb2e6ff7 +stretch.bundle ??? (???) <d2f865fc04e9f9bfc3c6f544f8ac81ed> /Users/ifields/scgraph/lib/scgraph/ plugins/stretch.bundle 0xb2eb000 - 0xb2eeff7 +transformation.bundle ??? (???) <a7269e93ad85ec2f92e2d5d0402f873a> /Users/ifields/scgraph/lib/scgraph/ plugins/transformation.bundle 0xb2f3000 - 0xb2f6ff7 +translate.bundle ??? (???) <40fd9df528c93493522fd21d1df238a4> /Users/ifields/scgraph/lib/scgraph/ plugins/translate.bundle 0xb2fb000 - 0xb300ff7 +triangle.bundle ??? (???) <21c258c5eba2a4ab6a18661814edb6de> /Users/ifields/scgraph/lib/scgraph/ plugins/triangle.bundle 0xb30c000 - 0xb48ffe3 GLEngine ??? (???) <bfbd7ce69ea896a6b38d6232b01cdeda> /System/Library/Frameworks/ OpenGL.framework/Resources/GLEngine.bundle/GLEngine 0xb4bd000 - 0xb767fe9 com.apple.ATIRadeonX1000GLDriver 1.5.36 (5.3.6) <3f9984c88184d39af0ed1e486ab4616a> /System/Library/Extensions/ ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRadeonX1000GLDriver 0xb7c7000 - 0xb7e3ff7 GLRendererFloat ??? (???) <dcdc2e0de7fb9a52d99e529c3688f26d> /System/Library/Frameworks/ OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/ GLRendererFloat 0xdf07000 - 0xe0fdfff com.apple.RawCamera.bundle 2.0.12 (421) <02fe3f4ea6251f7b2d23d855ce5c5fd2> /System/Library/CoreServices/ RawCamera.bundle/Contents/MacOS/RawCamera 0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld 0x90040000 - 0x9007eff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/ OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x9007f000 - 0x90173ff4 libiconv.2.dylib ??? (???) <c508c60fafca17824c0017b2e4369802> /usr/lib/libiconv.2.dylib 0x90174000 - 0x9017efeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/ A/CarbonSound 0x9017f000 - 0x9018bffe libGL.dylib ??? (???) /System/Library/ Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x9018c000 - 0x9019affd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib 0x9019b000 - 0x90255fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <25243fd02dc5d4f4cc5780f6b2f6fe26> /System/Library/Frameworks/ CoreServices.framework/Versions/A/Frameworks/OSServices.framework/ Versions/A/OSServices 0x90256000 - 0x90290fe7 com.apple.coreui 1.2 (62) /System/Library/ PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x90380000 - 0x90383fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x903c1000 - 0x903f0fe3 com.apple.AE 402.3 (402.3) <4cb9ef65cf116d6dd424f0ce98c2d015> /System/Library/Frameworks/ CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x903f1000 - 0x904d2ff7 libxml2.2.dylib ??? (???) <c65c902ca6afc1b4cf68b90cff921cc5> /usr/lib/libxml2.2.dylib 0x9052f000 - 0x9054effa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libJPEG.dylib 0x9054f000 - 0x905ceff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/ CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/ Versions/A/SearchKit 0x90790000 - 0x907edffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib 0x908bd000 - 0x90ccdfef libBLAS.dylib ??? (???) /System/Library/ Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/ Versions/A/libBLAS.dylib 0x90cce000 - 0x90daefff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib 0x90dec000 - 0x90f32ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/ImageIO 0x90f33000 - 0x90fb0feb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/ CoreAudio.framework/Versions/A/CoreAudio 0x91f8d000 - 0x9215bff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/ Security.framework/Versions/A/Security 0x927ae000 - 0x927aeffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/ Library/Frameworks/vecLib.framework/Versions/A/vecLib 0x927af000 - 0x927f1fef com.apple.NavigationServices 3.5.2 (163) <d3a7c9720479eed8ea35703125303871> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/ Versions/A/NavigationServices 0x927fe000 - 0x92806fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/ DiskArbitration.framework/Versions/A/DiskArbitration 0x9283a000 - 0x92865fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib 0x92abd000 - 0x92ac4fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib 0x92ac5000 - 0x92addff7 com.apple.CoreVideo 1.6.0 (20.0) <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/ CoreVideo.framework/Versions/A/CoreVideo 0x92ade000 - 0x92c45ff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib 0x92c46000 - 0x92c6efff libcups.2.dylib ??? (???) <16bec7c6a004f744804e2281a1b1c094> /usr/lib/libcups.2.dylib 0x92c6f000 - 0x92c73fff libmathCommon.A.dylib ??? (???) /usr/lib/ system/libmathCommon.A.dylib 0x92c74000 - 0x93032fea libLAPACK.dylib ??? (???) /System/Library/ Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/ Versions/A/libLAPACK.dylib 0x9304b000 - 0x9304bff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/ApplicationServices 0x9304c000 - 0x93053ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib 0x93054000 - 0x9307cff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/ Shortcut.framework/Versions/A/Shortcut 0x9307d000 - 0x93089ff9 com.apple.helpdata 1.0.1 (14.2) /System/ Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData 0x9308a000 - 0x9308cff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libRadiance.dylib 0x93090000 - 0x930e9ff7 libGLU.dylib ??? (???) /System/Library/ Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x93334000 - 0x9360eff3 com.apple.CoreServices.CarbonCore 786.11 (786.11) <f06fe5d92d56ac5aa52d1ba182745924> /System/Library/Frameworks/ CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/ Versions/A/CarbonCore 0x9360f000 - 0x9388afe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/ Foundation.framework/Versions/C/Foundation 0x938f2000 - 0x93f92fff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics 0x93f93000 - 0x9429bfff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/ HIToolbox 0x944dc000 - 0x94513fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <01426a38ba44efa5d448daef8b3e9941> /System/Library/Frameworks/ SystemConfiguration.framework/Versions/A/SystemConfiguration 0x94514000 - 0x9451dfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <17537dd39882e07142db9e5c2db170b8> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/ Versions/A/SpeechRecognition 0x945f2000 - 0x94616fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib 0x94617000 - 0x9461efff com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/ AGL.framework/Versions/A/AGL 0x9461f000 - 0x9462afe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib 0x9462b000 - 0x946a5ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore 0x94719000 - 0x947a0ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib 0x947a1000 - 0x94886ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/ CoreData.framework/Versions/A/CoreData 0x94887000 - 0x9488bfff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libGIF.dylib 0x9488c000 - 0x948aafff libresolv.9.dylib ??? (???) <b5b1527c2d99495ad5d507ab0a4ea872> /usr/lib/libresolv.9.dylib 0x948ab000 - 0x94d7cf3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/ OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x94d7d000 - 0x94d7dffb com.apple.installserver.framework 1.0 (8) / System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/ InstallServer 0x94d7e000 - 0x94ddaff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/ Versions/A/HTMLRendering 0x94e4f000 - 0x94e54fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/ A/CommonPanels 0x94e87000 - 0x95224fef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/ QuartzCore.framework/Versions/A/QuartzCore 0x95225000 - 0x95240ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libPng.dylib 0x952c1000 - 0x952c2ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib 0x952c3000 - 0x95356fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x95416000 - 0x9554eff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib 0x9554f000 - 0x9558efef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/ Versions/A/Resources/libTIFF.dylib 0x958c9000 - 0x9591aff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices 0x9594e000 - 0x959a8ff7 com.apple.CoreText 2.0.4 (???) <f9a90116ae34a2b0d84e87734766fb3a> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/ Versions/A/CoreText 0x959ad000 - 0x959dafeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/ Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/ libvDSP.dylib 0x959db000 - 0x95aa2ff2 com.apple.vImage 3.0 (3.0) /System/Library/ Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/ Versions/A/vImage 0x95ad8000 - 0x95b55fef libvMisc.dylib ??? (???) /System/Library/ Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/ Versions/A/libvMisc.dylib 0x95b85000 - 0x95c0ffef com.apple.DesktopServices 1.4.7 (1.4.7) <7898a0f2a46fc7d8887b041bc23e3811> /System/Library/PrivateFrameworks/ DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x95c10000 - 0x95cdbfff com.apple.ColorSync 4.5.1 (4.5.1) /System/ Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync 0x95cdc000 - 0x95cdcffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/ Frameworks/vecLib.framework/Versions/A/vecLib 0x95cdd000 - 0x964dbfef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/ AppKit.framework/Versions/C/AppKit 0x964f9000 - 0x96506fe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/ OpenGL.framework/Versions/A/OpenGL 0x96507000 - 0x96507ffc com.apple.audio.units.AudioUnit 1.5 (1.5) / System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x96512000 - 0x96518fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x96519000 - 0x965b6fe4 com.apple.CFNetwork 422.15.2 (422.15.2) <80851410a5592b7c3b149b2ff849bcc1> /System/Library/Frameworks/ CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/ Versions/A/CFNetwork 0x965b7000 - 0x965b7ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/ Accelerate 0x9662c000 - 0x96644fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/ Versions/A/OpenScripting 0x96645000 - 0x9665affb com.apple.ImageCapture 5.0.1 (5.0.1) /System/ Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ ImageCapture.framework/Versions/A/ImageCapture 0x9666b000 - 0x9671dffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib 0x96763000 - 0x967acfef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/ CoreServices.framework/Versions/A/Frameworks/Metadata.framework/ Versions/A/Metadata 0x967ad000 - 0x9685dfff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/ Kerberos.framework/Versions/A/Kerberos 0x96a1b000 - 0x96a1dfff com.apple.securityhi 3.0 (30817) <8c9db9ce1626eff2aff002549fb58d7d> /System/Library/Frameworks/ Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/ SecurityHI 0x96a1e000 - 0x96b70ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/ AudioToolbox 0x96b81000 - 0x96b91fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <5171726062da2bd3c6b8b58486c7777a> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x96bdd000 - 0x96c84feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/QD.framework/ Versions/A/QD 0x96c85000 - 0x96c85fff com.apple.Carbon 136 (136) <a668670c206841fdcb893bfacddfd4b9> /System/Library/Frameworks/ Carbon.framework/Versions/A/Carbon 0x96c86000 - 0x96c8dff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib 0x96c8e000 - 0x96d19fff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/ IOKit.framework/Versions/A/IOKit 0x96d1a000 - 0x96e4dfff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/ CoreFoundation.framework/Versions/A/CoreFoundation 0x97109000 - 0x97119ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis 0x9711a000 - 0x97130fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/ CoreServices.framework/Versions/A/Frameworks/ DictionaryServices.framework/Versions/A/DictionaryServices 0x97131000 - 0x971bdff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/ CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/ Versions/A/LaunchServices 0x971be000 - 0x971beffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/ CoreServices.framework/Versions/A/CoreServices 0x971bf000 - 0x97200fe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib 0x97201000 - 0x97294ff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/ Versions/A/ATS 0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/ libobjc.A.dylib 0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/ libSystem.B.dylib #| fredrikolofsson.com klippav.org musicalfieldsforever.com |# |
From: Florian P. S. <fsc...@te...> - 2009-02-22 12:28:45
|
Hi Jaime, Jaime Villarreal wrote: > Hi there, > > I'm really excited about trying out scgraph but I'm having trouble > getting started. I'm running Ubuntu Hardy 8.04. I've installed all the > dependencies from the ubuntu respositories and supercollider packages > from the http://ppa.launchpad.net/artfwo/ubuntu respository. > Supercollider running fine with jack. I followed the instructions in the > scgraph INSTALL file, compiled and installed scgraph, edited sclang.cfg > and made the extra directories. > > When I run scgraph in the terminal I get the following output. > > "scgraph > ScGraph - (C) 2006, 2007, 2008 > [Run scgraph -h for help] > [Warning]: fDefineBufGen not supported > [Warning]: fDefinePlugInCmd not supported > [Warning]: fDefineBufGen not supported > [Warning]: fDefineBufGen not supported > [Warning]: fDefineBufGen not supported > [Warning]: fDefineBufGen not supported > [Warning]: fDefineBufGen not supported > [Warning]: fDefineBufGen not supported > [Warning]: fDefineBufGen not supported > [Warning]: fDefineBufGen not supported > [Warning]: fDefineBufGen not supported" > This looks perfectly fine.. (since noone implemented buffer support yet, this warning is perfectly justified) > Now I'm a little confused here as to whether or not I need to leave > scgraph running in a terminal before I open gedit with the sced plugin > to evaluate sc3 code. Hmm, well yeah. You do need to have scgraph running to use it. You could also start it from within gedit using the String.unixCmd method. > I went ahead and did that but when I try to > evaluate the code that came with the help docs: > > "( > g = Server(\graphics, NetAddr("localhost", 37291)); > g.boot; > )" > > The scgraph running in a seperate terminal spits out the following: > > "[OscHandler]: Error while calling g_new (): [NodeTree]: Warning: Node > ID already exists!" This is fine. ScGraph creates this node per default. It really only is a warning.. > I ignored that and tried to evaluate the next piece of code. > > "( > SynthDef (\WobblingCube, { > var source; > source = GCube.gr(size: SinOsc.kr(freq: 0.5)); > GGLRenderer.gr(source); > }).play(target: g); > )" > > but scgraph spits out the following and crashes > > "[GGLRenderer]: Warning: shader objects extension missing > Segmentation fault" Well, it seems your 3D hardware [or driver] is missing support for the shader objects extension. I suppose the plugins/gl_renderer.h and plugins/gl_renderer.cc need to be updated for this (basically just some #ifdefs around some functions and lines). See below.. > Is it possible that scgraph was not compiled correctly? I noticed a lot > of warnings regarding the QT libraries in the make output. Could that be > the problem? Here is my makefile output: > http://libreyabierto.cc/files/scgraph_make_output.txt The build looks totally fine. I guess you are referring to these messages: --- Creating MOC output: culling.h => culling_moc.cc /usr/share/qt4/bin/moc -o culling_moc.cc culling.h culling.h:0: Warning: No relevant classes found. No output generated. --- Building plugin: culling.cc => culling.so g++ -I../glew/ -I../oscpack/ -DGLEW_MX -shared -fpic -L/usr/share/qt4/lib -lQtGui -lQtCore -lQtOpenGL -lQtUiTools -export-dynamic -rdynamic -ldl -o culling.so culling.cc culling_moc.cc -I/usr/share/qt4/include -DQT_THREAD_SUPPORT -L/usr/share/qt4/lib -lQtGui -lQtCore -lQtOpenGL -lQtUiTools -pthread --- Creating MOC output: transformation.h => transformation_moc.cc /usr/share/qt4/bin/moc -o transformation_moc.cc transformation.h transformation.h:0: Warning: No relevant classes found. No output generated. --- Building plugin: transformation.cc => transformation.so g++ -I../glew/ -I../oscpack/ -DGLEW_MX -shared -fpic -L/usr/share/qt4/lib -lQtGui -lQtCore -lQtOpenGL -lQtUiTools -export-dynamic -rdynamic -ldl -o transformation.so transformation.cc transformation_moc.cc -I/usr/share/qt4/include -DQT_THREAD_SUPPORT -L/usr/share/qt4/lib -lQtGui -lQtCore -lQtOpenGL -lQtUiTools -pthread The "Warning: No relevant classes found. No output generated." is just a warning and perfectly fine.. About the shader problem: Does this diff help (also attached)? Make sure, you do not have HAVE_SHADERS set to 1 in Makefile.include: Index: server/osc_handler.cc =================================================================== --- server/osc_handler.cc (revision 35) +++ server/osc_handler.cc (working copy) @@ -915,11 +915,11 @@ } // read number of values from stream - (*(arg++)).AsInt32 (); + int num_vals = (*(arg++)).AsInt32 (); //std::cout << control_name << std::endl; //std::cout << (*arg).TypeTag () << std::endl; - while (arg != message->ArgumentsEnd ()) + for (int i = 0;arg != message->ArgumentsEnd () && i < num_vals; ++i) { float control_value; Index: server/Makefile =================================================================== --- server/Makefile (revision 35) +++ server/Makefile (working copy) @@ -50,7 +50,7 @@ -include ../Makefile.include -export PREFIX INSTALL CP MV RM QT_COMPILE_FLAGS QT_LINK_FLAGS MOC SC3_HEADERS ADDITIONAL_COMPILE_FLAGS ADDITIONAL_LINK_FLAGS HAVE_JACK TARGET +export PREFIX INSTALL CP MV RM QT_COMPILE_FLAGS QT_LINK_FLAGS MOC SC3_HEADERS ADDITIONAL_COMPILE_FLAGS ADDITIONAL_LINK_FLAGS HAVE_JACK TARGET HAVE_SHADERS .PHONY: all Index: server/plugins/Makefile =================================================================== --- server/plugins/Makefile (revision 35) +++ server/plugins/Makefile (working copy) @@ -34,6 +34,11 @@ PLUGINS += freq_amp endif +ifeq ($(HAVE_SHADERS),1) + ADDITIONAL_COMPILE_FLAGS += -DHAVE_SHADERS +endif + + PLUGIN_DIRS = TARGET_DIR = $(PREFIX)/lib/scgraph/plugins Index: server/plugins/gl_renderer.cc =================================================================== --- server/plugins/gl_renderer.cc (revision 35) +++ server/plugins/gl_renderer.cc (working copy) @@ -72,6 +72,7 @@ /* Problem: glewInit failed, something is seriously wrong. */ fprintf(stderr, "Error: %s\n", glewGetErrorString(err)); } +#ifdef HAVE_SHADERS if (!GLEW_ARB_vertex_program) { std::cout << "[GGLRenderer]: Warning: vertex program extension missing" << std::endl; @@ -86,10 +87,12 @@ { std::cout << "[GGLRenderer]: Warning: shader objects extension missing" << std::endl; } - +#endif _renderer->change_textures(); +#ifdef HAVE_SHADERS _renderer->change_shader_programs(); +#endif //_shader_program = glCreateProgramObjectARB(); } @@ -231,6 +234,7 @@ void GLRenderer::compile_and_link_shader_program(unsigned int index, ShaderPool::ShaderProgram *s) { +#ifdef HAVE_SHADERS std::cout << "[GGLRenderer]: Compiling and linking shader program: " << index << std::endl; _gl_widget->makeCurrent(); @@ -300,26 +304,31 @@ std::cout << "[GGLRenderer]: Shader log:" << std::endl << log << std::endl << "[GGLRenderer]: Shader log end." << std::endl; glUseProgramObjectARB(0); +#endif } void GLRenderer::clear_shader_program(unsigned int index) { +#ifdef HAVE_SHADERS for (size_t j = 0; j < _shader_programs[index].second.size(); ++j) glDeleteObjectARB(_shader_programs[index].second[j]); glDeleteObjectARB(_shader_programs[index].first); - +#endif } void GLRenderer::setup_shader_programs() { +#ifdef HAVE_SHADERS ShaderPool *p = ShaderPool::get_instance(); for (ShaderPool::shader_programs_map_t::iterator it = p->_shader_programs.begin(); it != p->_shader_programs.end(); ++it) { compile_and_link_shader_program(it->first, it->second.get()); } +#endif } void GLRenderer::clear_shader_programs() { +#ifdef HAVE_SHADERS _gl_widget->makeCurrent(); for (shader_programs_map_t::iterator it = _shader_programs.begin(); it != _shader_programs.end(); ++it) @@ -328,11 +337,14 @@ } _shader_programs.clear(); +#endif } void GLRenderer::change_shader_programs () { +#ifdef HAVE_SHADERS clear_shader_programs(); setup_shader_programs(); +#endif } void GLRenderer::add_shader_program (unsigned int index) { @@ -662,6 +674,7 @@ void GLRenderer::visitShaderProgramConst (const ShaderProgram *s) { +#ifdef HAVE_SHADERS if (s->_on) { glUseProgramObjectARB(_shader_programs[s->_index].first); @@ -672,10 +685,12 @@ glUseProgramObjectARB(0); _current_shader_program = 0; } +#endif } void GLRenderer::visitShaderUniformConst (const ShaderUniform *s) { +#ifdef HAVE_SHADERS _gl_widget->makeCurrent(); //std::cout << "current shader program index: " << _current_shader_program << " uniform index: " << s->_uniform_index << std::endl; @@ -722,6 +737,7 @@ } // lookup attribute //GLint attribute = glGetAttribLocation(_shader_program[s->_index]first, _shader_programs[s->_index].second->_attributes +#endif } void GLRenderer::visitGeometryConst (const Geometry *g) Regards, Flo |
From: Jaime V. <jes...@gm...> - 2009-02-22 00:46:22
|
Hi there, I'm really excited about trying out scgraph but I'm having trouble getting started. I'm running Ubuntu Hardy 8.04. I've installed all the dependencies from the ubuntu respositories and supercollider packages from the http://ppa.launchpad.net/artfwo/ubuntu respository. Supercollider running fine with jack. I followed the instructions in the scgraph INSTALL file, compiled and installed scgraph, edited sclang.cfg and made the extra directories. When I run scgraph in the terminal I get the following output. "scgraph ScGraph - (C) 2006, 2007, 2008 [Run scgraph -h for help] [Warning]: fDefineBufGen not supported [Warning]: fDefinePlugInCmd not supported [Warning]: fDefineBufGen not supported [Warning]: fDefineBufGen not supported [Warning]: fDefineBufGen not supported [Warning]: fDefineBufGen not supported [Warning]: fDefineBufGen not supported [Warning]: fDefineBufGen not supported [Warning]: fDefineBufGen not supported [Warning]: fDefineBufGen not supported [Warning]: fDefineBufGen not supported" Now I'm a little confused here as to whether or not I need to leave scgraph running in a terminal before I open gedit with the sced plugin to evaluate sc3 code. I went ahead and did that but when I try to evaluate the code that came with the help docs: "( g = Server(\graphics, NetAddr("localhost", 37291)); g.boot; )" The scgraph running in a seperate terminal spits out the following: "[OscHandler]: Error while calling g_new (): [NodeTree]: Warning: Node ID already exists!" I ignored that and tried to evaluate the next piece of code. "( SynthDef (\WobblingCube, { var source; source = GCube.gr(size: SinOsc.kr(freq: 0.5)); GGLRenderer.gr(source); }).play(target: g); )" but scgraph spits out the following and crashes "[GGLRenderer]: Warning: shader objects extension missing Segmentation fault" Is it possible that scgraph was not compiled correctly? I noticed a lot of warnings regarding the QT libraries in the make output. Could that be the problem? Here is my makefile output: http://libreyabierto.cc/files/scgraph_make_output.txt Any advice? |
From: Julian R. <roh...@un...> - 2009-02-02 15:27:03
|
ah, ok, now it works. There was something broken in the svn, but didn't report properly. At 15:36 Uhr +0100 02.02.2009, LFSaw wrote: >Hmmm, should be there, though > >an svn info in the scgraph-quark directory gave me > > ~/Library/Application Support/SuperCollider/quarks/scgraph @ svn info >Path: . >URL: https://quarks.svn.sourceforge.net/svnroot/quarks/scgraph >Repository Root: https://quarks.svn.sourceforge.net/svnroot/quarks >Revision: 813 >Node Kind: directory >Schedule: normal >Last Changed Author: tboverma >Last Changed Rev: 813 >Last Changed Date: 2009-01-28 14:35:23 +0100 (Mi, 28 Jan 2009) > > >perhaps check manually in terminal? > >Or try a > >"svn up \"$HOME/Library/Application >Support/SuperCollider/quarks\"".runInTerminal > > >hope that helps >all the best :-) > Till > >On 02.02.2009, at 15:24, Julian Rohrhuber wrote: > >>couldn't get it. I've tried with: >>Quarks.checkoutAll; >>Quarks.update; >> >>no scgraph quark... >> >>At 14:02 Uhr +0100 02.02.2009, LFSaw wrote: >>>Hello, >>> >>>anyone tried these? >>> >>>just out of sheer interestS >>> >>>regards >>> Till >>> >>>On 28.01.2009, at 14:52, LFSaw wrote: >>> >>>>Hey, >>>> >>> > There is now an scgrah quark in the standard global quarks repo. >>>>Feel free to add Helpfiles or a GServer implementation :-) >>>> >>>>kind regards >>>> Till >>>> >>>>On 26.01.2009, at 22:09, LFSaw wrote: >>>> >>>>> >>>>>On 26.01.2009, at 22:07, Julian Rohrhuber wrote: >>>>> >>>>>>>On 26.01.2009, at 19:45, Florian Schmidt wrote: >>>>>>> >>>>>>>>On Mon, 2009-01-26 at 19:22 +0100, LFSaw wrote: >>>>>>>>>Hey, >>>>>>>>> >>>>>>>>>I am on th eway turning the language side of scgraph into a >>>>>>>>>quark. >>>>>>>>>That would have the beneft that it is more easy to intall and we >>>>>>>>>can >>>>>>>>>test several approaches in changing its design in parallel >>>>>>>>>without >>>>>>>>>changing the default behavior. >>>>>>>>> >>>>>>>>>Any objections, and, if not, where to put it? >>>>>>>>>Either in the general quarks directory, or in a seperate quarks >>>>>>>>>directory in scgraph's sf-svn. >>>>>>>> >>>>>>>>No objections from my side.. I guess the most simple [for the >>>>>>>>user] >>>>>>>>would be the general quarks-directory? The user would still have >>>>>>>>the >>>>>>>>option of installing it separately in this case? >>>>>>> >>>>>>> >>>>>>>Yeah. >>>>>>> >>>>>>>Downside is that this menas they are not part of the scgraph distro >>>>>>>anymore. >>>>>> >>>>>> >>>>>>but sclang isn't either, no? So you anyhow need to get sclang going >>>>>>to run scgraph. Btw. you can give more than one svn addresses for >>>>>>quarks. They could still reside in the other project. >>>>>> >>>>>>we can just add the path to Quarks. initClass >>>>>> >>>>>> >>>>>>known = Dictionary[ >>>>>> >>>>>> "https://quarks.svn.sourceforge.net/svnroot/quarks" -> >>>>>>(Platform.userAppSupportDir +/+ "quarks"), >>>>>> >>>>>> "https://svn.sonenvir.at/svnroot/SonEnvir/trunk/src/quarks- >>>>>>sonenvir" >>>>>>-> (Platform.userAppSupportDir +/+ "quarks-sonenvir"), >>>>>> >>>>>> "https://sc3-plugins.svn.sourceforge.net/svnroot/sc3-plugins/build" >>>>>>-> (Platform.userAppSupportDir +/+ "SC3plugins") >>>>>> ]; >>>>> >>>>> >>>>>now, that's an option. >>>>> >>>>>lg >>>>> Till >>>>> >>>>>------------------------------------------------------------------------------ >>>>>This SF.net email is sponsored by: >>>>>SourcForge Community >>>>>SourceForge wants to tell your story. >>>>>http://p.sf.net/sfu/sf-spreadtheword >>>>>_______________________________________________ >>>>>Scgraph-users mailing list >>>>>Scg...@li... >>>>>https://lists.sourceforge.net/lists/listinfo/scgraph-users >>>> >>> >>> >>>------------------------------------------------------------------------------ >>>This SF.net email is sponsored by: >>>SourcForge Community >>>SourceForge wants to tell your story. >>>http://p.sf.net/sfu/sf-spreadtheword >>>_______________________________________________ >>>Scgraph-users mailing list >>>Scg...@li... >>>https://lists.sourceforge.net/lists/listinfo/scgraph-users >> >> >>-- >> >> >> >> >> >>. -- . |
From: LFSaw <lf...@lf...> - 2009-02-02 14:36:54
|
Hmmm, should be there, though… an svn info in the scgraph-quark directory gave me ~/Library/Application Support/SuperCollider/quarks/scgraph @ svn info Path: . URL: https://quarks.svn.sourceforge.net/svnroot/quarks/scgraph Repository Root: https://quarks.svn.sourceforge.net/svnroot/quarks Revision: 813 Node Kind: directory Schedule: normal Last Changed Author: tboverma Last Changed Rev: 813 Last Changed Date: 2009-01-28 14:35:23 +0100 (Mi, 28 Jan 2009) perhaps check manually in terminal? Or try a "svn up \"$HOME/Library/Application Support/SuperCollider/quarks \"".runInTerminal hope that helps all the best :-) Till On 02.02.2009, at 15:24, Julian Rohrhuber wrote: > couldn't get it. I've tried with: > Quarks.checkoutAll; > Quarks.update; > > no scgraph quark... > > At 14:02 Uhr +0100 02.02.2009, LFSaw wrote: >> Hello, >> >> anyone tried these? >> >> just out of sheer interestŠ >> >> regards >> Till >> >> On 28.01.2009, at 14:52, LFSaw wrote: >> >>> Hey, >>> >> > There is now an scgrah quark in the standard global quarks repo. >>> Feel free to add Helpfiles or a GServer implementation :-) >>> >>> kind regards >>> Till >>> >>> On 26.01.2009, at 22:09, LFSaw wrote: >>> >>>> >>>> On 26.01.2009, at 22:07, Julian Rohrhuber wrote: >>>> >>>>>> On 26.01.2009, at 19:45, Florian Schmidt wrote: >>>>>> >>>>>>> On Mon, 2009-01-26 at 19:22 +0100, LFSaw wrote: >>>>>>>> Hey, >>>>>>>> >>>>>>>> I am on th eway turning the language side of scgraph into a >>>>>>>> quark. >>>>>>>> That would have the beneft that it is more easy to intall and >>>>>>>> we >>>>>>>> can >>>>>>>> test several approaches in changing its design in parallel >>>>>>>> without >>>>>>>> changing the default behavior. >>>>>>>> >>>>>>>> Any objections, and, if not, where to put it? >>>>>>>> Either in the general quarks directory, or in a seperate quarks >>>>>>>> directory in scgraph's sf-svn. >>>>>>> >>>>>>> No objections from my side.. I guess the most simple [for the >>>>>>> user] >>>>>>> would be the general quarks-directory? The user would still have >>>>>>> the >>>>>>> option of installing it separately in this case? >>>>>> >>>>>> >>>>>> Yeah. >>>>>> >>>>>> Downside is that this menas they are not part of the scgraph >>>>>> distro >>>>>> anymore. >>>>> >>>>> >>>>> but sclang isn't either, no? So you anyhow need to get sclang >>>>> going >>>>> to run scgraph. Btw. you can give more than one svn addresses for >>>>> quarks. They could still reside in the other project. >>>>> >>>>> we can just add the path to Quarks. initClass >>>>> >>>>> >>>>> known = Dictionary[ >>>>> >>>>> "https://quarks.svn.sourceforge.net/svnroot/quarks" -> >>>>> (Platform.userAppSupportDir +/+ "quarks"), >>>>> >>>>> "https://svn.sonenvir.at/svnroot/SonEnvir/trunk/src/quarks- >>>>> sonenvir" >>>>> -> (Platform.userAppSupportDir +/+ "quarks-sonenvir"), >>>>> >>>>> "https://sc3-plugins.svn.sourceforge.net/svnroot/sc3-plugins/build >>>>> " >>>>> -> (Platform.userAppSupportDir +/+ "SC3plugins") >>>>> ]; >>>> >>>> >>>> now, that's an option. >>>> >>>> lg >>>> Till >>>> >>>> ------------------------------------------------------------------------------ >>>> This SF.net email is sponsored by: >>>> SourcForge Community >>>> SourceForge wants to tell your story. >>>> http://p.sf.net/sfu/sf-spreadtheword >>>> _______________________________________________ >>>> Scgraph-users mailing list >>>> Scg...@li... >>>> https://lists.sourceforge.net/lists/listinfo/scgraph-users >>> >> >> >> ------------------------------------------------------------------------------ >> This SF.net email is sponsored by: >> SourcForge Community >> SourceForge wants to tell your story. >> http://p.sf.net/sfu/sf-spreadtheword >> _______________________________________________ >> Scgraph-users mailing list >> Scg...@li... >> https://lists.sourceforge.net/lists/listinfo/scgraph-users > > > -- > > > > > > . |
From: Julian R. <roh...@un...> - 2009-02-02 14:25:14
|
couldn't get it. I've tried with: Quarks.checkoutAll; Quarks.update; no scgraph quark... At 14:02 Uhr +0100 02.02.2009, LFSaw wrote: >Hello, > >anyone tried these? > >just out of sheer interest > >regards > Till > >On 28.01.2009, at 14:52, LFSaw wrote: > >> Hey, >> > > There is now an scgrah quark in the standard global quarks repo. >> Feel free to add Helpfiles or a GServer implementation :-) >> >> kind regards >> Till >> >> On 26.01.2009, at 22:09, LFSaw wrote: >> >>> >>> On 26.01.2009, at 22:07, Julian Rohrhuber wrote: >>> >>>>> On 26.01.2009, at 19:45, Florian Schmidt wrote: >>>>> >>>>>> On Mon, 2009-01-26 at 19:22 +0100, LFSaw wrote: >>>>>>> Hey, >>>>>>> >>>>>>> I am on th eway turning the language side of scgraph into a >>>>>>> quark. >>>>>>> That would have the beneft that it is more easy to intall and we >>>>>>> can >>>>>>> test several approaches in changing its design in parallel >>>>>>> without >>>>>>> changing the default behavior. >>>>>>> >>>>>>> Any objections, and, if not, where to put it? >>>>>>> Either in the general quarks directory, or in a seperate quarks >>>>>>> directory in scgraph's sf-svn. >>>>>> >>>>>> No objections from my side.. I guess the most simple [for the >>>>>> user] >>>>>> would be the general quarks-directory? The user would still have >>>>>> the >>>>>> option of installing it separately in this case? >>>>> >>>>> >>>>> Yeah. >>>>> >>>>> Downside is that this menas they are not part of the scgraph distro >>>>> anymore. >>>> >>>> >>>> but sclang isn't either, no? So you anyhow need to get sclang going >>>> to run scgraph. Btw. you can give more than one svn addresses for >>>> quarks. They could still reside in the other project. >>>> >>>> we can just add the path to Quarks. initClass >>>> >>>> >>>> known = Dictionary[ >>>> >>>> "https://quarks.svn.sourceforge.net/svnroot/quarks" -> >>>> (Platform.userAppSupportDir +/+ "quarks"), >>>> >>>> "https://svn.sonenvir.at/svnroot/SonEnvir/trunk/src/quarks- >>>> sonenvir" >>>> -> (Platform.userAppSupportDir +/+ "quarks-sonenvir"), >>>> >>>> "https://sc3-plugins.svn.sourceforge.net/svnroot/sc3-plugins/build" >>>> -> (Platform.userAppSupportDir +/+ "SC3plugins") >>>> ]; >>> >>> >>> now, that's an option. >>> >>> lg >>> Till >>> >>> >>>------------------------------------------------------------------------------ >>> This SF.net email is sponsored by: >>> SourcForge Community >>> SourceForge wants to tell your story. >>> http://p.sf.net/sfu/sf-spreadtheword >>> _______________________________________________ >>> Scgraph-users mailing list >>> Scg...@li... >>> https://lists.sourceforge.net/lists/listinfo/scgraph-users >> > > >------------------------------------------------------------------------------ >This SF.net email is sponsored by: >SourcForge Community >SourceForge wants to tell your story. >http://p.sf.net/sfu/sf-spreadtheword >_______________________________________________ >Scgraph-users mailing list >Scg...@li... >https://lists.sourceforge.net/lists/listinfo/scgraph-users -- . |
From: LFSaw <lf...@lf...> - 2009-02-02 13:02:50
|
Hello, anyone tried these? just out of sheer interest… regards Till On 28.01.2009, at 14:52, LFSaw wrote: > Hey, > > There is now an scgrah quark in the standard global quarks repo. > Feel free to add Helpfiles or a GServer implementation :-) > > kind regards > Till > > On 26.01.2009, at 22:09, LFSaw wrote: > >> >> On 26.01.2009, at 22:07, Julian Rohrhuber wrote: >> >>>> On 26.01.2009, at 19:45, Florian Schmidt wrote: >>>> >>>>> On Mon, 2009-01-26 at 19:22 +0100, LFSaw wrote: >>>>>> Hey, >>>>>> >>>>>> I am on th eway turning the language side of scgraph into a >>>>>> quark. >>>>>> That would have the beneft that it is more easy to intall and we >>>>>> can >>>>>> test several approaches in changing its design in parallel >>>>>> without >>>>>> changing the default behavior. >>>>>> >>>>>> Any objections, and, if not, where to put it? >>>>>> Either in the general quarks directory, or in a seperate quarks >>>>>> directory in scgraph's sf-svn. >>>>> >>>>> No objections from my side.. I guess the most simple [for the >>>>> user] >>>>> would be the general quarks-directory? The user would still have >>>>> the >>>>> option of installing it separately in this case? >>>> >>>> >>>> Yeah. >>>> >>>> Downside is that this menas they are not part of the scgraph distro >>>> anymore. >>> >>> >>> but sclang isn't either, no? So you anyhow need to get sclang going >>> to run scgraph. Btw. you can give more than one svn addresses for >>> quarks. They could still reside in the other project. >>> >>> we can just add the path to Quarks. initClass >>> >>> >>> known = Dictionary[ >>> >>> "https://quarks.svn.sourceforge.net/svnroot/quarks" -> >>> (Platform.userAppSupportDir +/+ "quarks"), >>> >>> "https://svn.sonenvir.at/svnroot/SonEnvir/trunk/src/quarks- >>> sonenvir" >>> -> (Platform.userAppSupportDir +/+ "quarks-sonenvir"), >>> >>> "https://sc3-plugins.svn.sourceforge.net/svnroot/sc3-plugins/build" >>> -> (Platform.userAppSupportDir +/+ "SC3plugins") >>> ]; >> >> >> now, that's an option. >> >> lg >> Till >> >> ------------------------------------------------------------------------------ >> This SF.net email is sponsored by: >> SourcForge Community >> SourceForge wants to tell your story. >> http://p.sf.net/sfu/sf-spreadtheword >> _______________________________________________ >> Scgraph-users mailing list >> Scg...@li... >> https://lists.sourceforge.net/lists/listinfo/scgraph-users > |
From: LFSaw <lf...@lf...> - 2009-01-28 13:52:48
|
Hey, There is now an scgrah quark in the standard global quarks repo. Feel free to add Helpfiles or a GServer implementation :-) kind regards Till On 26.01.2009, at 22:09, LFSaw wrote: > > On 26.01.2009, at 22:07, Julian Rohrhuber wrote: > >>> On 26.01.2009, at 19:45, Florian Schmidt wrote: >>> >>>> On Mon, 2009-01-26 at 19:22 +0100, LFSaw wrote: >>>>> Hey, >>>>> >>>>> I am on th eway turning the language side of scgraph into a quark. >>>>> That would have the beneft that it is more easy to intall and we >>>>> can >>>>> test several approaches in changing its design in parallel without >>>>> changing the default behavior. >>>>> >>>>> Any objections, and, if not, where to put it? >>>>> Either in the general quarks directory, or in a seperate quarks >>>>> directory in scgraph's sf-svn. >>>> >>>> No objections from my side.. I guess the most simple [for the user] >>>> would be the general quarks-directory? The user would still have >>>> the >>>> option of installing it separately in this case? >>> >>> >>> Yeah. >>> >>> Downside is that this menas they are not part of the scgraph distro >>> anymore. >> >> >> but sclang isn't either, no? So you anyhow need to get sclang going >> to run scgraph. Btw. you can give more than one svn addresses for >> quarks. They could still reside in the other project. >> >> we can just add the path to Quarks. initClass >> >> >> known = Dictionary[ >> >> "https://quarks.svn.sourceforge.net/svnroot/quarks" -> >> (Platform.userAppSupportDir +/+ "quarks"), >> >> "https://svn.sonenvir.at/svnroot/SonEnvir/trunk/src/quarks-sonenvir" >> -> (Platform.userAppSupportDir +/+ "quarks-sonenvir"), >> >> "https://sc3-plugins.svn.sourceforge.net/svnroot/sc3-plugins/build" >> -> (Platform.userAppSupportDir +/+ "SC3plugins") >> ]; > > > now, that's an option. > > lg > Till > > ------------------------------------------------------------------------------ > This SF.net email is sponsored by: > SourcForge Community > SourceForge wants to tell your story. > http://p.sf.net/sfu/sf-spreadtheword > _______________________________________________ > Scgraph-users mailing list > Scg...@li... > https://lists.sourceforge.net/lists/listinfo/scgraph-users |
From: Florian S. <fsc...@te...> - 2009-01-27 17:30:27
|
On Tue, 2009-01-27 at 11:46 -0500, nescivi wrote: > Well... should I then have glew from my distribution uninstalled? Well, if the glew-dev package of debian has not been built with GLEW_MX defined, then it cannot be used with ScGraph, as it needs this (defining GLEW_MX basically enables multiple-viewport support per app). I can imagine that the package interferes in some way with the ScGraph build, so it might worth a try removing the debian glew/glew-dev packages. > > > The other messages were about synthdefs not being found, and wrong > > > numbers of arguments to n_sets. > > > > > > I don't have time to go back and look at exactly how things went wrong > > > right now, as my priority is getting stuff to work, so for now I'm > > > holding back and using the setup that I know worked stable. > > > > Which is actually fine with me, too. Less bug reports means less work > > fixing bugs ;) > > well.. just postponing... > cause I will get back to this stuff, once production pressure is over. Ok, then i will wait with my experiments until you have a litte more time to debug, too :) Regards, Flo |
From: nescivi <ne...@gm...> - 2009-01-27 16:46:58
|
Hiho, On Tuesday 27 January 2009 04:59:13 Florian Schmidt wrote: > Hi again, > > On Tuesday 27 January 2009, nescivi wrote: > > > Was it posted on the sc-lists? If so, i will look for details there. If > > > not, do you mind elaborating? :) > > > > I did not post it.. > > > > I had a couple of issues with the svn version: > > for compilation I had to change one header inclusion from "glew.h" to > > <glew.h>, otherwise I got link errors in runtime with the renderer. > > Ok. As far as i can tell this should not be necessary (at least not since i > integrated glew into the build directly), but i'll have another look.. Well... should I then have glew from my distribution uninstalled? > > The other messages were about synthdefs not being found, and wrong > > numbers of arguments to n_sets. > > > > I don't have time to go back and look at exactly how things went wrong > > right now, as my priority is getting stuff to work, so for now I'm > > holding back and using the setup that I know worked stable. > > Which is actually fine with me, too. Less bug reports means less work > fixing bugs ;) well.. just postponing... cause I will get back to this stuff, once production pressure is over. > Maybe you can tell me though, which operating system > (distribution) you're using. I just might try to install it in a kvm, to > see whether i can reproduce the problems.. Debian unstable. > > I'm not sure whether it is elaborately documented... > > asOSCargs is now used, instead of what it used to be, and the array > > options have been introduced. > > But Julian has probably followed it more closely... > > Ok.. sincerely, Marije |
From: Florian S. <fsc...@te...> - 2009-01-27 13:17:23
|
On Tue, 2009-01-27 at 02:01 +0100, Julian Rohrhuber wrote: > >Actually the proper way would be to start a real flamewar about > >this. Then top vs. bottom-posting.. And then somewhere along the > >line Adolf Hitler and Nazi Germany will enter the discussion ;D > > > >Let's avoid that :) > > yes, we can still start trolling in a year or two.. :) Regards, Flo |