1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 00:27:43 +00:00

LibGfx: Add support for DDS images

This commit is contained in:
stelar7 2021-05-15 17:02:40 +02:00 committed by Linus Groh
parent 9f42ccd639
commit 24c5b0e81c
18 changed files with 1375 additions and 11 deletions

View file

@ -0,0 +1,35 @@
<html>
<head><title>DDS test suite</title></head>
<body>
<table border="1" width="100%">
<tr>
<th>Type</th>
<th>Image</th>
</tr>
<tr>
<td align="center">DXT1</td>
<td align="center"><img src="ddssuite_files/DXT1.dds"></td>
</tr>
<tr>
<td align="center">DXT3</td>
<td align="center"><img src="ddssuite_files/DXT3.dds"></td>
</tr>
<tr>
<td align="center">DXT5</td>
<td align="center"><img src="ddssuite_files/DXT5.dds"></td>
</tr>
<tr>
<td align="center">DXT3 - alpha</td>
<td align="center"><img src="ddssuite_files/DXT3-alpha.dds"></td>
</tr>
<tr>
<td align="center">DXT5 - alpha</td>
<td align="center"><img src="ddssuite_files/DXT5-alpha.dds"></td>
</tr>
<tr>
<td align="center">DXT1 - mipmap</td>
<td align="center"><img src="ddssuite_files/DXT1-mipmap.dds"></td>
</tr>
</table>
</body>
</html>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -38,6 +38,7 @@ span#loadtime {
<p>This page loaded in <b><span id="loadtime"></span></b> ms</p>
<p>Some small test pages:</p>
<ul>
<li><a href="ddssuite.html">DDS test suite</a></li>
<li><a href="websocket.html">WebSocket API Test</a></li>
<li><a href="cookie.html">document.cookie</a></li>
<li><a href="last-of-type.html">CSS :last-of-type selector</a></li>