mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-23 07:14:01 +00:00
312828f12f
* Implement WebGL Backend * Add WebGL Fixes by @mrk-its * Update Limits for WASM and Examples * Address Review Points
14 lines
314 B
HTML
14 lines
314 B
HTML
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import init from "./{{example}}.js";
|
|
window.addEventListener("load", () => {
|
|
init();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |