mirror of
https://github.com/visgl/luma.gl.git
synced 2025-12-08 17:36:19 +00:00
14 lines
392 B
HTML
14 lines
392 B
HTML
<!doctype html>
|
|
<script type="module">
|
|
import {WebGLDevice} 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.registerDevices([WebGLDevice]);
|
|
makeAnimationLoop(AnimationLoopTemplate).start();
|
|
</script>
|
|
<body>
|
|
</body>
|