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:
parent
9f42ccd639
commit
24c5b0e81c
18 changed files with 1375 additions and 11 deletions
35
Base/res/html/misc/ddssuite.html
Normal file
35
Base/res/html/misc/ddssuite.html
Normal 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>
|
BIN
Base/res/html/misc/ddssuite_files/DXT1-mipmap.dds
Normal file
BIN
Base/res/html/misc/ddssuite_files/DXT1-mipmap.dds
Normal file
Binary file not shown.
BIN
Base/res/html/misc/ddssuite_files/DXT1.dds
Normal file
BIN
Base/res/html/misc/ddssuite_files/DXT1.dds
Normal file
Binary file not shown.
BIN
Base/res/html/misc/ddssuite_files/DXT3-alpha.dds
Normal file
BIN
Base/res/html/misc/ddssuite_files/DXT3-alpha.dds
Normal file
Binary file not shown.
BIN
Base/res/html/misc/ddssuite_files/DXT3.dds
Normal file
BIN
Base/res/html/misc/ddssuite_files/DXT3.dds
Normal file
Binary file not shown.
BIN
Base/res/html/misc/ddssuite_files/DXT5-alpha.dds
Normal file
BIN
Base/res/html/misc/ddssuite_files/DXT5-alpha.dds
Normal file
Binary file not shown.
BIN
Base/res/html/misc/ddssuite_files/DXT5.dds
Normal file
BIN
Base/res/html/misc/ddssuite_files/DXT5.dds
Normal file
Binary file not shown.
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue