blob: 975a8c65f79485b074f99bf6a92ae52ed5c39d71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<head>
<title>WebGPU Triangle</title>
<script src="example.js"></script>
</head>
<body>
<center>
<canvas width="512" height="512"></canvas>
</center>
<script type="text/javascript">
const canvas = document.querySelector("canvas");
Example.initialize(canvas);
</script>
</body>
</html>
|