wgpu-renderer/index.html

25 lines
545 B
HTML
Raw Normal View History

2023-01-27 23:16:57 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>wgpu-renderer</title>
<style>
canvas {
background-color: black;
}
</style>
</head>
<body id="wasm-example">
<script type="module">
import init from "./pkg/wgpu_renderer.js";
init().then(() => {
console.log("WASM Loaded");
});
</script>
</body>
</html>