wgpu/index.html

31 lines
654 B
HTML
Raw Permalink Normal View History

2024-05-27 21:32:40 +12:00
<!DOCTYPE html>
<html>
<head>
2024-05-31 15:06:20 +12:00
<title>raytracing</title>
2024-05-27 21:32:40 +12:00
<script src="main.js" type="module" defer></script>
<style>
body {
padding: 0;
margin: 0;
overflow: hidden;
}
#frame_time {
position: absolute;
2024-05-31 15:06:20 +12:00
color: white;
background: rgba(0, 0, 0, 0.5);
user-select: none;
font-family: monospace;
padding: 5px;
2024-05-27 21:32:40 +12:00
}
</style>
</head>
<body>
2024-05-31 15:06:20 +12:00
<div id="frame_time"></div>
2024-05-27 21:32:40 +12:00
<canvas id="canvas">
</body>
</html>
2024-05-31 15:06:20 +12:00