Re: [Nuke-dev] Collecting data from individual threads

2011-10-04 Thread Stephen Newbold
Cheers Wouter, I'll look into your suggestions. std::map seems like an obvious think now you've mentioned it. Never really heard of conditional variables so I'll do some reading. Cheers, Steve Wouter Klouwen wrote: Hi Stephen, On 03/10/2011 15:25, Stephen Newbold wrote: I want to create

Re: [Nuke-dev] Collecting data from individual threads

2011-10-03 Thread Colin Doncaster
Not a solution but it does raise a request though - it would be really nice if there was a cleanup/post engine call that can be used when a node has finished processing all of the scanlines needed. close is an option but I doubt this is recommended and this seems to be called intermittently ( i

Re: [Nuke-dev] Collecting data from individual threads

2011-10-03 Thread Wouter Klouwen
Hi Stephen, On 03/10/2011 15:25, Stephen Newbold wrote: I want to create a plugin that uses image data but doesn't actually alter the image in any way. So far I just pass through the data within the engine as explained in the NDK docs and that is fine. My plugin needs access to individual rows i

[Nuke-dev] Collecting data from individual threads

2011-10-03 Thread Stephen Newbold
Hi, Excuse the rather long mail but I have quite a couple of questions about the same thing. I want to create a plugin that uses image data but doesn't actually alter the image in any way. So far I just pass through the data within the engine as explained in the NDK docs and that is fine.