<li><ahref="../../../../Microsoft/Xna/Framework/Graphics/Blend.html"title="enum in Microsoft.Xna.Framework.Graphics"><spanclass="strong">Prev Class</span></a></li>
<li><ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendState.html"title="class in Microsoft.Xna.Framework.Graphics"><spanclass="strong">Next Class</span></a></li>
<li>java.lang.Enum<<ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a>></li>
<dd>java.io.Serializable, java.lang.Comparable<<ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a>></dd>
extends java.lang.Enum<<ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a>></pre>
<divclass="block">Defines how to combine a source color with the destination color already on the render target for color blending.</div>
<tableclass="overviewSummary"border="0"cellpadding="3"cellspacing="0"summary="Enum Constant Summary table, listing enum constants, and an explanation">
<thclass="colFirst"scope="col">Modifier and Type</th>
<thclass="colLast"scope="col">Method and Description</th>
</tr>
<trclass="altColor">
<tdclass="colFirst"><code>static <ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a></code></td>
<divclass="block">Returns the enum constant of this type with the specified name.</div>
</td>
</tr>
<trclass="rowColor">
<tdclass="colFirst"><code>static <ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a>[]</code></td>
<pre>public static final <ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a> Add</pre>
<divclass="block">The result is the destination added to the source. Result = (Source Color * Source Blend) + (Destination Color * Destination Blend)</div>
</li>
</ul>
<aname="Subtract">
<!---->
</a>
<ulclass="blockList">
<liclass="blockList">
<h4>Subtract</h4>
<pre>public static final <ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a> Subtract</pre>
<divclass="block">The result is the destination subtracted from the source. Result = (Source Color * Source Blend) - (Destination Color * Destination Blend)</div>
</li>
</ul>
<aname="ReverseSubtract">
<!---->
</a>
<ulclass="blockList">
<liclass="blockList">
<h4>ReverseSubtract</h4>
<pre>public static final <ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a> ReverseSubtract</pre>
<divclass="block">The result is the source subtracted from the destination. Result = (Destination Color * Destination Blend) - (Source Color * Source Blend)</div>
</li>
</ul>
<aname="Min">
<!---->
</a>
<ulclass="blockList">
<liclass="blockList">
<h4>Min</h4>
<pre>public static final <ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a> Min</pre>
<divclass="block">The result is the minimum of the source and destination. Result = min((Source Color * Source Blend), (Destination Color * Destination Blend))</div>
</li>
</ul>
<aname="Max">
<!---->
</a>
<ulclass="blockListLast">
<liclass="blockList">
<h4>Max</h4>
<pre>public static final <ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a> Max</pre>
<divclass="block">The result is the maximum of the source and destination. Result = max((Source Color * Source Blend), (Destination Color * Destination Blend))</div>
<pre>public static <ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a>[] values()</pre>
<divclass="block">Returns an array containing the constants of this enum type, in
<dl><dt><spanclass="strong">Returns:</span></dt><dd>an array containing the constants of this enum type, in
the order they are declared</dd></dl>
</li>
</ul>
<aname="valueOf(java.lang.String)">
<!---->
</a>
<ulclass="blockListLast">
<liclass="blockList">
<h4>valueOf</h4>
<pre>public static <ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendFunction.html"title="enum in Microsoft.Xna.Framework.Graphics">BlendFunction</a> valueOf(java.lang.String name)</pre>
<divclass="block">Returns the enum constant of this type with the specified name.
The string must match <i>exactly</i> an identifier used to declare an
<li><ahref="../../../../Microsoft/Xna/Framework/Graphics/Blend.html"title="enum in Microsoft.Xna.Framework.Graphics"><spanclass="strong">Prev Class</span></a></li>
<li><ahref="../../../../Microsoft/Xna/Framework/Graphics/BlendState.html"title="class in Microsoft.Xna.Framework.Graphics"><spanclass="strong">Next Class</span></a></li>