2024-06-18 09:32:17 -04:00

14 lines
397 B
HTML

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