1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
<?xml version="1.0" encoding="UTF-8"?>
<table xmlns="http://docbook.org/ns/docbook" version="5.0">
<title>Compressed Internal Formats</title>
<tgroup cols="3" align="left">
<colspec/>
<colspec/>
<colspec/>
<thead>
<row>
<entry>
<emphasis role="bold">Compressed Internal Format</emphasis>
</entry>
<entry>
<emphasis role="bold">Base Internal Format</emphasis>
</entry>
<entry>
<emphasis role="bold">Type</emphasis>
</entry>
</row>
</thead>
<tbody>
<row>
<entry><constant>GL_COMPRESSED_RED</constant></entry>
<entry><constant>GL_RED</constant></entry>
<entry>Generic</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_RG</constant></entry>
<entry><constant>GL_RG</constant></entry>
<entry>Generic</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_RGB</constant></entry>
<entry><constant>GL_RGB</constant></entry>
<entry>Generic</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_RGBA</constant></entry>
<entry><constant>GL_RGBA</constant></entry>
<entry>Generic</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_SRGB</constant></entry>
<entry><constant>GL_RGB</constant></entry>
<entry>Generic</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_SRGB_ALPHA</constant></entry>
<entry><constant>GL_RGBA</constant></entry>
<entry>Generic</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_RED_RGTC1</constant></entry>
<entry><constant>GL_RED</constant></entry>
<entry>Specific</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_SIGNED_RED_RGTC1</constant></entry>
<entry><constant>GL_RED</constant></entry>
<entry>Specific</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_RG_RGTC2</constant></entry>
<entry><constant>GL_RG</constant></entry>
<entry>Specific</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_SIGNED_RG_RGTC2</constant></entry>
<entry><constant>GL_RG</constant></entry>
<entry>Specific</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_RGBA_BPTC_UNORM</constant></entry>
<entry><constant>GL_RGBA</constant></entry>
<entry>Specific</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM</constant></entry>
<entry><constant>GL_RGBA</constant></entry>
<entry>Specific</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT</constant></entry>
<entry><constant>GL_RGB</constant></entry>
<entry>Specific</entry>
</row>
<row>
<entry><constant>GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT</constant></entry>
<entry><constant>GL_RGB</constant></entry>
<entry>Specific</entry>
</row>
</tbody>
</tgroup>
</table>
|