-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
45 lines (41 loc) · 803 Bytes
/
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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>AMDs fidelityFX Super Resolution webcam demo</title>
<style type="text/css">
body {
margin: 0;
}
canvas {
display: block;
width: 100vw;
height: 100vh;
}
video {
display: none;
}
#container {
position: relative; /* needed so child elements use this as their base */
}
#hud {
position: absolute;
left: 5px;
top: 5px;
background: rgba(0, 0, 0, 0.5); /* 50% opaque black */
color: white;
padding: .5em;
font-family: monospace;
border-radius: .5em;
}
</style>
</head>
<body>
<div id="container">
<canvas id="c"></canvas>
<div id="hud">fps: <span id="fps"></span></div>
</div>
<video></video>
<script src='./glea.js'></script><script src="./script.js"></script>
</body>
</html>