Files
wgpu-renderer/examples/index.html
2024-02-16 19:23:56 -03:00

27 lines
542 B
HTML

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