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>GXPackedRGB565</title>
10</head>
11
12<body>
13
14<h1 align="left">GXPackedRGB565</h1>
15
16<h2>Syntax</h2>
17<dl><dd><pre class="construction">
18#include &lt;revolution/gx.h&gt;
19
20#define GXPackedRGB565(r, g, b)	\
21	((u16)((((r)&amp;0xf8)&lt;&lt;8)|(((g)&amp;0xfc)&lt;&lt;3)|(((b)&amp;0xf8)&gt;&gt;3)))
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</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 RGB color components into RGB565 16-bit format.</P>
37
38<h2>See Also</h2>
39<P class="reference">
40<a href="GXPackedRGBA4.html">GXPackedRGBA4</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>