13 lines
372 B
HTML

<!doctype html>
<script type="module">
import {luma} from '@luma.gl/core';
import {WebGLDevice} from '@luma.gl/webgl';
luma.registerDevices([WebGLDevice]);
import AnimationLoopTemplate from './app.ts';
import {makeAnimationLoop} from '@luma.gl/engine';
makeAnimationLoop(AnimationLoopTemplate, {device: luma.createDevice()}).start();
</script>
<body>
</body>