mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
12 lines
359 B
HTML
12 lines
359 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>
|