1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3
4<head>
5<META http-equiv="Content-Type" content="text/html; charset=windows-1252">
6<META name="GENERATOR" content="Microsoft FrontPage 5.0">
7<META http-equiv="Content-Style-Type" content="text/css">
8<LINK rel="stylesheet" type="text/css" href="../../CSS/revolution.css">
9<title>GXPackedRGBA4</title>
10</head>
11
12<body>
13
14<h1 align="left">GXPackedRGBA4</h1>
15
16<h2>Syntax</h2>
17<dl><dd><pre class="construction">
18#include &lt;revolution/gx.h&gt;
19
20#define	GXPackedRGBA4(r,g,b,a)  \
21	((u16)((((r)&amp;0xf0)&lt;&lt;8)|(((g)&amp;0xf0)&lt;&lt;4)|(((b)&amp;0xf0))|(((a)&amp;0xf0)&gt;&gt;4)))
22</pre></dd></dl>
23
24<h2><a name="Arguments">Arguments</a></h2>
25<TABLE class="arguments" border="1" >
26  <tr>
27<TH>r, g, b, a</TH>
28<TD>Color components.</TD>
29  </tr>
30</TABLE>
31
32<h2>Return Values</h2>
33<p>None.</p>
34
35<H2>Description</H2>
36<P>Packs RGBA color components into RGBA4444 16-bit format.</P>
37
38<h2>See Also</h2>
39<p class="reference">
40<a href="GXPackedRGB565.html">GXPackedRGB565</a>,
41<a href="GXPackedRGB5A3.html">GXPackedRGB5A3</a>
42</p>
43
44<H2>Revision History</H2>
45<P>
462006/03/01 Initial version.<br>
47</P>
48
49<hr><p>CONFIDENTIAL</p></body>
50</html>