Skip to content

Commit f95b9de

Browse files
committed
dist/5.x -> dist/6.x
1 parent ff06f0e commit f95b9de

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+74
-74
lines changed

README.md

Lines changed: 1 addition & 1 deletion

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ <h2>TL;DR</h2>
5353
<h2>The tiniest example</h2>
5454
<p>Not including the shaders (which is a simple quad shader) here's the entire code</p>
5555
<pre class="prettyprint source lang-html"><code>&lt;canvas id=&quot;c&quot;>&lt;/canvas>
56-
&lt;script src=&quot;../dist/5.x/twgl-full.min.js&quot;>&lt;/script>
56+
&lt;script src=&quot;../dist/6.x/twgl-full.min.js&quot;>&lt;/script>
5757
&lt;script>
5858
const gl = document.getElementById(&quot;c&quot;).getContext(&quot;webgl&quot;);
5959
const programInfo = twgl.createProgramInfo(gl, [&quot;vs&quot;, &quot;fs&quot;]);

examples/2d-array-texture.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
}
8888
</script>
8989
<script type="module">
90-
import * as twgl from '../dist/5.x/twgl-full.module.js';
90+
import * as twgl from '../dist/6.x/twgl-full.module.js';
9191

9292
function main() {
9393
twgl.setDefaults({attribPrefix: "a_"});

examples/2d-lines.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
</body>
5858
<script src="../3rdparty/chroma.min.js"></script>
5959
<script type="module">
60-
import * as twgl from '../dist/5.x/twgl-full.module.js';
60+
import * as twgl from '../dist/6.x/twgl-full.module.js';
6161
const m4 = twgl.m4;
6262
twgl.setDefaults({attribPrefix: "a_"});
6363
const gl = document.getElementById("c").getContext("webgl");

examples/2d-rotation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<canvas id="canvasgl" style="height: 100vh; width: 100vw;"></canvas>
2121
<div id="b" style="position: absolute; top: 10px; width: 100%; text-align: center; z-index: 2;"><a href="http://twgljs.org">twgl.js</a> - 2d-rotation</div>
2222
<script type="module">
23-
import * as twgl from '../dist/5.x/twgl-full.module.js';
23+
import * as twgl from '../dist/6.x/twgl-full.module.js';
2424

2525
const vsource = `
2626
precision mediump float;

examples/3d-texture-volume-no-buffers.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@
9898
</div>
9999
</div>
100100
</body>
101-
<script src="../dist/5.x/twgl-full.min.js"></script>>
101+
<script src="../dist/6.x/twgl-full.min.js"></script>>
102102
<script src="../3rdparty/chroma.min.js"></script>
103103
<script type="module">
104-
import * as twgl from '../dist/5.x/twgl-full.module.js';
104+
import * as twgl from '../dist/6.x/twgl-full.module.js';
105105

106106
function main() {
107107
const m4 = twgl.m4;

examples/3d-texture-volume.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@
8989
</div>
9090
</div>
9191
</body>
92-
<script src="../dist/5.x/twgl-full.min.js"></script>>
92+
<script src="../dist/6.x/twgl-full.min.js"></script>>
9393
<script src="../3rdparty/chroma.min.js"></script>
9494
<script type="module">
95-
import * as twgl from '../dist/5.x/twgl-full.module.js';
95+
import * as twgl from '../dist/6.x/twgl-full.module.js';
9696

9797
function main() {
9898
const m4 = twgl.m4;

examples/3d-textures-tone-mapping.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
<div>style: <span id="name"></span></div>
6161
</div>
6262
</body>
63-
<script src="../dist/5.x/twgl-full.min.js"></script>>
63+
<script src="../dist/6.x/twgl-full.min.js"></script>>
6464
<script type="module">
65-
import * as twgl from '../dist/5.x/twgl-full.module.js';
65+
import * as twgl from '../dist/6.x/twgl-full.module.js';
6666

6767
function main() {
6868
const m4 = twgl.m4;

examples/background.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</head>
1919
<body>
2020
<canvas id="canvas"></canvas>
21-
<script src="/dist/5.x/twgl-full.min.js"></script>
21+
<script src="/dist/6.x/twgl-full.min.js"></script>
2222
<script src="/resources/js/background.js"></script>
2323
</body>
2424
</html>

examples/camera.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
</script>
7878
<script src="../3rdparty/chroma.min.js"></script>
7979
<script type="module">
80-
import * as twgl from '../dist/5.x/twgl-full.module.js';
80+
import * as twgl from '../dist/6.x/twgl-full.module.js';
8181

8282
let playing = false;
8383
const video = document.createElement("video");

0 commit comments

Comments
 (0)