Files
filament/docs/webgl/demo_triangle.html
Philip Rideout 0f9cee0b83 Update WebGL demos on website.
This includes an important fix for Chrome on Windows, which does not
support RGB16F.
2021-02-09 11:41:09 -08:00

20 lines
690 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Filament Demo</title>
<link href="https://google.github.io/filament/favicon.png" rel="icon" type="image/x-icon" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
<style>
body { margin: 0; overflow: hidden; }
canvas { touch-action: none; width: 100%; height: 100%; }
</style>
</head>
<body>
<canvas></canvas>
<script src="//unpkg.com/filament/filament.js"></script>
<script src="//unpkg.com/gl-matrix@2.8.1"></script>
<script src="//unpkg.com/gltumble"></script>
<script src="tutorial_triangle.js"></script>
</body>
</html>