|
NAMEinstant_image_transform - Immediately perform all pending transformations.SYNOPSISnilinstant_image_transform( vid:dst ) instant_image_transform( vid:dst, int:mask ) instant_image_transform( vid:dst, bool:trigger_last ) instant_image_transform( vid:dst, bool:trigger_last, bool:trigger_all ) DESCRIPTIONThis will fast-forward through the transform chain for dst . If 'mask' is set, only the specifiied bitmask of chains ( MASK_OPACITY , MASK_ORIENTATION , MASK_POSITION , MASK_SCALE ) will be fast-forwarded.The default behaviour is to ignore all tagged transform handlers. If trigger_last is set, all handlers except the end of each chain will be ignored. If trigger_all is set, all handlers will be triggered. NOTES
EXAMPLEfunction instant_image_transform0() a = fill_surface(32, 32, 255, 0, 0); show_image(a); move_image(a, 50, 50, 100); instant_image_transform(a); props = image_surface_properties(a); print(props.x, props.y); end SEE ALSO:copy_image_transform(3)
Visit the GSP FreeBSD Man Page Interface. |