22 lines
488 B
HTML
22 lines
488 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
|
||
|
|
<title>Iced - wgpu + WebGL integration</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>integration_wgpu</h1>
|
||
|
|
<canvas id="iced_canvas"></canvas>
|
||
|
|
<script type="module">
|
||
|
|
import init from "./integration_wgpu.js";
|
||
|
|
init('./integration_wgpu_bg.wasm');
|
||
|
|
</script>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
width: 100%;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</body>
|
||
|
|
</html>
|