Hi list,
i remember vaguely that someone (cyrille? cclepper?) mentioned that it's possible to share a gemframbuffer among multiple instances of Pd to transfer a video stream for example. how is that achieved exactly?
thanks, m.
I know vade has been working on doing this cross-applications using a
new Mac OS X feature called IOSurface. Donno the status of that
project. I do know he has it working in QuartzComposer and maybe
another app.
.hc
On Jul 14, 2010, at 2:41 PM, Max wrote:
Hi list,
i remember vaguely that someone (cyrille? cclepper?) mentioned that
it's possible to share a gemframbuffer among multiple instances of
Pd to transfer a video stream for example. how is that achieved exactly?thanks, m._______________________________________________ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
The arc of history bends towards justice. - Dr. Martin Luther
King, Jr.
look at pix_share_read and pix_share_write help file.
Le 14/07/2010 20:41, Max a écrit :
Hi list,
i remember vaguely that someone (cyrille? cclepper?) mentioned that it's possible to share a gemframbuffer among multiple instances of Pd to transfer a video stream for example. how is that achieved exactly?
thanks, m.
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
excellent. thank you cyrille.
Am 14.07.2010 um 20:51 schrieb cyrille henry:
look at pix_share_read and pix_share_write help file.
Le 14/07/2010 20:41, Max a écrit :
i remember vaguely that someone (cyrille? cclepper?) mentioned that it's possible to share a gemframbuffer among multiple instances of Pd to transfer a video stream for example. how is that achieved exactly?
pix_share only does pix_ images in RAM. You mention gemframebuffer which is a buffer on the GPU, and there is no way to share that between processes.
On Thu, Jul 15, 2010 at 7:31 AM, Max abonnements@revolwear.com wrote:
excellent. thank you cyrille.
Am 14.07.2010 um 20:51 schrieb cyrille henry:
look at pix_share_read and pix_share_write help file.
Le 14/07/2010 20:41, Max a écrit :
i remember vaguely that someone (cyrille? cclepper?) mentioned that it's
possible to share a gemframbuffer among multiple instances of Pd to transfer a video stream for example.
how is that achieved exactly?
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Le jeudi 15 juillet 2010 à 10:41 -0400, chris clepper a écrit :
pix_share only does pix_ images in RAM. You mention gemframebuffer which is a buffer on the GPU, and there is no way to share that between processes.
It is not possible to manage the PBO and share pixels in the same way than RAM ? Excuse my ignorance about this subject. ++
Jack
On Thu, Jul 15, 2010 at 7:31 AM, Max abonnements@revolwear.com wrote: excellent. thank you cyrille.
Am 14.07.2010 um 20:51 schrieb cyrille henry: > look at pix_share_read and pix_share_write help file. > Le 14/07/2010 20:41, Max a écrit : >> i remember vaguely that someone (cyrille? cclepper?) mentioned that it's possible to share a gemframbuffer among multiple instances of Pd to transfer a video stream for example. >> how is that achieved exactly? _______________________________________________ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
On Thu, Jul 15, 2010 at 11:04 AM, Jack jack@rybn.org wrote:
It is not possible to manage the PBO and share pixels in the same way than RAM ? Excuse my ignorance about this subject.
Not without bringing the pixels from the GPU back to RAM first. It would work, but not be efficient.