2024-08-25 11:33:52 -04:00

12 lines
365 B
HTML

<!doctype html>
<script type="module">
import {makeAnimationLoop} from '@luma.gl/engine';
import {webgl2Adapter} from '@luma.gl/webgl';
import {webgpuAdapter} from '@luma.gl/webgpu';
import AnimationLoopTemplate from './app.ts';
makeAnimationLoop(AnimationLoopTemplate, {adapters: [/* webgpuAdapter, */ webgl2Adapter]}).start();
</script>
<body>
</body>