32 lines
795 B
HTML
32 lines
795 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta name="darkreader-lock" />
|
|
<meta name="color-scheme" content="only light" />
|
|
|
|
<title>gl canvas test</title>
|
|
|
|
<script src="/js/webgl.js"></script>
|
|
<script src="/js/glmatrix.js"></script>
|
|
<script src="/js/obj.js"></script>
|
|
<script src="/js/main.js" type="module" defer></script>
|
|
|
|
<script>
|
|
0;
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- <canvas width="320" height="180"></canvas> -->
|
|
<!-- <canvas width="640" height="360"></canvas> -->
|
|
<canvas width="1024" height="1024"></canvas>
|
|
<!-- <canvas width="1920" height="1080"></canvas> -->
|
|
</body>
|
|
|
|
</html> |