generated from Twinklebear/webgpu-webpack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.63 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<title>WebGPU Webpack Starter</title>
</head>
<body>
<div class="container mt-4">
<div class="row">
<div class="col-12 text-center">
<h4>WebGPU Webpack Starter</h4>
<canvas id="webgpu-canvas" class="img-fluid" width="1280" height="720"></canvas>
<div class="col-12 alert alert-danger" id="no-webgpu" style="display:none;">
<h4>Error: Your browser does not support WebGPU</h4>
<p>You can find out how to get access to it in Chrome Canary
<a href="https://web.dev/gpu/#use">here</a>.</p>
</div>
</div>
<div class="mx-auto col-12 col-lg-8 row">
<h4>Description</h4>
<p>This is a starter template to get you quickly set up with a development
environment for WebGPU! The template uses <a href="https://webpack.js.org/">webpack</a>
to manage dependencies and build. Grab the template on
<a href="https://github.com/Twinklebear/webgpu-webpack-starter">GitHub</a> and
make some cool stuff!</p>
</div>
</div>
</div>
</body>
</html>