30 lines
484 B
HTML
30 lines
484 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>WGPU ASM Test</title>
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html, body {
|
|
background-color: rgb(0.25, 0.25, 0.25);
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#wgpu-canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="wgpu-canvas" width="1280" height="720">
|
|
</canvas>
|
|
<script defer src="wgpu-wasm.js"></script>
|
|
</body>
|
|
</html>
|