Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!cs.utexas.edu!uwm.edu!uakari.primate.wisc.edu!brutus.cs.uiuc.edu!lll-winken!arisia!sgi!shinobu!odin!krypton!gavin From: gavin@krypton.sgi.com (Gavin A. Bell) Newsgroups: comp.sys.sgi Subject: Re: writing frontbuffer to backbuffer Message-ID: <1988@odin.SGI.COM> Date: 14 Dec 89 17:24:55 GMT References: <44586@bu-cs.BU.EDU> Sender: news@odin.SGI.COM Lines: 13 tjh@bu-pub.bu.edu writes: >Is there a way to write directly from the frontbuffer to the backbuffer >or the zbuffer? That is without doing a rectread and then a rectwrite. >-Tim tjh@bu-pub.bu.edu Sure, use the rectcopy command. See the man page for more info, but you should do something like: readsource(SRC_FRONT); backbuffer(TRUE); /* Use zbuffer(TRUE) if you want to write to z */ rectcopy(args here); --gavin