|
NAMEdefine_arcantarget - Create a rendertarget bound subsegment for drawing to another arcan instanceSYNOPSISbooldefine_arcantarget( vid:vstore, string:type, vidtbl:vpipe, function:handler ) DESCRIPTIONThis function is used to request and bind 'subsegments' useful for secondary outputs.It works like any other normal rendertarget such as one allocated through define_rendertarget , but the clocking and updates are explicitly tied to what the arcan instance the segment is connected to decides. The design and inner workings for this function is marked as experimental and may be subject to breaking changes without notice. NOTES
EXAMPLEfunction define_arcantarget0() local ok = define_arcantarget(buffer, "media", {test}, function(source, status) if status.kind == "terminated" then delete_image(source) end print(status.kind) end ) if not ok then delete_image(buffer) end end end SEE ALSO:
Visit the GSP FreeBSD Man Page Interface. |