1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2<HTML> 3<HEAD> 4<META http-equiv="Content-Type" content="text/html; charset=windows-1252"> 5<META name="GENERATOR" content="Microsoft FrontPage 5.0"> 6<META http-equiv="Content-Style-Type" content="text/css"> 7<LINK rel="stylesheet" type="text/css" href="../../CSS/revolution.css"> 8<TITLE>MTXCopy</TITLE> 9</HEAD> 10<BODY> 11<H1 align="left">MTXCopy</H1> 12 13<H2 align="left">Syntax</H2> 14<dl><dd><pre class="construction"> 15#include <revolution/mtx.h> 16 17void C_MTXCopy ( const Mtx src, Mtx dst ); 18void PSMTXCopy ( const Mtx src, Mtx dst ); 19 20#define MTXCopy C_MTXCopy // for debug build 21#define MTXCopy PSMTXCopy // for nondebug build 22</pre></dd></dl> 23 24<H2 align="left">Arguments</H2> 25<TABLE class="arguments" border="1" > 26 <TBODY> 27 <TR> 28<TH>src</TH> 29<TD>Source matrix for copy. <SPAN class="argument">src</SPAN> may be either a <A href="../structures/Mtx_MtxPtr.html"><CODE>Mtx</CODE></A> or a <A href="../structures/Mtx_MtxPtr.html"><CODE>MtxPtr</CODE></A>.</TD> 30 </TR> 31 <TR> 32<TH>dst</TH> 33<TD>Destination matrix for copy. <SPAN class="argument">dst</SPAN> may be either a <A href="../structures/Mtx_MtxPtr.html"><CODE>Mtx</CODE></A> or a <A href="../structures/Mtx_MtxPtr.html"><CODE>MtxPtr</CODE></A>.</TD> 34 </TR> 35 </TBODY> 36</TABLE> 37 38<H2 align="left">Return Values</H2> 39<P>None.</P> 40 41<H2 align="left">Description</H2> 42<P>Copies the contents of <code><em><strong>src</strong></em></code> into <code><em><strong>dst</strong></em></code>.</P> 43<P>During a debug build, <code>MTXCopy</code> is interpreted as <code>C_MTXCopy</code>, which is a normal C language version. During a nondebug build for a Broadway processor, the paired-singles equivalent of this function, <code><font face="Courier New">PSMTXCopy</font></code>, will be automatically substituted. You can also call each of <code>C_MTXCopy/PSMTXCopy</code> explicitly.</P> 44 45<H2 align="left">See Also</H2> 46<P class="reference"> 47<A href="../structures/Mtx_MtxPtr.html">Mtx, MtxPtr</A> 48</P> 49 50<H2>Revision History</H2> 51<P> 522006/03/01 Initial version.<br> 53</P> 54 55<hr><p>CONFIDENTIAL</p></body> 56</HTML>