Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
transfer_image_transform(3)	 Arcan Lua API	   transfer_image_transform(3)

NAME
       transfer_image_transform	- Move the transform chain from	one VID	to an-
       other.

SYNOPSIS
       nil
       transfer_image_transform( srcvid, dstvid	)

DESCRIPTION
       This function act as an aggregate of copying a transform	chain (includ-
       ing  the	 translation  step  and	 related  side	notes  as described in
       copy_image_transform) from srcvid  to dstvid   and  then	 reseting  the
       source transform.

EXAMPLE
       function	transfer_image_transform0()
	     a = fill_surface(32, 32, 255, 0, 0);
	     b = fill_surface(32, 32, 0, 255, 0);
	     show_image({a, b});
	     move_image(a, 64, 64, 100);
	     rotate_image(a, 32, 100);
	     transfer_image_transform(a, b);
       end

SEE ALSO:
       copy_image_transform(3) reset_image_transform(3)

image				  April	2025	   transfer_image_transform(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=transfer_image_transform&sektion=3&manpath=FreeBSD+Ports+14.3.quarterly>

home | help