glcanvas/index.html

32 lines
795 B
HTML
Raw Permalink Normal View History

2024-08-05 22:29:12 -05:00
<!doctype html>
<html lang="en">
2024-09-17 20:45:26 -05:00
<head>
<link rel="stylesheet" href="/style.css" />
2024-08-05 22:29:12 -05:00
2024-09-17 20:45:26 -05:00
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2024-08-05 22:29:12 -05:00
2024-09-17 20:45:26 -05:00
<meta name="darkreader-lock" />
<meta name="color-scheme" content="only light" />
2024-08-05 22:29:12 -05:00
2024-09-17 20:45:26 -05:00
<title>gl canvas test</title>
2024-08-05 22:29:12 -05:00
2024-09-17 20:45:26 -05:00
<script src="/js/webgl.js"></script>
<script src="/js/glmatrix.js"></script>
2024-09-21 01:15:41 -05:00
<script src="/js/obj.js"></script>
2024-09-17 20:45:26 -05:00
<script src="/js/main.js" type="module" defer></script>
2024-08-05 22:29:12 -05:00
2024-09-17 20:45:26 -05:00
<script>
0;
</script>
</head>
<body>
2024-09-21 01:15:41 -05:00
<!-- <canvas width="320" height="180"></canvas> -->
2024-09-27 21:41:08 -05:00
<!-- <canvas width="640" height="360"></canvas> -->
<canvas width="1024" height="1024"></canvas>
2024-09-21 01:15:41 -05:00
<!-- <canvas width="1920" height="1080"></canvas> -->
2024-09-17 20:45:26 -05:00
</body>
</html>